summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_browseriface.h
blob: 49f8414d31e3882c537c0abb30e80b5a25034dc3 (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 <tdeparts/browserinterface.h>

class KonqView;

class KonqBrowserInterface : public KParts::BrowserInterface
{
    TQ_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