1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#ifndef __konq_aboutpage_h__
#define __konq_aboutpage_h__
#include <kparts/factory.h>
#include <khtml_part.h>
class KHTMLPart;
class KInstance;
class KonqAboutPageFactory : public KParts::Factory
{
public:
KonqAboutPageFactory( TQObject *parent = 0, const char *name = 0 );
virtual ~KonqAboutPageFactory();
virtual KParts::Part *createPartObject( TQWidget *parentWidget, const char *widgetName,
TQObject *parent, const char *name,
const char *classname, const TQStringList &args );
static KInstance *instance() { return s_instance; }
static TQString launch();
static TQString intro();
static TQString specs();
static TQString tips();
static TQString plugins();
private:
static TQString loadFile( const TQString& file );
static KInstance *s_instance;
static TQString *s_launch_html, *s_intro_html, *s_specs_html, *s_tips_html, *s_plugins_html;
};
class KonqAboutPage : public KHTMLPart
{
Q_OBJECT
public:
KonqAboutPage( /*KonqMainWindow *mainWindow,*/
TQWidget *parentWidget, const char *widgetName,
TQObject *parent, const char *name );
~KonqAboutPage();
virtual bool openURL( const KURL &url );
virtual bool openFile();
virtual void saveState( TQDataStream &stream );
virtual void restoreState( TQDataStream &stream );
protected:
virtual void urlSelected( const TQString &url, int button, int state, const TQString &target, KParts::URLArgs args = KParts::URLArgs() );
private:
void serve( const TQString&, const TQString& );
KHTMLPart *m_doc;
//KonqMainWindow *m_mainWindow;
TQString m_htmlDoc;
TQString m_what;
};
#endif
|