summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_browseriface.h
blob: 57f2fc05bab02c0244b079a85c20ac3fd7f89a8d (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
    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