00001 #ifndef __konq_browseriface_h__
00002 #define __konq_browseriface_h__
00003
00004 #include <kparts/browserinterface.h>
00005
00006 class KonqView;
00007
00008 class KonqBrowserInterface : public KParts::BrowserInterface
00009 {
00010 Q_OBJECT
00011 Q_PROPERTY( uint historyLength READ historyLength )
00012 public:
00013 KonqBrowserInterface( KonqView *view, const char *name );
00014
00015 uint historyLength() const;
00016
00017 public slots:
00018 void goHistory( int );
00019
00020 private:
00021 KonqView *m_view;
00022 };
00023
00024 #endif