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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/***************************************************************************
* *
* Copyright (C) 2005, 2006 by Kevin Gilbert *
* kev.gilbert@cdu.edu.au *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
* *
***************************************************************************/
#ifndef _HTMLWIDGET_H_
#define _HTMLWIDGET_H_
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <ntqstringlist.h>
#include <ntqwidget.h>
#include <kurl.h>
#include "global.h"
// forward class definitions
// =========================
class TDEHTMLPart;
class TDEProcess;
class StylesheetDialog;
// HTMLWidget class definition
// ===========================
class HTMLWidget : public TQWidget
{ TQ_OBJECT
public:
HTMLWidget( TQStringList* stylesheetURLs, TQWidget* parent = NULL, const char* name = NULL );
virtual ~HTMLWidget( );
void gotoAnchor( const TQString& anchor );
void loadManPage( const bool localManPage );
void readSettings( );
void saveSettings( );
void setInitialValues( );
void setStylesheet( );
float zoomFactor( ) const { return m_zoomFactor; }
void zoomFactor( const float factor );
void zoomIn( );
void zoomOut( );
signals:
void errorLoadingLocalManPage( const TQString& );
void optionsDirty( );
private slots:
void slotGunzipProcessExited( );
void slotGunzipReceivedStdout( TDEProcess* process, char* buffer, int buflen );
void slotMan2HTMLProcessExited( );
void slotMan2HTMLReceivedStdout( TDEProcess* process, char* buffer, int buflen );
void slotManProcessExited( );
void slotManReceivedStdout( TDEProcess* process, char* buffer, int buflen );
void slotStylesheetRemoved( );
private:
void loadKnmapManPage( );
void loadLocalManPage( );
void resizeEvent( TQResizeEvent* event );
bool tryKnmapFile( );
StylesheetDialog* m_dlg;
TQString m_htmlData;
TDEHTMLPart* m_htmlPart;
TQString m_manPageData;
TQString m_manPagePath;
TDEProcess* m_process;
KURL m_stylesheetURL;
TQStringList* m_stylesheetURLs;
float m_zoomFactor;
static const float m_zoomIncrement;
};
#endif // _HTMLWIDGET_H_
|