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.
|
|
|
#ifndef __konq_browseriface_h__
|
|
|
|
#define __konq_browseriface_h__
|
|
|
|
|
|
|
|
#include <tdeparts/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
|