您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
tdebase/konqueror/konq_browseriface.h

25 行
444 B

#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