You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
440 B
25 lines
440 B
15 years ago
|
#ifndef __konq_browseriface_h__
|
||
|
#define __konq_browseriface_h__
|
||
|
|
||
|
#include <kparts/browserinterface.h>
|
||
|
|
||
|
class KonqView;
|
||
|
|
||
|
class KonqBrowserInterface : public KParts::BrowserInterface
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
Q_PROPERTY( uint historyLength READ historyLength )
|
||
|
public:
|
||
|
KonqBrowserInterface( KonqView *view, const char *name );
|
||
|
|
||
|
uint historyLength() const;
|
||
|
|
||
|
public slots:
|
||
|
void goHistory( int );
|
||
|
|
||
|
private:
|
||
|
KonqView *m_view;
|
||
|
};
|
||
|
|
||
|
#endif
|