]> git.saurik.com Git - wxWidgets.git/blame - include/wx/richtext/richtextformatdlg.h
make wxTmemchr() return (and take) char* instead of void* in ANSI build too
[wxWidgets.git] / include / wx / richtext / richtextformatdlg.h
CommitLineData
97ff49b3
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/richtext/richtextformatdlg.h
3// Purpose: Formatting dialog for wxRichTextCtrl
4// Author: Julian Smart
5// Modified by:
6// Created: 2006-10-01
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_RICHTEXTFORMATDLG_H_
13#define _WX_RICHTEXTFORMATDLG_H_
14
15/*!
16 * Includes
17 */
18
19#include "wx/defs.h"
20
21#if wxUSE_RICHTEXT
22
23#include "wx/propdlg.h"
2b741a39
WS
24#include "wx/bookctrl.h"
25
97ff49b3
JS
26#if wxUSE_HTML
27#include "wx/htmllbox.h"
28#endif
29
30#include "wx/richtext/richtextbuffer.h"
31#include "wx/richtext/richtextstyles.h"
32
b5dbe15d
VS
33class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextFormattingDialog;
34class WXDLLIMPEXP_FWD_CORE wxImageList;
97ff49b3
JS
35
36/*!
dadd4f55 37 * Flags determining the pages and buttons to be created in the dialog
97ff49b3
JS
38 */
39
40#define wxRICHTEXT_FORMAT_STYLE_EDITOR 0x0001
41#define wxRICHTEXT_FORMAT_FONT 0x0002
42#define wxRICHTEXT_FORMAT_TABS 0x0004
43#define wxRICHTEXT_FORMAT_BULLETS 0x0008
44#define wxRICHTEXT_FORMAT_INDENTS_SPACING 0x0010
dadd4f55
JS
45#define wxRICHTEXT_FORMAT_LIST_STYLE 0x0020
46
47#define wxRICHTEXT_FORMAT_HELP_BUTTON 0x0100
97ff49b3 48
d2d0adc7
JS
49/*!
50 * Indices for bullet styles in list control
51 */
52
53enum {
54 wxRICHTEXT_BULLETINDEX_NONE = 0,
55 wxRICHTEXT_BULLETINDEX_ARABIC,
56 wxRICHTEXT_BULLETINDEX_UPPER_CASE,
57 wxRICHTEXT_BULLETINDEX_LOWER_CASE,
58 wxRICHTEXT_BULLETINDEX_UPPER_CASE_ROMAN,
59 wxRICHTEXT_BULLETINDEX_LOWER_CASE_ROMAN,
60 wxRICHTEXT_BULLETINDEX_OUTLINE,
61 wxRICHTEXT_BULLETINDEX_SYMBOL,
62 wxRICHTEXT_BULLETINDEX_BITMAP,
63 wxRICHTEXT_BULLETINDEX_STANDARD
64};
65
97ff49b3
JS
66/*!
67 * Shorthand for common combinations of pages
68 */
69
70#define wxRICHTEXT_FORMAT_PARAGRAPH (wxRICHTEXT_FORMAT_INDENTS_SPACING | wxRICHTEXT_FORMAT_BULLETS | wxRICHTEXT_FORMAT_TABS | wxRICHTEXT_FORMAT_FONT)
71#define wxRICHTEXT_FORMAT_CHARACTER (wxRICHTEXT_FORMAT_FONT)
72#define wxRICHTEXT_FORMAT_STYLE (wxRICHTEXT_FORMAT_PARAGRAPH | wxRICHTEXT_FORMAT_STYLE_EDITOR)
73
74/*!
75 * Factory for formatting dialog
76 */
77
78class WXDLLIMPEXP_RICHTEXT wxRichTextFormattingDialogFactory: public wxObject
79{
80public:
81 wxRichTextFormattingDialogFactory() {}
82 virtual ~wxRichTextFormattingDialogFactory() {}
83
84// Overrideables
85
86 /// Create all pages, under the dialog's book control, also calling AddPage
87 virtual bool CreatePages(long pages, wxRichTextFormattingDialog* dialog);
88
89 /// Create a page, given a page identifier
90 virtual wxPanel* CreatePage(int page, wxString& title, wxRichTextFormattingDialog* dialog);
91
92 /// Enumerate all available page identifiers
93 virtual int GetPageId(int i) const;
94
95 /// Get the number of available page identifiers
96 virtual int GetPageIdCount() const;
97
98 /// Get the image index for the given page identifier
99 virtual int GetPageImage(int WXUNUSED(id)) const { return -1; }
100
101 /// Invoke help for the dialog
102 virtual bool ShowHelp(int WXUNUSED(page), wxRichTextFormattingDialog* WXUNUSED(dialog)) { return false; }
103
104 /// Set the sheet style, called at the start of wxRichTextFormattingDialog::Create
105 virtual bool SetSheetStyle(wxRichTextFormattingDialog* dialog);
106
107 /// Create the main dialog buttons
108 virtual bool CreateButtons(wxRichTextFormattingDialog* dialog);
109};
110
111/*!
112 * Formatting dialog for a wxRichTextCtrl
113 */
114
115class WXDLLIMPEXP_RICHTEXT wxRichTextFormattingDialog: public wxPropertySheetDialog
116{
117DECLARE_CLASS(wxRichTextFormattingDialog)
118public:
119 wxRichTextFormattingDialog() { Init(); }
120
be6d15fb 121 wxRichTextFormattingDialog(long flags, wxWindow* parent, const wxString& title = wxGetTranslation(wxT("Formatting")), wxWindowID id = wxID_ANY,
97ff49b3
JS
122 const wxPoint& pos = wxDefaultPosition, const wxSize& sz = wxDefaultSize,
123 long style = wxDEFAULT_DIALOG_STYLE)
124 {
125 Init();
126 Create(flags, parent, title, id, pos, sz, style);
127 }
128
129 ~wxRichTextFormattingDialog();
130
131 void Init();
132
be6d15fb 133 bool Create(long flags, wxWindow* parent, const wxString& title = wxGetTranslation(wxT("Formatting")), wxWindowID id = wxID_ANY,
97ff49b3
JS
134 const wxPoint& pos = wxDefaultPosition, const wxSize& sz = wxDefaultSize,
135 long style = wxDEFAULT_DIALOG_STYLE);
136
137 /// Get attributes from the given range
138 virtual bool GetStyle(wxRichTextCtrl* ctrl, const wxRichTextRange& range);
139
140 /// Set the attributes and optionally update the display
141 virtual bool SetStyle(const wxTextAttrEx& style, bool update = true);
142
143 /// Set the style definition and optionally update the display
144 virtual bool SetStyleDefinition(const wxRichTextStyleDefinition& styleDef, wxRichTextStyleSheet* sheet, bool update = true);
145
146 /// Get the style definition, if any
147 virtual wxRichTextStyleDefinition* GetStyleDefinition() const { return m_styleDefinition; }
148
149 /// Get the style sheet, if any
150 virtual wxRichTextStyleSheet* GetStyleSheet() const { return m_styleSheet; }
151
152 /// Update the display
153 virtual bool UpdateDisplay();
154
155 /// Apply attributes to the given range
156 virtual bool ApplyStyle(wxRichTextCtrl* ctrl, const wxRichTextRange& range, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO|wxRICHTEXT_SETSTYLE_OPTIMIZE);
157
158 /// Gets and sets the attributes
159 const wxTextAttrEx& GetAttributes() const { return m_attributes; }
160 wxTextAttrEx& GetAttributes() { return m_attributes; }
161 void SetAttributes(const wxTextAttrEx& attr) { m_attributes = attr; }
162
163 /// Transfers the data and from to the window
164 virtual bool TransferDataToWindow();
165 virtual bool TransferDataFromWindow();
166
167 /// Apply the styles when a different tab is selected, so the previews are
168 /// up to date
2b741a39 169 void OnTabChanged(wxBookCtrlEvent& event);
97ff49b3 170
1807a1f3
JS
171 /// Respond to help command
172 void OnHelp(wxCommandEvent& event);
173
97ff49b3
JS
174 /// Set/get image list
175 void SetImageList(wxImageList* imageList) { m_imageList = imageList; }
176 wxImageList* GetImageList() const { return m_imageList; }
177
178 /// Get/set formatting factory object
179 static void SetFormattingDialogFactory(wxRichTextFormattingDialogFactory* factory);
180 static wxRichTextFormattingDialogFactory* GetFormattingDialogFactory() { return ms_FormattingDialogFactory; }
181
182 /// Helper for pages to get the top-level dialog
183 static wxRichTextFormattingDialog* GetDialog(wxWindow* win);
184
185 /// Helper for pages to get the attributes
186 static wxTextAttrEx* GetDialogAttributes(wxWindow* win);
187
188 /// Helper for pages to get the style
189 static wxRichTextStyleDefinition* GetDialogStyleDefinition(wxWindow* win);
190
dadd4f55
JS
191 /// Should we show tooltips?
192 static bool ShowToolTips() { return sm_showToolTips; }
41a85215 193
dadd4f55
JS
194 /// Determines whether tooltips will be shown
195 static void SetShowToolTips(bool show) { sm_showToolTips = show; }
41a85215 196
1807a1f3
JS
197 /// Map book control page index to our page id
198 void AddPageId(int id) { m_pageIds.Add(id); }
199
97ff49b3
JS
200protected:
201
202 wxImageList* m_imageList;
203 wxTextAttrEx m_attributes;
204 wxRichTextStyleDefinition* m_styleDefinition;
205 wxRichTextStyleSheet* m_styleSheet;
1807a1f3 206 wxArrayInt m_pageIds; // mapping of book control indexes to page ids
97ff49b3
JS
207
208 static wxRichTextFormattingDialogFactory* ms_FormattingDialogFactory;
dadd4f55 209 static bool sm_showToolTips;
97ff49b3
JS
210
211DECLARE_EVENT_TABLE()
212};
213
214//-----------------------------------------------------------------------------
215// helper class - wxRichTextFontPreviewCtrl
216//-----------------------------------------------------------------------------
217
218class WXDLLIMPEXP_RICHTEXT wxRichTextFontPreviewCtrl : public wxWindow
219{
220public:
221 wxRichTextFontPreviewCtrl(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& sz = wxDefaultSize, long style = 0) :
222 wxWindow(parent, id, pos, sz, style)
223 {
224 SetBackgroundColour(*wxWHITE);
42688aea 225 m_textEffects = 0;
97ff49b3
JS
226 }
227
42688aea
JS
228 void SetTextEffects(int effects) { m_textEffects = effects; }
229 int GetTextEffects() const { return m_textEffects; }
230
97ff49b3 231private:
42688aea
JS
232 int m_textEffects;
233
97ff49b3
JS
234 void OnPaint(wxPaintEvent& event);
235 DECLARE_EVENT_TABLE()
236};
237
238/*
239 * A control for displaying a small preview of a colour or bitmap
240 */
241
242class WXDLLIMPEXP_RICHTEXT wxRichTextColourSwatchCtrl: public wxControl
243{
244 DECLARE_CLASS(wxRichTextColourSwatchCtrl)
245public:
246 wxRichTextColourSwatchCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0);
247 ~wxRichTextColourSwatchCtrl();
248
97ff49b3
JS
249 void OnMouseEvent(wxMouseEvent& event);
250
251 void SetColour(const wxColour& colour) { m_colour = colour; SetBackgroundColour(m_colour); }
252
253 wxColour& GetColour() { return m_colour; }
254
255 virtual wxSize DoGetBestSize() const { return GetSize(); }
256
257protected:
258 wxColour m_colour;
259
260DECLARE_EVENT_TABLE()
261};
262
263/*!
264 * wxRichTextFontListBox class declaration
265 * A listbox to display fonts.
266 */
267
268class WXDLLIMPEXP_RICHTEXT wxRichTextFontListBox: public wxHtmlListBox
269{
270 DECLARE_CLASS(wxRichTextFontListBox)
271 DECLARE_EVENT_TABLE()
272
273public:
274 wxRichTextFontListBox()
275 {
276 Init();
277 }
278 wxRichTextFontListBox(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
279 const wxSize& size = wxDefaultSize, long style = 0);
280 virtual ~wxRichTextFontListBox();
281
282 void Init()
283 {
284 }
285
286 bool Create(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
287 const wxSize& size = wxDefaultSize, long style = 0);
288
289 /// Creates a suitable HTML fragment for a font
290 wxString CreateHTML(const wxString& facename) const;
291
292 /// Get font name for index
293 wxString GetFaceName(size_t i) const ;
294
295 /// Set selection for string, returning the index.
296 int SetFaceNameSelection(const wxString& name);
297
298 /// Updates the font list
299 void UpdateFonts();
300
301 /// Does this face name exist?
302 bool HasFaceName(const wxString& faceName) const { return m_faceNames.Index(faceName) != wxNOT_FOUND; }
303
304 /// Returns the array of face names
305 const wxArrayString& GetFaceNames() const { return m_faceNames; }
306
307protected:
308 /// Returns the HTML for this item
309 virtual wxString OnGetItem(size_t n) const;
310
311private:
312
313 wxArrayString m_faceNames;
314};
315
316#endif
317 // wxUSE_RICHTEXT
318
319#endif
320 // _WX_RICHTEXTFORMATDLG_H_