blob: 3b39437b89b79188fbe52730a495915af62a4c83 (
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
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) 2004 by Sashmit Bhaduri *
* smt@vfemail.net *
* *
* Licensed under GPL. *
***************************************************************************/
#ifndef PAGEVIEWER_H
#define PAGEVIEWER_H
#include <cstdlib>
using std::abs;
#include <tqdatetime.h>
#include <tqstring.h>
#include "viewer.h"
class TDEAction;
class TDEToolBarPopupAction;
namespace KlamAV
{
// taken from KDevelop
struct PageViewerHistoryEntry
{
KURL url;
TQString title;
int id;
PageViewerHistoryEntry() {}
PageViewerHistoryEntry(const KURL& u, const TQString& t=TQString::null): url(u), title(t)
{
id = abs( TQTime::currentTime().msecsTo( TQTime() ) ); // nasty, but should provide a reasonably unique number
}
};
// the back/forward navigation was taken from KDevelop. Kudos to the KDevelop team!
class PageViewer : public Viewer
{
Q_OBJECT
public:
PageViewer(TQWidget* parent, const char* name);
virtual bool openURL(const KURL &url);
public slots:
void slotBack();
void slotForward();
void slotReload();
void slotStop();
void slotSetCaption(const TQString& cap);
virtual void slotPaletteOrFontChanged();
protected:
void addHistoryEntry(const KURL& url);
protected slots:
void slotStarted(TDEIO::Job *);
void slotCompleted();
void slotCancelled(const TQString &errMsg);
void slotBackAboutToShow();
void slotForwardAboutToShow();
void slotPopupActivated( int id );
virtual void slotPopupMenu(KXMLGUIClient*, const TQPoint&, const KURL&, const KParts::URLArgs&, KParts::BrowserExtension::PopupFlags, mode_t);
void slotGlobalBookmarkArticle();
void formClicked(const KURL& url, const KParts::URLArgs& args);
virtual void slotOpenURLRequest(const KURL& url, const KParts::URLArgs& args);
signals:
void setTabIcon(const TQPixmap&);
private:
TQValueList<PageViewerHistoryEntry> m_history;
TQValueList<PageViewerHistoryEntry>::Iterator m_current;
TDEToolBarPopupAction* m_backAction;
TDEToolBarPopupAction* m_forwardAction;
TDEAction* m_reloadAction;
TDEAction* m_stopAction;
bool m_restoring;
TQString m_caption;
};
}
#endif // PAGEVIEWER_H
|