blob: e21d0a9ec59fe2190a5602125f4d81d79247cf97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __konq_browseriface_h__
#define __konq_browseriface_h__
#include <kparts/browserinterface.h>
class KonqView;
class KonqBrowserInterface : public KParts::BrowserInterface
{
Q_OBJECT
TQ_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
|