]>
Commit | Line | Data |
---|---|---|
5526e819 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: htmlwin.h | |
3 | // Purpose: wxHtmlWindow class for parsing & displaying HTML | |
4 | // Author: Vaclav Slavik | |
69941f05 | 5 | // RCS-ID: $Id$ |
5526e819 VS |
6 | // Copyright: (c) 1999 Vaclav Slavik |
7 | // Licence: wxWindows Licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
69941f05 VS |
11 | #ifndef _WX_HTMLWIN_H_ |
12 | #define _WX_HTMLWIN_H_ | |
5526e819 VS |
13 | |
14 | #ifdef __GNUG__ | |
97494971 | 15 | #pragma interface "htmlwin.h" |
5526e819 VS |
16 | #endif |
17 | ||
18 | #include "wx/defs.h" | |
19 | #if wxUSE_HTML | |
20 | ||
69941f05 VS |
21 | #include "wx/window.h" |
22 | #include "wx/scrolwin.h" | |
23 | #include "wx/config.h" | |
24 | #include "wx/treectrl.h" | |
25 | #include "wx/html/winpars.h" | |
26 | #include "wx/html/htmlcell.h" | |
27 | #include "wx/filesys.h" | |
28 | #include "wx/html/htmlfilt.h" | |
5526e819 | 29 | |
bfb9ee96 | 30 | class wxHtmlProcessor; |
892aeafc VS |
31 | class wxHtmlWinModule; |
32 | class wxHtmlHistoryArray; | |
33 | class wxHtmlProcessorList; | |
5526e819 VS |
34 | |
35 | //-------------------------------------------------------------------------------- | |
36 | // wxHtmlWindow | |
3ef01ce5 | 37 | // (This is probably the only class you will directly use.) |
5526e819 VS |
38 | // Purpose of this class is to display HTML page (either local |
39 | // file or downloaded via HTTP protocol) in a window. Width | |
40 | // of window is constant - given in constructor - virtual height | |
41 | // is changed dynamicly depending on page size. | |
42 | // Once the window is created you can set it's content by calling | |
3ef01ce5 | 43 | // SetPage(text) or LoadPage(filename). |
5526e819 VS |
44 | //-------------------------------------------------------------------------------- |
45 | ||
5526e819 VS |
46 | class WXDLLEXPORT wxHtmlWindow : public wxScrolledWindow |
47 | { | |
48 | DECLARE_DYNAMIC_CLASS(wxHtmlWindow) | |
66806a0b | 49 | friend class wxHtmlWinModule; |
5526e819 | 50 | |
97494971 | 51 | public: |
4f417130 | 52 | wxHtmlWindow() { Init(); } |
97494971 | 53 | wxHtmlWindow(wxWindow *parent, wxWindowID id = -1, |
bfb9ee96 | 54 | const wxPoint& pos = wxDefaultPosition, |
97494971 VS |
55 | const wxSize& size = wxDefaultSize, |
56 | long style = wxHW_SCROLLBAR_AUTO, | |
4f417130 VS |
57 | const wxString& name = wxT("htmlWindow")) |
58 | { | |
59 | Init(); | |
60 | Create(parent, id, pos, size, style, name); | |
61 | } | |
97494971 VS |
62 | ~wxHtmlWindow(); |
63 | ||
4f417130 VS |
64 | bool Create(wxWindow *parent, wxWindowID id = -1, |
65 | const wxPoint& pos = wxDefaultPosition, | |
66 | const wxSize& size = wxDefaultSize, | |
67 | long style = wxHW_SCROLLBAR_AUTO, | |
68 | const wxString& name = wxT("htmlWindow")); | |
69 | ||
97494971 VS |
70 | // Set HTML page and display it. !! source is HTML document itself, |
71 | // it is NOT address/filename of HTML document. If you want to | |
72 | // specify document location, use LoadPage() istead | |
73 | // Return value : FALSE if an error occured, TRUE otherwise | |
74 | bool SetPage(const wxString& source); | |
39029898 VS |
75 | |
76 | // Append to current page | |
77 | bool AppendToPage(const wxString& source); | |
97494971 VS |
78 | |
79 | // Load HTML page from given location. Location can be either | |
80 | // a) /usr/wxGTK2/docs/html/wx.htm | |
81 | // b) http://www.somewhere.uk/document.htm | |
82 | // c) ftp://ftp.somesite.cz/pub/something.htm | |
83 | // In case there is no prefix (http:,ftp:), the method | |
84 | // will try to find it itself (1. local file, then http or ftp) | |
85 | // After the page is loaded, the method calls SetPage() to display it. | |
86 | // Note : you can also use path relative to previously loaded page | |
87 | // Return value : same as SetPage | |
38caaa61 | 88 | virtual bool LoadPage(const wxString& location); |
97494971 VS |
89 | |
90 | // Returns full location of opened page | |
91 | wxString GetOpenedPage() const {return m_OpenedPage;} | |
92 | // Returns anchor within opened page | |
93 | wxString GetOpenedAnchor() const {return m_OpenedAnchor;} | |
94 | // Returns <TITLE> of opened page or empty string otherwise | |
95 | wxString GetOpenedPageTitle() const {return m_OpenedPageTitle;} | |
96 | ||
97 | // Sets frame in which page title will be displayed. Format is format of | |
98 | // frame title, e.g. "HtmlHelp : %s". It must contain exactly one %s | |
99 | void SetRelatedFrame(wxFrame* frame, const wxString& format); | |
100 | wxFrame* GetRelatedFrame() const {return m_RelatedFrame;} | |
101 | ||
102 | // After(!) calling SetRelatedFrame, this sets statusbar slot where messages | |
103 | // will be displayed. Default is -1 = no messages. | |
104 | void SetRelatedStatusBar(int bar); | |
105 | ||
106 | // Sets fonts to be used when displaying HTML page. | |
107 | void SetFonts(wxString normal_face, wxString fixed_face, const int *sizes); | |
108 | ||
109 | // Sets the title of the window | |
110 | // (depending on the information passed to SetRelatedFrame() method) | |
111 | virtual void OnSetTitle(const wxString& title); | |
112 | ||
113 | // Sets space between text and window borders. | |
114 | void SetBorders(int b) {m_Borders = b;} | |
115 | ||
116 | // Saves custom settings into cfg config. it will use the path 'path' | |
117 | // if given, otherwise it will save info into currently selected path. | |
118 | // saved values : things set by SetFonts, SetBorders. | |
119 | virtual void ReadCustomization(wxConfigBase *cfg, wxString path = wxEmptyString); | |
120 | // ... | |
121 | virtual void WriteCustomization(wxConfigBase *cfg, wxString path = wxEmptyString); | |
122 | ||
123 | // Goes to previous/next page (in browsing history) | |
124 | // Returns TRUE if successful, FALSE otherwise | |
125 | bool HistoryBack(); | |
126 | bool HistoryForward(); | |
127 | bool HistoryCanBack(); | |
128 | bool HistoryCanForward(); | |
129 | // Resets history | |
130 | void HistoryClear(); | |
131 | ||
132 | // Returns pointer to conteiners/cells structure. | |
133 | // It should be used ONLY when printing | |
134 | wxHtmlContainerCell* GetInternalRepresentation() const {return m_Cell;} | |
135 | ||
136 | // Adds input filter | |
137 | static void AddFilter(wxHtmlFilter *filter); | |
138 | ||
f6010d8f VZ |
139 | // Called when the mouse hovers over a cell: (x, y) are logical coords |
140 | // | |
141 | // Default behaviour is to do nothing at all | |
142 | virtual void OnCellMouseHover(wxHtmlCell *cell, wxCoord x, wxCoord y); | |
143 | ||
144 | // Called when user clicks on a cell. Default behavior is to call | |
145 | // OnLinkClicked() if this cell corresponds to a hypertext link | |
146 | virtual void OnCellClicked(wxHtmlCell *cell, | |
147 | wxCoord x, wxCoord y, | |
148 | const wxMouseEvent& event); | |
149 | ||
150 | // Called when user clicked on hypertext link. Default behavior is to | |
97494971 VS |
151 | // call LoadPage(loc) |
152 | virtual void OnLinkClicked(const wxHtmlLinkInfo& link); | |
153 | ||
154 | // Returns a pointer to the parser. | |
155 | wxHtmlWinParser *GetParser() const { return m_Parser; } | |
bfb9ee96 | 156 | |
892aeafc VS |
157 | // Adds HTML processor to this instance of wxHtmlWindow: |
158 | void AddProcessor(wxHtmlProcessor *processor); | |
159 | // Adds HTML processor to wxHtmlWindow class as whole: | |
960ba969 | 160 | static void AddGlobalProcessor(wxHtmlProcessor *processor); |
97494971 | 161 | |
42f96a88 VZ |
162 | // what would we do with it? |
163 | virtual bool AcceptsFocusFromKeyboard() const { return FALSE; } | |
164 | ||
97494971 | 165 | protected: |
4f417130 VS |
166 | void Init(); |
167 | ||
97494971 VS |
168 | // Scrolls to anchor of this name. (Anchor is #news |
169 | // or #features etc. it is part of address sometimes: | |
170 | // http://www.ms.mff.cuni.cz/~vsla8348/wxhtml/index.html#news) | |
171 | // Return value : TRUE if anchor exists, FALSE otherwise | |
172 | bool ScrollToAnchor(const wxString& anchor); | |
173 | ||
bfb9ee96 | 174 | // Prepares layout (= fill m_PosX, m_PosY for fragments) based on |
97494971 VS |
175 | // actual size of window. This method also setup scrollbars |
176 | void CreateLayout(); | |
177 | ||
178 | void OnDraw(wxDC& dc); | |
179 | void OnSize(wxSizeEvent& event); | |
180 | void OnMouseEvent(wxMouseEvent& event); | |
181 | void OnIdle(wxIdleEvent& event); | |
182 | ||
183 | // Returns new filter (will be stored into m_DefaultFilter variable) | |
184 | virtual wxHtmlFilter *GetDefaultFilter() {return new wxHtmlFilterPlainText;} | |
185 | ||
892aeafc | 186 | // cleans static variables |
97494971 | 187 | static void CleanUpStatics(); |
97494971 VS |
188 | |
189 | protected: | |
892aeafc VS |
190 | // This is pointer to the first cell in parsed data. |
191 | // (Note: the first cell is usually top one = all other cells are sub-cells of this one) | |
97494971 | 192 | wxHtmlContainerCell *m_Cell; |
892aeafc VS |
193 | // parser which is used to parse HTML input. |
194 | // Each wxHtmlWindow has it's own parser because sharing one global | |
195 | // parser would be problematic (because of reentrancy) | |
97494971 | 196 | wxHtmlWinParser *m_Parser; |
892aeafc | 197 | // contains name of actualy opened page or empty string if no page opened |
97494971 | 198 | wxString m_OpenedPage; |
892aeafc | 199 | // contains name of current anchor within m_OpenedPage |
97494971 | 200 | wxString m_OpenedAnchor; |
892aeafc | 201 | // contains title of actualy opened page or empty string if no <TITLE> tag |
97494971 | 202 | wxString m_OpenedPageTitle; |
892aeafc | 203 | // class for opening files (file system) |
97494971 | 204 | wxFileSystem* m_FS; |
97494971 VS |
205 | |
206 | wxFrame *m_RelatedFrame; | |
207 | wxString m_TitleFormat; | |
892aeafc VS |
208 | // frame in which page title should be displayed & number of it's statusbar |
209 | // reserved for usage with this html window | |
97494971 | 210 | int m_RelatedStatusBar; |
97494971 | 211 | |
892aeafc VS |
212 | // borders (free space between text and window borders) |
213 | // defaults to 10 pixels. | |
97494971 | 214 | int m_Borders; |
97494971 VS |
215 | |
216 | int m_Style; | |
217 | ||
218 | private: | |
892aeafc VS |
219 | // a flag indicated if mouse moved |
220 | // (if TRUE we will try to change cursor in last call to OnIdle) | |
97494971 | 221 | bool m_tmpMouseMoved; |
892aeafc | 222 | // contains last link name |
97494971 | 223 | wxHtmlLinkInfo *m_tmpLastLink; |
f6010d8f VZ |
224 | // contains the last (terminal) cell which contained the mouse |
225 | wxHtmlCell *m_tmpLastCell; | |
892aeafc VS |
226 | // if >0 contents of the window is not redrawn |
227 | // (in order to avoid ugly blinking) | |
97494971 | 228 | int m_tmpCanDrawLocks; |
97494971 | 229 | |
892aeafc | 230 | // list of HTML filters |
97494971 | 231 | static wxList m_Filters; |
892aeafc | 232 | // this filter is used when no filter is able to read some file |
97494971 | 233 | static wxHtmlFilter *m_DefaultFilter; |
97494971 VS |
234 | |
235 | static wxCursor *s_cur_hand; | |
236 | static wxCursor *s_cur_arrow; | |
237 | ||
892aeafc VS |
238 | wxHtmlHistoryArray *m_History; |
239 | // browser history | |
97494971 | 240 | int m_HistoryPos; |
892aeafc | 241 | // if this FLAG is false, items are not added to history |
97494971 | 242 | bool m_HistoryOn; |
bfb9ee96 | 243 | |
892aeafc VS |
244 | // html processors array: |
245 | wxHtmlProcessorList *m_Processors; | |
42f96a88 | 246 | static wxHtmlProcessorList *m_GlobalProcessors; |
5526e819 | 247 | |
69941f05 VS |
248 | DECLARE_EVENT_TABLE() |
249 | }; | |
5526e819 VS |
250 | |
251 | ||
69941f05 VS |
252 | #endif |
253 | ||
254 | #endif // _WX_HTMLWIN_H_ | |
19193a2c | 255 |