]>
git.saurik.com Git - wxWidgets.git/blob - interface/richtext/richtexthtml.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: richtext/richtexthtml.h
3 // Purpose: interface of wxRichTextHTMLHandler
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxRichTextHTMLHandler
11 @headerfile richtexthtml.h wx/richtext/richtexthtml.h
13 Handles HTML output (only) for wxRichTextCtrl content.
15 The most flexible way to use this class is to create a temporary object and call
16 its functions directly, rather than use wxRichTextBuffer::SaveFile or
17 wxRichTextCtrl::SaveFile.
19 Image handling requires a little extra work from the application, to choose an
20 appropriate image format for the target HTML viewer and to clean up the
22 later. If you are planning to load the HTML into a standard web browser, you can
23 specify the handler flag wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_BASE64 (the default)
24 and no extra work is required: the images will be written with the HTML.
26 However, if you want wxHTML compatibility, you will need to use
27 wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_MEMORY
28 or wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_FILES. In this case, you must either call
29 wxRichTextHTMLHandler::DeleteTemporaryImages before
30 the next load operation, or you must store the image
31 locations and delete them yourself when appropriate. You can call
32 wxRichTextHTMLHandler::GetTemporaryImageLocations to
33 get the array of temporary image names.
38 class wxRichTextHTMLHandler
: public wxRichTextFileHandler
42 , wxString&@e ext = wxT("html"), @b int@e type = wxRICHTEXT_TYPE_HTML)
45 wxRichTextHTMLHandler() const;
48 Clears the image locations generated by the last operation.
50 void ClearTemporaryImageLocations();
54 Delete the in-memory or temporary files generated by the last operation. This
56 function that can be used to delete the saved locations from an earlier
58 for example after the user has viewed the HTML file.
60 bool DeleteTemporaryImages();
61 bool DeleteTemporaryImages(int flags
,
62 const wxArrayString
& imageLocations
);
66 Saves the buffer content to the HTML stream.
68 bool DoSaveFile(wxRichTextBuffer
* buffer
, wxOutputStream
& stream
);
71 Returns the mapping for converting point sizes to HTML font sizes.
73 wxArrayInt
GetFontSizeMapping();
76 Returns the directory used to store temporary image files.
78 const wxString
GetTempDir() const;
81 Returns the image locations for the last operation.
83 const wxArrayString
GetTemporaryImageLocations() const;
86 Reset the file counter, in case, for example, the same names are required each
89 void SetFileCounter(int counter
);
92 Sets the mapping for converting point sizes to HTML font sizes.
93 There should be 7 elements, one for each HTML font size, each element
94 specifying the maximum point size for that
98 void SetFontSizeMapping(const wxArrayInt
& fontSizeMapping
);
101 Sets the directory for storing temporary files. If empty, the system
102 temporary directory will be used.
104 void SetTempDir(const wxString
& tempDir
);
107 Sets the list of image locations generated by the last operation.
109 void SetTemporaryImageLocations(const wxArrayString
& locations
);