1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtmlWindow class for parsing & displaying HTML
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_HTMLWIN_H_
11 #define _WX_HTMLWIN_H_
16 #include "wx/window.h"
17 #include "wx/scrolwin.h"
18 #include "wx/config.h"
19 #include "wx/stopwatch.h"
20 #include "wx/html/winpars.h"
21 #include "wx/html/htmlcell.h"
22 #include "wx/filesys.h"
23 #include "wx/html/htmlfilt.h"
24 #include "wx/filename.h"
25 #include "wx/bitmap.h"
27 class wxHtmlProcessor
;
28 class wxHtmlWinModule
;
29 class wxHtmlHistoryArray
;
30 class wxHtmlProcessorList
;
31 class WXDLLIMPEXP_HTML wxHtmlWinAutoScrollTimer
;
34 // wxHtmlWindow flags:
35 #define wxHW_SCROLLBAR_NEVER 0x0002
36 #define wxHW_SCROLLBAR_AUTO 0x0004
37 #define wxHW_NO_SELECTION 0x0008
39 #define wxHW_DEFAULT_STYLE wxHW_SCROLLBAR_AUTO
41 /// Enum for wxHtmlWindow::OnOpeningURL and wxHtmlWindowInterface::OnOpeningURL
42 enum wxHtmlOpeningStatus
44 /// Open the requested URL
46 /// Do not open the URL
48 /// Redirect to another URL (returned from OnOpeningURL)
53 Abstract interface to a HTML rendering window (such as wxHtmlWindow or
54 wxHtmlListBox) that is passed to wxHtmlWinParser. It encapsulates all
55 communication from the parser to the window.
57 class WXDLLIMPEXP_HTML wxHtmlWindowInterface
61 wxHtmlWindowInterface() {}
62 virtual ~wxHtmlWindowInterface() {}
65 Called by the parser to set window's title to given text.
67 virtual void SetHTMLWindowTitle(const wxString
& title
) = 0;
70 Called when a link is clicked.
72 @param link information about the clicked link
74 virtual void OnHTMLLinkClicked(const wxHtmlLinkInfo
& link
) = 0;
77 Called when the parser needs to open another URL (e.g. an image).
79 @param type Type of the URL request (e.g. image)
80 @param url URL the parser wants to open
81 @param redirect If the return value is wxHTML_REDIRECT, then the
82 URL to redirect to will be stored in this variable
83 (the pointer must never be NULL)
85 @return indicator of how to treat the request
87 virtual wxHtmlOpeningStatus
OnHTMLOpeningURL(wxHtmlURLType type
,
89 wxString
*redirect
) const = 0;
92 Converts coordinates @a pos relative to given @a cell to
93 physical coordinates in the window.
95 virtual wxPoint
HTMLCoordsToWindow(wxHtmlCell
*cell
,
96 const wxPoint
& pos
) const = 0;
98 /// Returns the window used for rendering (may be NULL).
99 virtual wxWindow
* GetHTMLWindow() = 0;
101 /// Returns background colour to use by default.
102 virtual wxColour
GetHTMLBackgroundColour() const = 0;
104 /// Sets window's background to colour @a clr.
105 virtual void SetHTMLBackgroundColour(const wxColour
& clr
) = 0;
107 /// Sets window's background to given bitmap.
108 virtual void SetHTMLBackgroundImage(const wxBitmap
& bmpBg
) = 0;
110 /// Sets status bar text.
111 virtual void SetHTMLStatusText(const wxString
& text
) = 0;
113 /// Type of mouse cursor
116 /// Standard mouse cursor (typically an arrow)
118 /// Cursor shown over links
120 /// Cursor shown over selectable text
125 Returns mouse cursor of given @a type.
127 virtual wxCursor
GetHTMLCursor(HTMLCursor type
) const = 0;
131 Helper class that implements part of mouse handling for wxHtmlWindow and
132 wxHtmlListBox. Cursor changes and clicking on links are handled, text
135 class WXDLLIMPEXP_HTML wxHtmlWindowMouseHelper
141 @param iface Interface to the owner window.
143 wxHtmlWindowMouseHelper(wxHtmlWindowInterface
*iface
);
148 It is not really needed in this case but at leats it prevents gcc from
149 complaining about its absence.
151 virtual ~wxHtmlWindowMouseHelper() { }
153 /// Returns true if the mouse moved since the last call to HandleIdle
154 bool DidMouseMove() const { return m_tmpMouseMoved
; }
156 /// Call this from EVT_MOTION event handler
157 void HandleMouseMoved();
160 Call this from EVT_LEFT_UP handler (or, alternatively, EVT_LEFT_DOWN).
162 @param rootCell HTML cell inside which the click occured. This doesn't
163 have to be the leaf cell, it can be e.g. toplevel
164 container, but the mouse must be inside the container's
165 area, otherwise the event would be ignored.
166 @param pos Mouse position in coordinates relative to @a cell
167 @param event The event that triggered the call
169 bool HandleMouseClick(wxHtmlCell
*rootCell
,
170 const wxPoint
& pos
, const wxMouseEvent
& event
);
173 Call this from OnInternalIdle of the HTML displaying window. Handles
174 mouse movements and must be used together with HandleMouseMoved.
176 @param rootCell HTML cell inside which the click occured. This doesn't
177 have to be the leaf cell, it can be e.g. toplevel
178 container, but the mouse must be inside the container's
179 area, otherwise the event would be ignored.
180 @param pos Current mouse position in coordinates relative to
183 void HandleIdle(wxHtmlCell
*rootCell
, const wxPoint
& pos
);
186 Called by HandleIdle when the mouse hovers over a cell. Default
187 behaviour is to do nothing.
189 @param cell the cell the mouse is over
190 @param x, y coordinates of mouse relative to the cell
192 virtual void OnCellMouseHover(wxHtmlCell
*cell
, wxCoord x
, wxCoord y
);
195 Called by HandleMouseClick when the user clicks on a cell.
196 Default behavior is to call wxHtmlWindowInterface::OnLinkClicked()
197 if this cell corresponds to a hypertext link.
199 @param cell the cell the mouse is over
200 @param x, y coordinates of mouse relative to the cell
201 @param event The event that triggered the call
204 @return true if a link was clicked, false otherwise.
206 virtual bool OnCellClicked(wxHtmlCell
*cell
,
207 wxCoord x
, wxCoord y
,
208 const wxMouseEvent
& event
);
211 // this flag indicates if the mouse moved (used by HandleIdle)
212 bool m_tmpMouseMoved
;
213 // contains last link name
214 wxHtmlLinkInfo
*m_tmpLastLink
;
215 // contains the last (terminal) cell which contained the mouse
216 wxHtmlCell
*m_tmpLastCell
;
219 wxHtmlWindowInterface
*m_interface
;
222 // ----------------------------------------------------------------------------
224 // (This is probably the only class you will directly use.)
225 // Purpose of this class is to display HTML page (either local
226 // file or downloaded via HTTP protocol) in a window. Width of
227 // window is constant - given in constructor - virtual height
228 // is changed dynamicly depending on page size. Once the
229 // window is created you can set it's content by calling
230 // SetPage(text) or LoadPage(filename).
231 // ----------------------------------------------------------------------------
233 class WXDLLIMPEXP_HTML wxHtmlWindow
: public wxScrolledWindow
,
234 public wxHtmlWindowInterface
,
235 public wxHtmlWindowMouseHelper
237 DECLARE_DYNAMIC_CLASS(wxHtmlWindow
)
238 friend class wxHtmlWinModule
;
241 wxHtmlWindow() : wxHtmlWindowMouseHelper(this) { Init(); }
242 wxHtmlWindow(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
243 const wxPoint
& pos
= wxDefaultPosition
,
244 const wxSize
& size
= wxDefaultSize
,
245 long style
= wxHW_DEFAULT_STYLE
,
246 const wxString
& name
= wxT("htmlWindow"))
247 : wxHtmlWindowMouseHelper(this)
250 Create(parent
, id
, pos
, size
, style
, name
);
252 virtual ~wxHtmlWindow();
254 bool Create(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
255 const wxPoint
& pos
= wxDefaultPosition
,
256 const wxSize
& size
= wxDefaultSize
,
257 long style
= wxHW_SCROLLBAR_AUTO
,
258 const wxString
& name
= wxT("htmlWindow"));
260 // Set HTML page and display it. !! source is HTML document itself,
261 // it is NOT address/filename of HTML document. If you want to
262 // specify document location, use LoadPage() istead
263 // Return value : false if an error occurred, true otherwise
264 virtual bool SetPage(const wxString
& source
);
266 // Append to current page
267 bool AppendToPage(const wxString
& source
);
269 // Load HTML page from given location. Location can be either
270 // a) /usr/wxGTK2/docs/html/wx.htm
271 // b) http://www.somewhere.uk/document.htm
272 // c) ftp://ftp.somesite.cz/pub/something.htm
273 // In case there is no prefix (http:,ftp:), the method
274 // will try to find it itself (1. local file, then http or ftp)
275 // After the page is loaded, the method calls SetPage() to display it.
276 // Note : you can also use path relative to previously loaded page
277 // Return value : same as SetPage
278 virtual bool LoadPage(const wxString
& location
);
280 // Loads HTML page from file
281 bool LoadFile(const wxFileName
& filename
);
283 // Returns full location of opened page
284 wxString
GetOpenedPage() const {return m_OpenedPage
;}
285 // Returns anchor within opened page
286 wxString
GetOpenedAnchor() const {return m_OpenedAnchor
;}
287 // Returns <TITLE> of opened page or empty string otherwise
288 wxString
GetOpenedPageTitle() const {return m_OpenedPageTitle
;}
290 // Sets frame in which page title will be displayed. Format is format of
291 // frame title, e.g. "HtmlHelp : %s". It must contain exactly one %s
292 void SetRelatedFrame(wxFrame
* frame
, const wxString
& format
);
293 wxFrame
* GetRelatedFrame() const {return m_RelatedFrame
;}
296 // After(!) calling SetRelatedFrame, this sets statusbar slot where messages
297 // will be displayed. Default is -1 = no messages.
298 void SetRelatedStatusBar(int bar
);
299 #endif // wxUSE_STATUSBAR
301 // Sets fonts to be used when displaying HTML page.
302 void SetFonts(const wxString
& normal_face
, const wxString
& fixed_face
,
303 const int *sizes
= NULL
);
305 // Sets font sizes to be relative to the given size or the system
306 // default size; use either specified or default font
307 void SetStandardFonts(int size
= -1,
308 const wxString
& normal_face
= wxEmptyString
,
309 const wxString
& fixed_face
= wxEmptyString
);
311 // Sets space between text and window borders.
312 void SetBorders(int b
) {m_Borders
= b
;}
314 // Sets the bitmap to use for background (currnetly it will be tiled,
315 // when/if we have CSS support we could add other possibilities...)
316 void SetBackgroundImage(const wxBitmap
& bmpBg
) { m_bmpBg
= bmpBg
; }
318 // Saves custom settings into cfg config. it will use the path 'path'
319 // if given, otherwise it will save info into currently selected path.
320 // saved values : things set by SetFonts, SetBorders.
321 virtual void ReadCustomization(wxConfigBase
*cfg
, wxString path
= wxEmptyString
);
323 virtual void WriteCustomization(wxConfigBase
*cfg
, wxString path
= wxEmptyString
);
325 // Goes to previous/next page (in browsing history)
326 // Returns true if successful, false otherwise
328 bool HistoryForward();
329 bool HistoryCanBack();
330 bool HistoryCanForward();
334 // Returns pointer to conteiners/cells structure.
335 // It should be used ONLY when printing
336 wxHtmlContainerCell
* GetInternalRepresentation() const {return m_Cell
;}
339 static void AddFilter(wxHtmlFilter
*filter
);
341 // Returns a pointer to the parser.
342 wxHtmlWinParser
*GetParser() const { return m_Parser
; }
344 // Adds HTML processor to this instance of wxHtmlWindow:
345 void AddProcessor(wxHtmlProcessor
*processor
);
346 // Adds HTML processor to wxHtmlWindow class as whole:
347 static void AddGlobalProcessor(wxHtmlProcessor
*processor
);
352 // Sets the title of the window
353 // (depending on the information passed to SetRelatedFrame() method)
354 virtual void OnSetTitle(const wxString
& title
);
356 // Called when user clicked on hypertext link. Default behavior is to
357 // call LoadPage(loc)
358 virtual void OnLinkClicked(const wxHtmlLinkInfo
& link
);
360 // Called when wxHtmlWindow wants to fetch data from an URL (e.g. when
361 // loading a page or loading an image). The data are downloaded if and only if
362 // OnOpeningURL returns true. If OnOpeningURL returns wxHTML_REDIRECT,
363 // it must set *redirect to the new URL
364 virtual wxHtmlOpeningStatus
OnOpeningURL(wxHtmlURLType
WXUNUSED(type
),
365 const wxString
& WXUNUSED(url
),
366 wxString
*WXUNUSED(redirect
)) const
367 { return wxHTML_OPEN
; }
370 // Helper functions to select parts of page:
371 void SelectWord(const wxPoint
& pos
);
372 void SelectLine(const wxPoint
& pos
);
375 // Convert selection to text:
376 wxString
SelectionToText() { return DoSelectionToText(m_selection
); }
378 // Converts current page to text:
380 #endif // wxUSE_CLIPBOARD
382 virtual void OnInternalIdle();
384 /// Returns standard HTML cursor as used by wxHtmlWindow
385 static wxCursor
GetDefaultHTMLCursor(HTMLCursor type
);
390 // Scrolls to anchor of this name. (Anchor is #news
391 // or #features etc. it is part of address sometimes:
392 // http://www.ms.mff.cuni.cz/~vsla8348/wxhtml/index.html#news)
393 // Return value : true if anchor exists, false otherwise
394 bool ScrollToAnchor(const wxString
& anchor
);
396 // Prepares layout (= fill m_PosX, m_PosY for fragments) based on
397 // actual size of window. This method also setup scrollbars
400 void OnEraseBackground(wxEraseEvent
& event
);
401 void OnPaint(wxPaintEvent
& event
);
402 void OnSize(wxSizeEvent
& event
);
403 void OnMouseMove(wxMouseEvent
& event
);
404 void OnMouseDown(wxMouseEvent
& event
);
405 void OnMouseUp(wxMouseEvent
& event
);
407 void OnKeyUp(wxKeyEvent
& event
);
408 void OnDoubleClick(wxMouseEvent
& event
);
409 void OnCopy(wxCommandEvent
& event
);
410 void OnMouseEnter(wxMouseEvent
& event
);
411 void OnMouseLeave(wxMouseEvent
& event
);
412 void OnMouseCaptureLost(wxMouseCaptureLostEvent
& event
);
413 #endif // wxUSE_CLIPBOARD
415 // Returns new filter (will be stored into m_DefaultFilter variable)
416 virtual wxHtmlFilter
*GetDefaultFilter() {return new wxHtmlFilterPlainText
;}
418 // cleans static variables
419 static void CleanUpStatics();
421 // Returns true if text selection is enabled (wxClipboard must be available
422 // and wxHW_NO_SELECTION not used)
423 bool IsSelectionEnabled() const;
431 // Copies selection to clipboard if the clipboard support is available
433 // returns true if anything was copied to clipboard, false otherwise
434 bool CopySelection(ClipboardType t
= Secondary
);
437 // Automatic scrolling during selection:
438 void StopAutoScrolling();
439 #endif // wxUSE_CLIPBOARD
441 wxString
DoSelectionToText(wxHtmlSelection
*sel
);
444 // wxHtmlWindowInterface methods:
445 virtual void SetHTMLWindowTitle(const wxString
& title
);
446 virtual void OnHTMLLinkClicked(const wxHtmlLinkInfo
& link
);
447 virtual wxHtmlOpeningStatus
OnHTMLOpeningURL(wxHtmlURLType type
,
449 wxString
*redirect
) const;
450 virtual wxPoint
HTMLCoordsToWindow(wxHtmlCell
*cell
,
451 const wxPoint
& pos
) const;
452 virtual wxWindow
* GetHTMLWindow();
453 virtual wxColour
GetHTMLBackgroundColour() const;
454 virtual void SetHTMLBackgroundColour(const wxColour
& clr
);
455 virtual void SetHTMLBackgroundImage(const wxBitmap
& bmpBg
);
456 virtual void SetHTMLStatusText(const wxString
& text
);
457 virtual wxCursor
GetHTMLCursor(HTMLCursor type
) const;
459 // implementation of SetPage()
460 bool DoSetPage(const wxString
& source
);
463 // This is pointer to the first cell in parsed data. (Note: the first cell
464 // is usually top one = all other cells are sub-cells of this one)
465 wxHtmlContainerCell
*m_Cell
;
466 // parser which is used to parse HTML input.
467 // Each wxHtmlWindow has it's own parser because sharing one global
468 // parser would be problematic (because of reentrancy)
469 wxHtmlWinParser
*m_Parser
;
470 // contains name of actualy opened page or empty string if no page opened
471 wxString m_OpenedPage
;
472 // contains name of current anchor within m_OpenedPage
473 wxString m_OpenedAnchor
;
474 // contains title of actualy opened page or empty string if no <TITLE> tag
475 wxString m_OpenedPageTitle
;
476 // class for opening files (file system)
479 wxFrame
*m_RelatedFrame
;
480 wxString m_TitleFormat
;
482 // frame in which page title should be displayed & number of it's statusbar
483 // reserved for usage with this html window
484 int m_RelatedStatusBar
;
485 #endif // wxUSE_STATUSBAR
487 // borders (free space between text and window borders)
488 // defaults to 10 pixels.
491 // current text selection or NULL
492 wxHtmlSelection
*m_selection
;
494 // true if the user is dragging mouse to select text
495 bool m_makingSelection
;
498 // time of the last doubleclick event, used to detect tripleclicks
499 // (tripleclicks are used to select whole line):
500 wxMilliClock_t m_lastDoubleClick
;
502 // helper class to automatically scroll the window if the user is selecting
503 // text and the mouse leaves wxHtmlWindow:
504 wxHtmlWinAutoScrollTimer
*m_timerAutoScroll
;
505 #endif // wxUSE_CLIPBOARD
508 // window content for double buffered rendering:
509 wxBitmap
*m_backBuffer
;
511 // background image, may be invalid
514 // variables used when user is selecting text
515 wxPoint m_tmpSelFromPos
;
516 wxHtmlCell
*m_tmpSelFromCell
;
518 // if >0 contents of the window is not redrawn
519 // (in order to avoid ugly blinking)
520 int m_tmpCanDrawLocks
;
522 // list of HTML filters
523 static wxList m_Filters
;
524 // this filter is used when no filter is able to read some file
525 static wxHtmlFilter
*m_DefaultFilter
;
527 // html processors array:
528 wxHtmlProcessorList
*m_Processors
;
529 static wxHtmlProcessorList
*m_GlobalProcessors
;
532 wxHtmlHistoryArray
*m_History
;
534 // if this FLAG is false, items are not added to history
537 // a flag set if we need to erase background in OnPaint() (otherwise this
538 // is supposed to have been done in OnEraseBackground())
539 bool m_eraseBgInOnPaint
;
541 // standard mouse cursors
542 static wxCursor
*ms_cursorLink
;
543 static wxCursor
*ms_cursorText
;
545 DECLARE_EVENT_TABLE()
546 DECLARE_NO_COPY_CLASS(wxHtmlWindow
)
552 #endif // _WX_HTMLWIN_H_