]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/richtext/richtextstyledlg.cpp | |
3 | // Purpose: | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 10/5/2006 12:05:31 PM | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // For compilers that support precompilation, includes "wx/wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
19 | #if wxUSE_RICHTEXT | |
20 | ||
21 | #ifndef WX_PRECOMP | |
22 | #include "wx/wx.h" | |
23 | #endif | |
24 | ||
25 | #include "wx/richtext/richtextstyledlg.h" | |
26 | #include "wx/richtext/richtextformatdlg.h" | |
27 | ||
28 | /*! | |
29 | * wxRichTextStyleOrganiserDialog type definition | |
30 | */ | |
31 | ||
32 | bool wxRichTextStyleOrganiserDialog::sm_showToolTips = false; | |
33 | ||
34 | IMPLEMENT_DYNAMIC_CLASS( wxRichTextStyleOrganiserDialog, wxDialog ) | |
35 | ||
36 | /*! | |
37 | * wxRichTextStyleOrganiserDialog event table definition | |
38 | */ | |
39 | ||
40 | BEGIN_EVENT_TABLE( wxRichTextStyleOrganiserDialog, wxDialog ) | |
41 | ||
42 | EVT_LISTBOX(wxID_ANY, wxRichTextStyleOrganiserDialog::OnListSelection) | |
43 | ||
44 | ////@begin wxRichTextStyleOrganiserDialog event table entries | |
45 | EVT_BUTTON( ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_CHAR, wxRichTextStyleOrganiserDialog::OnNewCharClick ) | |
46 | EVT_UPDATE_UI( ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_CHAR, wxRichTextStyleOrganiserDialog::OnNewCharUpdate ) | |
47 | ||
48 | EVT_BUTTON( ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_PARA, wxRichTextStyleOrganiserDialog::OnNewParaClick ) | |
49 | EVT_UPDATE_UI( ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_PARA, wxRichTextStyleOrganiserDialog::OnNewParaUpdate ) | |
50 | ||
51 | EVT_BUTTON( ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_LIST, wxRichTextStyleOrganiserDialog::OnNewListClick ) | |
52 | EVT_UPDATE_UI( ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_LIST, wxRichTextStyleOrganiserDialog::OnNewListUpdate ) | |
53 | ||
54 | EVT_BUTTON( ID_RICHTEXTSTYLEORGANISERDIALOG_APPLY, wxRichTextStyleOrganiserDialog::OnApplyClick ) | |
55 | EVT_UPDATE_UI( ID_RICHTEXTSTYLEORGANISERDIALOG_APPLY, wxRichTextStyleOrganiserDialog::OnApplyUpdate ) | |
56 | ||
57 | EVT_BUTTON( ID_RICHTEXTSTYLEORGANISERDIALOG_RENAME, wxRichTextStyleOrganiserDialog::OnRenameClick ) | |
58 | EVT_UPDATE_UI( ID_RICHTEXTSTYLEORGANISERDIALOG_RENAME, wxRichTextStyleOrganiserDialog::OnRenameUpdate ) | |
59 | ||
60 | EVT_BUTTON( ID_RICHTEXTSTYLEORGANISERDIALOG_EDIT, wxRichTextStyleOrganiserDialog::OnEditClick ) | |
61 | EVT_UPDATE_UI( ID_RICHTEXTSTYLEORGANISERDIALOG_EDIT, wxRichTextStyleOrganiserDialog::OnEditUpdate ) | |
62 | ||
63 | EVT_BUTTON( ID_RICHTEXTSTYLEORGANISERDIALOG_DELETE, wxRichTextStyleOrganiserDialog::OnDeleteClick ) | |
64 | EVT_UPDATE_UI( ID_RICHTEXTSTYLEORGANISERDIALOG_DELETE, wxRichTextStyleOrganiserDialog::OnDeleteUpdate ) | |
65 | ||
66 | ////@end wxRichTextStyleOrganiserDialog event table entries | |
67 | ||
68 | END_EVENT_TABLE() | |
69 | ||
70 | /*! | |
71 | * wxRichTextStyleOrganiserDialog constructors | |
72 | */ | |
73 | ||
74 | wxRichTextStyleOrganiserDialog::wxRichTextStyleOrganiserDialog( ) | |
75 | { | |
76 | Init(); | |
77 | } | |
78 | ||
79 | wxRichTextStyleOrganiserDialog::wxRichTextStyleOrganiserDialog( int flags, wxRichTextStyleSheet* sheet, wxRichTextCtrl* ctrl, wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) | |
80 | { | |
81 | Init(); | |
82 | Create(flags, sheet, ctrl, parent, id, caption, pos, size, style); | |
83 | } | |
84 | ||
85 | /*! | |
86 | * Member initialisation for wxSymbolPickerDialog | |
87 | */ | |
88 | ||
89 | void wxRichTextStyleOrganiserDialog::Init() | |
90 | { | |
91 | m_richTextStyleSheet = NULL; | |
92 | m_richTextCtrl = NULL; | |
93 | m_dontUpdate = false; | |
94 | m_flags = 0; | |
95 | m_restartNumbering = true; | |
96 | ||
97 | ////@begin wxRichTextStyleOrganiserDialog member initialisation | |
98 | m_innerSizer = NULL; | |
99 | m_buttonSizerParent = NULL; | |
100 | m_stylesListBox = NULL; | |
101 | m_previewCtrl = NULL; | |
102 | m_buttonSizer = NULL; | |
103 | m_newCharacter = NULL; | |
104 | m_newParagraph = NULL; | |
105 | m_newList = NULL; | |
106 | m_applyStyle = NULL; | |
107 | m_renameStyle = NULL; | |
108 | m_editStyle = NULL; | |
109 | m_deleteStyle = NULL; | |
110 | m_closeButton = NULL; | |
111 | m_bottomButtonSizer = NULL; | |
112 | ||
113 | m_restartNumberingCtrl = NULL; | |
114 | m_okButton = NULL; | |
115 | m_cancelButton = NULL; | |
116 | ////@end wxRichTextStyleOrganiserDialog member initialisation | |
117 | } | |
118 | ||
119 | /*! | |
120 | * wxRichTextStyleOrganiserDialog creator | |
121 | */ | |
122 | ||
123 | bool wxRichTextStyleOrganiserDialog::Create( int flags, wxRichTextStyleSheet* sheet, wxRichTextCtrl* ctrl, wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) | |
124 | { | |
125 | m_richTextStyleSheet = sheet; | |
126 | m_richTextCtrl = ctrl; | |
127 | m_flags = flags; | |
128 | ||
129 | ////@begin wxRichTextStyleOrganiserDialog creation | |
130 | SetExtraStyle(GetExtraStyle()|wxWS_EX_BLOCK_EVENTS|wxDIALOG_EX_CONTEXTHELP); | |
131 | wxDialog::Create( parent, id, caption, pos, size, style ); | |
132 | ||
133 | CreateControls(); | |
134 | if (GetSizer()) | |
135 | { | |
136 | GetSizer()->SetSizeHints(this); | |
137 | } | |
138 | Centre(); | |
139 | ////@end wxRichTextStyleOrganiserDialog creation | |
140 | return true; | |
141 | } | |
142 | ||
143 | /*! | |
144 | * Control creation for wxRichTextStyleOrganiserDialog | |
145 | */ | |
146 | ||
147 | void wxRichTextStyleOrganiserDialog::CreateControls() | |
148 | { | |
149 | bool hideTypeSelector = false; | |
150 | wxRichTextStyleListBox::wxRichTextStyleType typesToShow = wxRichTextStyleListBox::wxRICHTEXT_STYLE_ALL; | |
151 | ||
152 | if ((m_flags & wxRICHTEXT_ORGANISER_SHOW_CHARACTER) != 0) | |
153 | { | |
154 | typesToShow = wxRichTextStyleListBox::wxRICHTEXT_STYLE_CHARACTER; | |
155 | hideTypeSelector = true; | |
156 | } | |
157 | else if ((m_flags & wxRICHTEXT_ORGANISER_SHOW_PARAGRAPH) != 0) | |
158 | { | |
159 | typesToShow = wxRichTextStyleListBox::wxRICHTEXT_STYLE_PARAGRAPH; | |
160 | hideTypeSelector = true; | |
161 | } | |
162 | else if ((m_flags & wxRICHTEXT_ORGANISER_SHOW_LIST) != 0) | |
163 | { | |
164 | typesToShow = wxRichTextStyleListBox::wxRICHTEXT_STYLE_LIST; | |
165 | hideTypeSelector = true; | |
166 | } | |
167 | else | |
168 | { | |
169 | // wxRICHTEXT_ORGANISER_SHOW_ALL is implied if the other styles aren't included | |
170 | } | |
171 | ||
172 | long listCtrlStyle = 0; | |
173 | if (hideTypeSelector) | |
174 | listCtrlStyle = wxRICHTEXTSTYLELIST_HIDE_TYPE_SELECTOR; | |
175 | ||
176 | ////@begin wxRichTextStyleOrganiserDialog content construction | |
177 | wxRichTextStyleOrganiserDialog* itemDialog1 = this; | |
178 | ||
179 | wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL); | |
180 | itemDialog1->SetSizer(itemBoxSizer2); | |
181 | ||
182 | m_innerSizer = new wxBoxSizer(wxVERTICAL); | |
183 | itemBoxSizer2->Add(m_innerSizer, 1, wxGROW|wxALL, 5); | |
184 | ||
185 | m_buttonSizerParent = new wxBoxSizer(wxHORIZONTAL); | |
186 | m_innerSizer->Add(m_buttonSizerParent, 1, wxGROW, 5); | |
187 | ||
188 | wxBoxSizer* itemBoxSizer5 = new wxBoxSizer(wxVERTICAL); | |
189 | m_buttonSizerParent->Add(itemBoxSizer5, 1, wxGROW, 5); | |
190 | ||
191 | wxStaticText* itemStaticText6 = new wxStaticText( itemDialog1, wxID_STATIC, _("&Styles:"), wxDefaultPosition, wxDefaultSize, 0 ); | |
192 | itemBoxSizer5->Add(itemStaticText6, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5); | |
193 | ||
194 | m_stylesListBox = new wxRichTextStyleListCtrl( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_STYLES, wxDefaultPosition, wxSize(200, 350), wxSIMPLE_BORDER|listCtrlStyle ); | |
195 | m_stylesListBox->SetHelpText(_("The available styles.")); | |
196 | if (ShowToolTips()) | |
197 | m_stylesListBox->SetToolTip(_("The available styles.")); | |
198 | itemBoxSizer5->Add(m_stylesListBox, 1, wxGROW|wxALL, 5); | |
199 | ||
200 | wxBoxSizer* itemBoxSizer8 = new wxBoxSizer(wxVERTICAL); | |
201 | m_buttonSizerParent->Add(itemBoxSizer8, 0, wxGROW, 5); | |
202 | ||
203 | wxStaticText* itemStaticText9 = new wxStaticText( itemDialog1, wxID_STATIC, _(" "), wxDefaultPosition, wxDefaultSize, 0 ); | |
204 | itemBoxSizer8->Add(itemStaticText9, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5); | |
205 | ||
206 | m_previewCtrl = new wxRichTextCtrl( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_PREVIEW, wxEmptyString, wxDefaultPosition, wxSize(310, 200), wxSIMPLE_BORDER|wxTE_READONLY ); | |
207 | m_previewCtrl->SetHelpText(_("The style preview.")); | |
208 | if (ShowToolTips()) | |
209 | m_previewCtrl->SetToolTip(_("The style preview.")); | |
210 | itemBoxSizer8->Add(m_previewCtrl, 1, wxGROW|wxALL, 5); | |
211 | ||
212 | m_buttonSizer = new wxBoxSizer(wxVERTICAL); | |
213 | m_buttonSizerParent->Add(m_buttonSizer, 0, wxGROW, 5); | |
214 | ||
215 | wxStaticText* itemStaticText12 = new wxStaticText( itemDialog1, wxID_STATIC, _(" "), wxDefaultPosition, wxDefaultSize, 0 ); | |
216 | m_buttonSizer->Add(itemStaticText12, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5); | |
217 | ||
218 | m_newCharacter = new wxButton( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_CHAR, _("New &Character Style..."), wxDefaultPosition, wxDefaultSize, 0 ); | |
219 | m_newCharacter->SetHelpText(_("Click to create a new character style.")); | |
220 | if (ShowToolTips()) | |
221 | m_newCharacter->SetToolTip(_("Click to create a new character style.")); | |
222 | m_buttonSizer->Add(m_newCharacter, 0, wxGROW|wxALL, 5); | |
223 | ||
224 | m_newParagraph = new wxButton( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_PARA, _("New &Paragraph Style..."), wxDefaultPosition, wxDefaultSize, 0 ); | |
225 | m_newParagraph->SetHelpText(_("Click to create a new paragraph style.")); | |
226 | if (ShowToolTips()) | |
227 | m_newParagraph->SetToolTip(_("Click to create a new paragraph style.")); | |
228 | m_buttonSizer->Add(m_newParagraph, 0, wxGROW|wxLEFT|wxRIGHT|wxBOTTOM, 5); | |
229 | ||
230 | m_newList = new wxButton( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_LIST, _("New &List Style..."), wxDefaultPosition, wxDefaultSize, 0 ); | |
231 | m_newList->SetHelpText(_("Click to create a new list style.")); | |
232 | if (ShowToolTips()) | |
233 | m_newList->SetToolTip(_("Click to create a new list style.")); | |
234 | m_buttonSizer->Add(m_newList, 0, wxGROW|wxLEFT|wxRIGHT|wxBOTTOM, 5); | |
235 | ||
236 | m_buttonSizer->Add(5, 5, 1, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); | |
237 | ||
238 | m_applyStyle = new wxButton( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_APPLY, _("&Apply Style"), wxDefaultPosition, wxDefaultSize, 0 ); | |
239 | m_applyStyle->SetHelpText(_("Click to apply the selected style.")); | |
240 | if (ShowToolTips()) | |
241 | m_applyStyle->SetToolTip(_("Click to apply the selected style.")); | |
242 | m_buttonSizer->Add(m_applyStyle, 0, wxGROW|wxALL, 5); | |
243 | ||
244 | m_renameStyle = new wxButton( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_RENAME, _("&Rename Style..."), wxDefaultPosition, wxDefaultSize, 0 ); | |
245 | m_renameStyle->SetHelpText(_("Click to rename the selected style.")); | |
246 | if (ShowToolTips()) | |
247 | m_renameStyle->SetToolTip(_("Click to rename the selected style.")); | |
248 | m_buttonSizer->Add(m_renameStyle, 0, wxGROW|wxLEFT|wxRIGHT|wxBOTTOM, 5); | |
249 | ||
250 | m_editStyle = new wxButton( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_EDIT, _("&Edit Style..."), wxDefaultPosition, wxDefaultSize, 0 ); | |
251 | m_editStyle->SetHelpText(_("Click to edit the selected style.")); | |
252 | if (ShowToolTips()) | |
253 | m_editStyle->SetToolTip(_("Click to edit the selected style.")); | |
254 | m_buttonSizer->Add(m_editStyle, 0, wxGROW|wxLEFT|wxRIGHT|wxBOTTOM, 5); | |
255 | ||
256 | m_deleteStyle = new wxButton( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_DELETE, _("&Delete Style..."), wxDefaultPosition, wxDefaultSize, 0 ); | |
257 | m_deleteStyle->SetHelpText(_("Click to delete the selected style.")); | |
258 | if (ShowToolTips()) | |
259 | m_deleteStyle->SetToolTip(_("Click to delete the selected style.")); | |
260 | m_buttonSizer->Add(m_deleteStyle, 0, wxGROW|wxLEFT|wxRIGHT|wxBOTTOM, 5); | |
261 | ||
262 | m_buttonSizer->Add(5, 5, 1, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); | |
263 | ||
264 | m_closeButton = new wxButton( itemDialog1, wxID_CANCEL, _("Close"), wxDefaultPosition, wxDefaultSize, 0 ); | |
265 | m_closeButton->SetDefault(); | |
266 | m_closeButton->SetHelpText(_("Click to close this window.")); | |
267 | if (ShowToolTips()) | |
268 | m_closeButton->SetToolTip(_("Click to close this window.")); | |
269 | m_buttonSizer->Add(m_closeButton, 0, wxGROW|wxALL, 5); | |
270 | ||
271 | m_bottomButtonSizer = new wxBoxSizer(wxHORIZONTAL); | |
272 | m_innerSizer->Add(m_bottomButtonSizer, 0, wxGROW, 5); | |
273 | ||
274 | m_restartNumberingCtrl = new wxCheckBox( itemDialog1, ID_RICHTEXTSTYLEORGANISERDIALOG_RESTART_NUMBERING, _("&Restart numbering"), wxDefaultPosition, wxDefaultSize, 0 ); | |
275 | m_restartNumberingCtrl->SetValue(false); | |
276 | m_restartNumberingCtrl->SetHelpText(_("Check to restart numbering.")); | |
277 | if (ShowToolTips()) | |
278 | m_restartNumberingCtrl->SetToolTip(_("Check to restart numbering.")); | |
279 | m_bottomButtonSizer->Add(m_restartNumberingCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
280 | ||
281 | m_bottomButtonSizer->Add(5, 5, 1, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
282 | ||
283 | m_okButton = new wxButton( itemDialog1, wxID_OK, _("OK"), wxDefaultPosition, wxDefaultSize, 0 ); | |
284 | m_okButton->SetDefault(); | |
285 | m_okButton->SetHelpText(_("Click to confirm your selection.")); | |
286 | if (ShowToolTips()) | |
287 | m_okButton->SetToolTip(_("Click to confirm your selection.")); | |
288 | m_bottomButtonSizer->Add(m_okButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
289 | ||
290 | m_cancelButton = new wxButton( itemDialog1, wxID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0 ); | |
291 | m_cancelButton->SetHelpText(_("Click to cancel this window.")); | |
292 | if (ShowToolTips()) | |
293 | m_cancelButton->SetToolTip(_("Click to cancel this window.")); | |
294 | m_bottomButtonSizer->Add(m_cancelButton, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
295 | ||
296 | ////@end wxRichTextStyleOrganiserDialog content construction | |
297 | ||
298 | if ((m_flags & wxRICHTEXT_ORGANISER_CREATE_STYLES) == 0) | |
299 | { | |
300 | m_buttonSizer->Show(m_newCharacter, false); | |
301 | m_buttonSizer->Show(m_newParagraph, false); | |
302 | m_buttonSizer->Show(m_newList, false); | |
303 | } | |
304 | if ((m_flags & wxRICHTEXT_ORGANISER_DELETE_STYLES) == 0) | |
305 | { | |
306 | m_buttonSizer->Show(m_deleteStyle, false); | |
307 | } | |
308 | if ((m_flags & wxRICHTEXT_ORGANISER_APPLY_STYLES) == 0) | |
309 | { | |
310 | m_buttonSizer->Show(m_applyStyle, false); | |
311 | } | |
312 | if ((m_flags & wxRICHTEXT_ORGANISER_EDIT_STYLES) == 0) | |
313 | { | |
314 | m_buttonSizer->Show(m_editStyle, false); | |
315 | } | |
316 | if ((m_flags & wxRICHTEXT_ORGANISER_RENAME_STYLES) == 0) | |
317 | { | |
318 | m_buttonSizer->Show(m_renameStyle, false); | |
319 | } | |
320 | if ((m_flags & wxRICHTEXT_ORGANISER_RENUMBER) == 0) | |
321 | { | |
322 | m_bottomButtonSizer->Show(m_restartNumberingCtrl, false); | |
323 | } | |
324 | ||
325 | if ((m_flags & wxRICHTEXT_ORGANISER_OK_CANCEL) == 0) | |
326 | { | |
327 | m_bottomButtonSizer->Show(m_okButton, false); | |
328 | m_bottomButtonSizer->Show(m_cancelButton, false); | |
329 | } | |
330 | else | |
331 | { | |
332 | m_buttonSizer->Show(m_closeButton, false); | |
333 | } | |
334 | ||
335 | // No buttons in the vertical group are shown, so hide the whole sizer | |
336 | if ((m_flags & wxRICHTEXT_ORGANISER_ORGANISE) == 0) | |
337 | { | |
338 | m_buttonSizerParent->Show(m_buttonSizer, false); | |
339 | } | |
340 | ||
341 | // No buttons in the horizontal group are shown, so hide the whole sizer | |
342 | if ((m_flags & (wxRICHTEXT_ORGANISER_OK_CANCEL|wxRICHTEXT_ORGANISER_RENUMBER)) == 0) | |
343 | { | |
344 | m_innerSizer->Show(m_bottomButtonSizer, false); | |
345 | } | |
346 | ||
347 | if (hideTypeSelector) | |
348 | { | |
349 | m_stylesListBox->GetStyleListBox()->SetStyleType(typesToShow); | |
350 | } | |
351 | ||
352 | m_stylesListBox->SetStyleSheet(m_richTextStyleSheet); | |
353 | m_stylesListBox->SetRichTextCtrl(m_richTextCtrl); | |
354 | m_stylesListBox->UpdateStyles(); | |
355 | m_stylesListBox->GetStyleListBox()->SetAutoSetSelection(false); // stop idle-time auto selection | |
356 | if (m_stylesListBox->GetStyleListBox()->GetItemCount() > 0) | |
357 | { | |
358 | m_stylesListBox->GetStyleListBox()->SetSelection(0); | |
359 | ShowPreview(); | |
360 | } | |
361 | } | |
362 | ||
363 | /*! | |
364 | * Should we show tooltips? | |
365 | */ | |
366 | ||
367 | /// Get selected style name or definition | |
368 | wxString wxRichTextStyleOrganiserDialog::GetSelectedStyle() const | |
369 | { | |
370 | wxRichTextStyleDefinition* def = GetSelectedStyleDefinition(); | |
371 | if (def) | |
372 | return def->GetName(); | |
373 | else | |
374 | return wxEmptyString; | |
375 | } | |
376 | ||
377 | wxRichTextStyleDefinition* wxRichTextStyleOrganiserDialog::GetSelectedStyleDefinition() const | |
378 | { | |
379 | int sel = m_stylesListBox->GetStyleListBox()->GetSelection(); | |
380 | return m_stylesListBox->GetStyleListBox()->GetStyle(sel); | |
381 | } | |
382 | ||
383 | ||
384 | /// Transfer data from/to window | |
385 | bool wxRichTextStyleOrganiserDialog::TransferDataFromWindow() | |
386 | { | |
387 | if (!wxDialog::TransferDataFromWindow()) | |
388 | return false; | |
389 | ||
390 | m_restartNumbering = m_restartNumberingCtrl->GetValue(); | |
391 | ||
392 | return true; | |
393 | } | |
394 | ||
395 | bool wxRichTextStyleOrganiserDialog::TransferDataToWindow() | |
396 | { | |
397 | if (!wxDialog::TransferDataToWindow()) | |
398 | return false; | |
399 | ||
400 | m_restartNumberingCtrl->SetValue(m_restartNumbering); | |
401 | ||
402 | return true; | |
403 | } | |
404 | ||
405 | /// Show preview for given or selected preview | |
406 | void wxRichTextStyleOrganiserDialog::ShowPreview(int sel) | |
407 | { | |
408 | static const wxChar* s_para1 = wxT("Lorem ipsum dolor sit amet, consectetuer adipiscing elit. \ | |
409 | Nullam ante sapien, vestibulum nonummy, pulvinar sed, luctus ut, lacus."); | |
410 | ||
411 | static const wxChar* s_para2List = wxT("Duis pharetra consequat dui. Nullam vitae justo id mauris lobortis interdum."); | |
412 | ||
413 | static const wxChar* s_para2 = wxT("Duis pharetra consequat dui. Cum sociis natoque penatibus \ | |
414 | et magnis dis parturient montes, nascetur ridiculus mus. Nullam vitae justo id mauris lobortis interdum."); | |
415 | ||
416 | static const wxChar* s_para3 = wxT("\nInteger convallis dolor at augue \ | |
417 | iaculis malesuada. Donec bibendum ipsum ut ante porta fringilla.\n"); | |
418 | ||
419 | if (sel == -1) | |
420 | { | |
421 | sel = m_stylesListBox->GetStyleListBox()->GetSelection(); | |
422 | if (sel == -1) | |
423 | return; | |
424 | } | |
425 | ||
426 | wxRichTextStyleDefinition* def = m_stylesListBox->GetStyleListBox()->GetStyle(sel); | |
427 | ||
428 | wxRichTextListStyleDefinition* listDef = wxDynamicCast(def, wxRichTextListStyleDefinition); | |
429 | //wxRichTextParagraphStyleDefinition* paraDef = wxDynamicCast(def, wxRichTextParagraphStyleDefinition); | |
430 | //wxRichTextCharacterStyleDefinition* charDef = wxDynamicCast(def, wxRichTextCharacterStyleDefinition); | |
431 | ||
432 | wxTextAttrEx attr(def->GetStyle()); | |
433 | #if 0 | |
434 | attr.SetFlags(attr.GetFlags() & | |
435 | (wxTEXT_ATTR_ALIGNMENT|wxTEXT_ATTR_LEFT_INDENT|wxTEXT_ATTR_RIGHT_INDENT|wxTEXT_ATTR_PARA_SPACING_BEFORE|wxTEXT_ATTR_PARA_SPACING_AFTER| | |
436 | wxTEXT_ATTR_LINE_SPACING| | |
437 | wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_BULLET_NUMBER|wxTEXT_ATTR_BULLET_SYMBOL)); | |
438 | #endif | |
439 | ||
440 | wxFont font(m_previewCtrl->GetFont()); | |
441 | font.SetPointSize(9); | |
442 | m_previewCtrl->SetFont(font); | |
443 | ||
444 | wxTextAttrEx normalParaAttr; | |
445 | normalParaAttr.SetFont(font); | |
446 | normalParaAttr.SetTextColour(wxColour(wxT("LIGHT GREY"))); | |
447 | ||
448 | m_previewCtrl->Freeze(); | |
449 | m_previewCtrl->Clear(); | |
450 | ||
451 | m_previewCtrl->BeginStyle(normalParaAttr); | |
452 | m_previewCtrl->WriteText(s_para1); | |
453 | m_previewCtrl->EndStyle(); | |
454 | ||
455 | m_previewCtrl->BeginStyle(attr); | |
456 | ||
457 | if (listDef) | |
458 | { | |
459 | int i; | |
460 | for (i = 0; i < 10; i++) | |
461 | { | |
462 | wxTextAttrEx levelAttr = * listDef->GetLevelAttributes(i); | |
463 | levelAttr.SetBulletNumber(1); | |
464 | m_previewCtrl->BeginStyle(levelAttr); | |
465 | m_previewCtrl->WriteText(wxString::Format(wxT("\nList level %d. "), i+1) + s_para2List); | |
466 | m_previewCtrl->EndStyle(); | |
467 | } | |
468 | } | |
469 | else | |
470 | { | |
471 | m_previewCtrl->WriteText(wxString(wxT("\n")) + s_para2); | |
472 | } | |
473 | ||
474 | m_previewCtrl->EndStyle(); | |
475 | ||
476 | m_previewCtrl->BeginStyle(normalParaAttr); | |
477 | m_previewCtrl->WriteText(s_para3); | |
478 | m_previewCtrl->EndStyle(); | |
479 | ||
480 | m_previewCtrl->Thaw(); | |
481 | } | |
482 | ||
483 | /// Clears the preview | |
484 | void wxRichTextStyleOrganiserDialog::ClearPreview() | |
485 | { | |
486 | m_richTextCtrl->Clear(); | |
487 | } | |
488 | ||
489 | bool wxRichTextStyleOrganiserDialog::ApplyStyle(wxRichTextCtrl* ctrl) | |
490 | { | |
491 | int sel = m_stylesListBox->GetStyleListBox()->GetSelection(); | |
492 | if (sel == -1) | |
493 | return false; | |
494 | if (!ctrl) | |
495 | ctrl = GetRichTextCtrl(); | |
496 | if (!ctrl) | |
497 | return false; | |
498 | if (!ctrl->HasSelection()) | |
499 | return false; | |
500 | ||
501 | ||
502 | wxRichTextStyleDefinition* def = m_stylesListBox->GetStyleListBox()->GetStyle(sel); | |
503 | wxRichTextListStyleDefinition* listDef = wxDynamicCast(def, wxRichTextListStyleDefinition); | |
504 | ||
505 | if (listDef && m_restartNumberingCtrl->GetValue()) | |
506 | { | |
507 | wxRichTextRange range = ctrl->GetSelectionRange(); | |
508 | return ctrl->SetListStyle(range, listDef, wxRICHTEXT_SETSTYLE_WITH_UNDO|wxRICHTEXT_SETSTYLE_RENUMBER); | |
509 | } | |
510 | else | |
511 | { | |
512 | return ctrl->ApplyStyle(def); | |
513 | } | |
514 | } | |
515 | ||
516 | /*! | |
517 | * Get bitmap resources | |
518 | */ | |
519 | ||
520 | wxBitmap wxRichTextStyleOrganiserDialog::GetBitmapResource( const wxString& name ) | |
521 | { | |
522 | // Bitmap retrieval | |
523 | ////@begin wxRichTextStyleOrganiserDialog bitmap retrieval | |
524 | wxUnusedVar(name); | |
525 | return wxNullBitmap; | |
526 | ////@end wxRichTextStyleOrganiserDialog bitmap retrieval | |
527 | } | |
528 | ||
529 | /*! | |
530 | * Get icon resources | |
531 | */ | |
532 | ||
533 | wxIcon wxRichTextStyleOrganiserDialog::GetIconResource( const wxString& name ) | |
534 | { | |
535 | // Icon retrieval | |
536 | ////@begin wxRichTextStyleOrganiserDialog icon retrieval | |
537 | wxUnusedVar(name); | |
538 | return wxNullIcon; | |
539 | ////@end wxRichTextStyleOrganiserDialog icon retrieval | |
540 | } | |
541 | ||
542 | /*! | |
543 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_APPLY | |
544 | */ | |
545 | ||
546 | void wxRichTextStyleOrganiserDialog::OnApplyClick( wxCommandEvent& WXUNUSED(event) ) | |
547 | { | |
548 | ApplyStyle(); | |
549 | } | |
550 | ||
551 | /*! | |
552 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_APPLY | |
553 | */ | |
554 | ||
555 | void wxRichTextStyleOrganiserDialog::OnApplyUpdate( wxUpdateUIEvent& event ) | |
556 | { | |
557 | event.Enable(((GetFlags() & wxRICHTEXT_ORGANISER_APPLY_STYLES) != 0) && m_stylesListBox->GetStyleListBox()->GetSelection() != wxNOT_FOUND); | |
558 | } | |
559 | ||
560 | ||
561 | /*! | |
562 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_CHAR | |
563 | */ | |
564 | ||
565 | void wxRichTextStyleOrganiserDialog::OnNewCharClick( wxCommandEvent& WXUNUSED(event) ) | |
566 | { | |
567 | wxString styleName = wxGetTextFromUser(_("Enter a character style name"), _("New Style")); | |
568 | if (!styleName.IsEmpty()) | |
569 | { | |
570 | if (GetStyleSheet()->FindCharacterStyle(styleName)) | |
571 | { | |
572 | wxMessageBox(_("Sorry, that name is taken. Please choose another."), _("New Style"), wxICON_EXCLAMATION|wxOK, this); | |
573 | return; | |
574 | } | |
575 | ||
576 | wxRichTextCharacterStyleDefinition* style = new wxRichTextCharacterStyleDefinition(styleName); | |
577 | ||
578 | int pages = wxRICHTEXT_FORMAT_FONT|wxRICHTEXT_FORMAT_STYLE_EDITOR; | |
579 | wxRichTextFormattingDialog formatDlg; | |
580 | formatDlg.SetStyleDefinition(*style, GetStyleSheet()); | |
581 | formatDlg.Create(pages, this); | |
582 | ||
583 | if (formatDlg.ShowModal() == wxID_OK) | |
584 | { | |
585 | wxRichTextCharacterStyleDefinition* charDef = wxDynamicCast(formatDlg.GetStyleDefinition(), wxRichTextCharacterStyleDefinition); | |
586 | ||
587 | (*((wxRichTextCharacterStyleDefinition* ) style)) = (*charDef); | |
588 | ||
589 | GetStyleSheet()->AddCharacterStyle(style); | |
590 | ||
591 | m_stylesListBox->UpdateStyles(); | |
592 | ShowPreview(); | |
593 | } | |
594 | else | |
595 | delete style; | |
596 | } | |
597 | } | |
598 | ||
599 | /*! | |
600 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_CHAR | |
601 | */ | |
602 | ||
603 | void wxRichTextStyleOrganiserDialog::OnNewCharUpdate( wxUpdateUIEvent& event ) | |
604 | { | |
605 | event.Enable((GetFlags() & wxRICHTEXT_ORGANISER_CREATE_STYLES) != 0); | |
606 | } | |
607 | ||
608 | ||
609 | /*! | |
610 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_PARA | |
611 | */ | |
612 | ||
613 | void wxRichTextStyleOrganiserDialog::OnNewParaClick( wxCommandEvent& WXUNUSED(event) ) | |
614 | { | |
615 | wxString styleName = wxGetTextFromUser(_("Enter a paragraph style name"), _("New Style")); | |
616 | if (!styleName.IsEmpty()) | |
617 | { | |
618 | if (GetStyleSheet()->FindParagraphStyle(styleName)) | |
619 | { | |
620 | wxMessageBox(_("Sorry, that name is taken. Please choose another."), _("New Style"), wxICON_EXCLAMATION|wxOK, this); | |
621 | return; | |
622 | } | |
623 | ||
624 | wxRichTextParagraphStyleDefinition* style = new wxRichTextParagraphStyleDefinition(styleName); | |
625 | ||
626 | int pages = wxRICHTEXT_FORMAT_STYLE_EDITOR|wxRICHTEXT_FORMAT_FONT|wxRICHTEXT_FORMAT_INDENTS_SPACING|wxRICHTEXT_FORMAT_TABS|wxRICHTEXT_FORMAT_BULLETS; | |
627 | wxRichTextFormattingDialog formatDlg; | |
628 | formatDlg.SetStyleDefinition(*style, GetStyleSheet()); | |
629 | formatDlg.Create(pages, this); | |
630 | ||
631 | if (formatDlg.ShowModal() == wxID_OK) | |
632 | { | |
633 | wxRichTextParagraphStyleDefinition* paraDef = wxDynamicCast(formatDlg.GetStyleDefinition(), wxRichTextParagraphStyleDefinition); | |
634 | ||
635 | (*((wxRichTextParagraphStyleDefinition* ) style)) = (*paraDef); | |
636 | ||
637 | GetStyleSheet()->AddParagraphStyle(style); | |
638 | ||
639 | m_stylesListBox->UpdateStyles(); | |
640 | ShowPreview(); | |
641 | } | |
642 | else | |
643 | delete style; | |
644 | } | |
645 | } | |
646 | ||
647 | /*! | |
648 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_PARA | |
649 | */ | |
650 | ||
651 | void wxRichTextStyleOrganiserDialog::OnNewParaUpdate( wxUpdateUIEvent& event ) | |
652 | { | |
653 | event.Enable((GetFlags() & wxRICHTEXT_ORGANISER_CREATE_STYLES) != 0); | |
654 | } | |
655 | ||
656 | ||
657 | /*! | |
658 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_EDIT | |
659 | */ | |
660 | ||
661 | void wxRichTextStyleOrganiserDialog::OnEditClick( wxCommandEvent& WXUNUSED(event) ) | |
662 | { | |
663 | int sel = m_stylesListBox->GetStyleListBox()->GetSelection(); | |
664 | if (sel != wxNOT_FOUND) | |
665 | { | |
666 | wxRichTextStyleDefinition* def = m_stylesListBox->GetStyleListBox()->GetStyle(sel); | |
667 | ||
668 | int pages = wxRICHTEXT_FORMAT_STYLE_EDITOR; | |
669 | ||
670 | if (def->IsKindOf(CLASSINFO(wxRichTextCharacterStyleDefinition))) | |
671 | { | |
672 | pages |= wxRICHTEXT_FORMAT_FONT; | |
673 | } | |
674 | else if (def->IsKindOf(CLASSINFO(wxRichTextListStyleDefinition))) | |
675 | { | |
676 | pages |= wxRICHTEXT_FORMAT_LIST_STYLE|wxRICHTEXT_FORMAT_FONT|wxRICHTEXT_FORMAT_INDENTS_SPACING; | |
677 | } | |
678 | else if (def->IsKindOf(CLASSINFO(wxRichTextParagraphStyleDefinition))) | |
679 | { | |
680 | pages |= wxRICHTEXT_FORMAT_FONT|wxRICHTEXT_FORMAT_INDENTS_SPACING|wxRICHTEXT_FORMAT_TABS|wxRICHTEXT_FORMAT_BULLETS; | |
681 | } | |
682 | ||
683 | wxRichTextFormattingDialog formatDlg; | |
684 | formatDlg.SetStyleDefinition(*def, GetStyleSheet()); | |
685 | formatDlg.Create(pages, this); | |
686 | ||
687 | if (formatDlg.ShowModal() == wxID_OK) | |
688 | { | |
689 | wxRichTextParagraphStyleDefinition* paraDef = wxDynamicCast(formatDlg.GetStyleDefinition(), wxRichTextParagraphStyleDefinition); | |
690 | wxRichTextCharacterStyleDefinition* charDef = wxDynamicCast(formatDlg.GetStyleDefinition(), wxRichTextCharacterStyleDefinition); | |
691 | wxRichTextListStyleDefinition* listDef = wxDynamicCast(formatDlg.GetStyleDefinition(), wxRichTextListStyleDefinition); | |
692 | ||
693 | if (listDef) | |
694 | { | |
695 | (*((wxRichTextListStyleDefinition* ) def)) = (*listDef); | |
696 | } | |
697 | else if (paraDef) | |
698 | { | |
699 | (*((wxRichTextParagraphStyleDefinition* ) def)) = (*paraDef); | |
700 | } | |
701 | else | |
702 | { | |
703 | (*((wxRichTextCharacterStyleDefinition* ) def)) = (*charDef); | |
704 | } | |
705 | ||
706 | m_stylesListBox->UpdateStyles(); | |
707 | ShowPreview(); | |
708 | } | |
709 | } | |
710 | } | |
711 | ||
712 | /*! | |
713 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_EDIT | |
714 | */ | |
715 | ||
716 | void wxRichTextStyleOrganiserDialog::OnEditUpdate( wxUpdateUIEvent& event ) | |
717 | { | |
718 | event.Enable(((GetFlags() & wxRICHTEXT_ORGANISER_EDIT_STYLES) != 0) && m_stylesListBox->GetStyleListBox()->GetSelection() != wxNOT_FOUND); | |
719 | } | |
720 | ||
721 | ||
722 | /*! | |
723 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_DELETE | |
724 | */ | |
725 | ||
726 | void wxRichTextStyleOrganiserDialog::OnDeleteClick( wxCommandEvent& WXUNUSED(event) ) | |
727 | { | |
728 | int sel = m_stylesListBox->GetStyleListBox()->GetSelection(); | |
729 | if (sel != wxNOT_FOUND) | |
730 | { | |
731 | wxRichTextStyleDefinition* def = m_stylesListBox->GetStyleListBox()->GetStyle(sel); | |
732 | wxString name(def->GetName()); | |
733 | if (wxYES == wxMessageBox(wxString::Format(_("Delete style %s?"), (const wxChar*) name), _("Delete Style"), wxYES_NO|wxICON_QUESTION, this)) | |
734 | { | |
735 | m_stylesListBox->GetStyleListBox()->SetItemCount(0); | |
736 | ||
737 | if (def->IsKindOf(CLASSINFO(wxRichTextListStyleDefinition))) | |
738 | GetStyleSheet()->RemoveListStyle((wxRichTextListStyleDefinition*) def, true); | |
739 | else if (def->IsKindOf(CLASSINFO(wxRichTextParagraphStyleDefinition))) | |
740 | GetStyleSheet()->RemoveParagraphStyle((wxRichTextParagraphStyleDefinition*) def, true); | |
741 | else if (def->IsKindOf(CLASSINFO(wxRichTextCharacterStyleDefinition))) | |
742 | GetStyleSheet()->RemoveCharacterStyle((wxRichTextCharacterStyleDefinition*) def, true); | |
743 | ||
744 | m_stylesListBox->UpdateStyles(); | |
745 | ||
746 | if (m_stylesListBox->GetStyleListBox()->GetSelection() != -1) | |
747 | ShowPreview(); | |
748 | else | |
749 | ClearPreview(); | |
750 | } | |
751 | } | |
752 | } | |
753 | ||
754 | /*! | |
755 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_DELETE | |
756 | */ | |
757 | ||
758 | void wxRichTextStyleOrganiserDialog::OnDeleteUpdate( wxUpdateUIEvent& event ) | |
759 | { | |
760 | event.Enable(((GetFlags() & wxRICHTEXT_ORGANISER_DELETE_STYLES) != 0) && m_stylesListBox->GetStyleListBox()->GetSelection() != wxNOT_FOUND); | |
761 | } | |
762 | ||
763 | /*! | |
764 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_LIST | |
765 | */ | |
766 | ||
767 | void wxRichTextStyleOrganiserDialog::OnNewListClick( wxCommandEvent& WXUNUSED(event) ) | |
768 | { | |
769 | wxString styleName = wxGetTextFromUser(_("Enter a list style name"), _("New Style")); | |
770 | if (!styleName.IsEmpty()) | |
771 | { | |
772 | if (GetStyleSheet()->FindListStyle(styleName)) | |
773 | { | |
774 | wxMessageBox(_("Sorry, that name is taken. Please choose another."), _("New Style"), wxICON_EXCLAMATION|wxOK, this); | |
775 | return; | |
776 | } | |
777 | ||
778 | wxRichTextListStyleDefinition* style = new wxRichTextListStyleDefinition(styleName); | |
779 | ||
780 | // Initialize the style to make it easier to edit | |
781 | int i; | |
782 | for (i = 0; i < 10; i++) | |
783 | { | |
784 | wxString bulletSymbol; | |
785 | if (i == 0) | |
786 | bulletSymbol = wxT("*"); | |
787 | else if (i == 1) | |
788 | bulletSymbol = wxT("-"); | |
789 | else if (i == 2) | |
790 | bulletSymbol = wxT("*"); | |
791 | else if (i == 3) | |
792 | bulletSymbol = wxT("-"); | |
793 | else | |
794 | bulletSymbol = wxT("*"); | |
795 | ||
796 | style->SetAttributes(i, (i+1)*60, 60, wxTEXT_ATTR_BULLET_STYLE_SYMBOL, bulletSymbol); | |
797 | } | |
798 | ||
799 | int pages = wxRICHTEXT_FORMAT_LIST_STYLE|wxRICHTEXT_FORMAT_STYLE_EDITOR|wxRICHTEXT_FORMAT_FONT|wxRICHTEXT_FORMAT_INDENTS_SPACING; | |
800 | wxRichTextFormattingDialog formatDlg; | |
801 | formatDlg.SetStyleDefinition(*style, GetStyleSheet()); | |
802 | formatDlg.Create(pages, this); | |
803 | ||
804 | if (formatDlg.ShowModal() == wxID_OK) | |
805 | { | |
806 | wxRichTextListStyleDefinition* listDef = wxDynamicCast(formatDlg.GetStyleDefinition(), wxRichTextListStyleDefinition); | |
807 | ||
808 | (*((wxRichTextListStyleDefinition* ) style)) = (*listDef); | |
809 | ||
810 | GetStyleSheet()->AddListStyle(style); | |
811 | ||
812 | m_stylesListBox->UpdateStyles(); | |
813 | ShowPreview(); | |
814 | } | |
815 | else | |
816 | delete style; | |
817 | } | |
818 | } | |
819 | ||
820 | /*! | |
821 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_NEW_LIST | |
822 | */ | |
823 | ||
824 | void wxRichTextStyleOrganiserDialog::OnNewListUpdate( wxUpdateUIEvent& event ) | |
825 | { | |
826 | event.Enable((GetFlags() & wxRICHTEXT_ORGANISER_CREATE_STYLES) != 0); | |
827 | } | |
828 | ||
829 | /*! | |
830 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_RENAME | |
831 | */ | |
832 | ||
833 | void wxRichTextStyleOrganiserDialog::OnRenameClick( wxCommandEvent& WXUNUSED(event) ) | |
834 | { | |
835 | } | |
836 | ||
837 | /*! | |
838 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTSTYLEORGANISERDIALOG_RENAME | |
839 | */ | |
840 | ||
841 | void wxRichTextStyleOrganiserDialog::OnRenameUpdate( wxUpdateUIEvent& event ) | |
842 | { | |
843 | event.Enable(((GetFlags() & wxRICHTEXT_ORGANISER_RENAME_STYLES) != 0) && m_stylesListBox->GetStyleListBox()->GetSelection() != wxNOT_FOUND); | |
844 | } | |
845 | ||
846 | /// List selection | |
847 | void wxRichTextStyleOrganiserDialog::OnListSelection(wxCommandEvent& event) | |
848 | { | |
849 | if (event.GetEventObject() == m_stylesListBox->GetStyleListBox()) | |
850 | ShowPreview(); | |
851 | else | |
852 | event.Skip(); | |
853 | } | |
854 | ||
855 | #endif | |
856 | // wxUSE_RICHTEXT | |
857 |