]>
Commit | Line | Data |
---|---|---|
dadd4f55 | 1 | ///////////////////////////////////////////////////////////////////////////// |
41a85215 WS |
2 | // Name: src/richtext/richtextliststylepage.cpp |
3 | // Purpose: | |
dadd4f55 | 4 | // Author: Julian Smart |
41a85215 | 5 | // Modified by: |
dadd4f55 | 6 | // Created: 10/18/2006 11:36:37 AM |
41a85215 | 7 | // RCS-ID: $Id$ |
dadd4f55 | 8 | // Copyright: (c) Julian Smart |
41a85215 | 9 | // Licence: wxWindows licence |
dadd4f55 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
41a85215 | 12 | #include "wx/richtext/richtextliststylepage.h" |
dadd4f55 JS |
13 | |
14 | ////@begin XPM images | |
15 | ////@end XPM images | |
16 | ||
17 | /*! | |
18 | * wxRichTextListStylePage type definition | |
19 | */ | |
20 | ||
603f702b | 21 | IMPLEMENT_DYNAMIC_CLASS( wxRichTextListStylePage, wxRichTextDialogPage ) |
dadd4f55 JS |
22 | |
23 | /*! | |
24 | * wxRichTextListStylePage event table definition | |
25 | */ | |
26 | ||
603f702b | 27 | BEGIN_EVENT_TABLE( wxRichTextListStylePage, wxRichTextDialogPage ) |
dadd4f55 JS |
28 | |
29 | ////@begin wxRichTextListStylePage event table entries | |
30 | EVT_SPINCTRL( ID_RICHTEXTLISTSTYLEPAGE_LEVEL, wxRichTextListStylePage::OnLevelUpdated ) | |
31 | EVT_SPIN_UP( ID_RICHTEXTLISTSTYLEPAGE_LEVEL, wxRichTextListStylePage::OnLevelUp ) | |
32 | EVT_SPIN_DOWN( ID_RICHTEXTLISTSTYLEPAGE_LEVEL, wxRichTextListStylePage::OnLevelDown ) | |
33 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_LEVEL, wxRichTextListStylePage::OnLevelTextUpdated ) | |
34 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_LEVEL, wxRichTextListStylePage::OnLevelUIUpdate ) | |
35 | ||
36 | EVT_BUTTON( ID_RICHTEXTLISTSTYLEPAGE_CHOOSE_FONT, wxRichTextListStylePage::OnChooseFontClick ) | |
37 | ||
38 | EVT_LISTBOX( ID_RICHTEXTLISTSTYLEPAGE_STYLELISTBOX, wxRichTextListStylePage::OnStylelistboxSelected ) | |
39 | ||
f089713f JS |
40 | EVT_CHECKBOX( ID_RICHTEXTLISTSTYLEPAGE_PERIODCTRL, wxRichTextListStylePage::OnPeriodctrlClick ) |
41 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_PERIODCTRL, wxRichTextListStylePage::OnPeriodctrlUpdate ) | |
42 | ||
43 | EVT_CHECKBOX( ID_RICHTEXTLISTSTYLEPAGE_PARENTHESESCTRL, wxRichTextListStylePage::OnParenthesesctrlClick ) | |
44 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_PARENTHESESCTRL, wxRichTextListStylePage::OnParenthesesctrlUpdate ) | |
45 | ||
d2d0adc7 JS |
46 | EVT_CHECKBOX( ID_RICHTEXTLISTSTYLEPAGE_RIGHTPARENTHESISCTRL, wxRichTextListStylePage::OnRightParenthesisCtrlClick ) |
47 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_RIGHTPARENTHESISCTRL, wxRichTextListStylePage::OnRightParenthesisCtrlUpdate ) | |
48 | ||
49 | EVT_COMBOBOX( ID_RICHTEXTLISTSTYLEPAGE_BULLETALIGNMENTCTRL, wxRichTextListStylePage::OnBulletAlignmentCtrlSelected ) | |
50 | ||
dadd4f55 JS |
51 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_SYMBOLSTATIC, wxRichTextListStylePage::OnSymbolstaticUpdate ) |
52 | ||
cbfc8d9a JS |
53 | EVT_COMBOBOX( ID_RICHTEXTLISTSTYLEPAGE_SYMBOLCTRL, wxRichTextListStylePage::OnSymbolctrlSelected ) |
54 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_SYMBOLCTRL, wxRichTextListStylePage::OnSymbolctrlUpdated ) | |
55 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_SYMBOLCTRL, wxRichTextListStylePage::OnSymbolctrlUIUpdate ) | |
dadd4f55 | 56 | |
cbfc8d9a JS |
57 | EVT_BUTTON( ID_RICHTEXTLISTSTYLEPAGE_CHOOSE_SYMBOL, wxRichTextListStylePage::OnChooseSymbolClick ) |
58 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_CHOOSE_SYMBOL, wxRichTextListStylePage::OnChooseSymbolUpdate ) | |
dadd4f55 JS |
59 | |
60 | EVT_COMBOBOX( ID_RICHTEXTLISTSTYLEPAGE_SYMBOLFONTCTRL, wxRichTextListStylePage::OnSymbolfontctrlSelected ) | |
61 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_SYMBOLFONTCTRL, wxRichTextListStylePage::OnSymbolfontctrlUpdated ) | |
62 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_SYMBOLFONTCTRL, wxRichTextListStylePage::OnSymbolfontctrlUIUpdate ) | |
63 | ||
f089713f | 64 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_NAMESTATIC, wxRichTextListStylePage::OnNamestaticUpdate ) |
dadd4f55 | 65 | |
f089713f JS |
66 | EVT_COMBOBOX( ID_RICHTEXTLISTSTYLEPAGE_NAMECTRL, wxRichTextListStylePage::OnNamectrlSelected ) |
67 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_NAMECTRL, wxRichTextListStylePage::OnNamectrlUpdated ) | |
68 | EVT_UPDATE_UI( ID_RICHTEXTLISTSTYLEPAGE_NAMECTRL, wxRichTextListStylePage::OnNamectrlUIUpdate ) | |
dadd4f55 JS |
69 | |
70 | EVT_RADIOBUTTON( ID_RICHTEXTLISTSTYLEPAGE_ALIGNLEFT, wxRichTextListStylePage::OnRichtextliststylepageAlignleftSelected ) | |
71 | ||
72 | EVT_RADIOBUTTON( ID_RICHTEXTLISTSTYLEPAGE_ALIGNRIGHT, wxRichTextListStylePage::OnRichtextliststylepageAlignrightSelected ) | |
73 | ||
74 | EVT_RADIOBUTTON( ID_RICHTEXTLISTSTYLEPAGE_JUSTIFIED, wxRichTextListStylePage::OnRichtextliststylepageJustifiedSelected ) | |
75 | ||
76 | EVT_RADIOBUTTON( ID_RICHTEXTLISTSTYLEPAGE_CENTERED, wxRichTextListStylePage::OnRichtextliststylepageCenteredSelected ) | |
77 | ||
78 | EVT_RADIOBUTTON( ID_RICHTEXTLISTSTYLEPAGE_ALIGNINDETERMINATE, wxRichTextListStylePage::OnRichtextliststylepageAlignindeterminateSelected ) | |
79 | ||
80 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_INDENTLEFT, wxRichTextListStylePage::OnIndentLeftUpdated ) | |
81 | ||
82 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_INDENTFIRSTLINE, wxRichTextListStylePage::OnIndentFirstLineUpdated ) | |
83 | ||
84 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_INDENTRIGHT, wxRichTextListStylePage::OnIndentRightUpdated ) | |
85 | ||
86 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_SPACINGBEFORE, wxRichTextListStylePage::OnSpacingBeforeUpdated ) | |
87 | ||
88 | EVT_TEXT( ID_RICHTEXTLISTSTYLEPAGE_SPACINGAFTER, wxRichTextListStylePage::OnSpacingAfterUpdated ) | |
89 | ||
90 | EVT_COMBOBOX( ID_RICHTEXTLISTSTYLEPAGE_LINESPACING, wxRichTextListStylePage::OnLineSpacingSelected ) | |
91 | ||
92 | ////@end wxRichTextListStylePage event table entries | |
93 | ||
94 | END_EVENT_TABLE() | |
95 | ||
603f702b JS |
96 | IMPLEMENT_HELP_PROVISION(wxRichTextListStylePage) |
97 | ||
dadd4f55 JS |
98 | /*! |
99 | * wxRichTextListStylePage constructors | |
100 | */ | |
101 | ||
102 | wxRichTextListStylePage::wxRichTextListStylePage( ) | |
103 | { | |
104 | Init(); | |
105 | } | |
106 | ||
107 | wxRichTextListStylePage::wxRichTextListStylePage( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style ) | |
108 | { | |
109 | Init(); | |
110 | Create(parent, id, pos, size, style); | |
111 | } | |
112 | ||
113 | /*! | |
114 | * wxRichTextListStylePage creator | |
115 | */ | |
116 | ||
117 | bool wxRichTextListStylePage::Create( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style ) | |
118 | { | |
119 | ////@begin wxRichTextListStylePage creation | |
603f702b | 120 | wxRichTextDialogPage::Create( parent, id, pos, size, style ); |
dadd4f55 JS |
121 | |
122 | CreateControls(); | |
123 | if (GetSizer()) | |
124 | { | |
125 | GetSizer()->SetSizeHints(this); | |
126 | } | |
127 | Centre(); | |
128 | ////@end wxRichTextListStylePage creation | |
129 | return true; | |
130 | } | |
131 | ||
132 | /*! | |
41a85215 | 133 | * Member initialisation |
dadd4f55 JS |
134 | */ |
135 | ||
136 | void wxRichTextListStylePage::Init() | |
137 | { | |
138 | m_dontUpdate = false; | |
139 | m_currentLevel = 1; | |
140 | ||
141 | ////@begin wxRichTextListStylePage member initialisation | |
142 | m_levelCtrl = NULL; | |
143 | m_styleListBox = NULL; | |
f089713f JS |
144 | m_periodCtrl = NULL; |
145 | m_parenthesesCtrl = NULL; | |
d2d0adc7 JS |
146 | m_rightParenthesisCtrl = NULL; |
147 | m_bulletAlignmentCtrl = NULL; | |
dadd4f55 JS |
148 | m_symbolCtrl = NULL; |
149 | m_symbolFontCtrl = NULL; | |
f089713f | 150 | m_bulletNameCtrl = NULL; |
dadd4f55 JS |
151 | m_alignmentLeft = NULL; |
152 | m_alignmentRight = NULL; | |
153 | m_alignmentJustified = NULL; | |
154 | m_alignmentCentred = NULL; | |
155 | m_alignmentIndeterminate = NULL; | |
156 | m_indentLeft = NULL; | |
157 | m_indentLeftFirst = NULL; | |
158 | m_indentRight = NULL; | |
159 | m_spacingBefore = NULL; | |
160 | m_spacingAfter = NULL; | |
161 | m_spacingLine = NULL; | |
162 | m_previewCtrl = NULL; | |
163 | ////@end wxRichTextListStylePage member initialisation | |
164 | } | |
f089713f | 165 | |
dadd4f55 JS |
166 | /*! |
167 | * Control creation for wxRichTextListStylePage | |
168 | */ | |
169 | ||
170 | void wxRichTextListStylePage::CreateControls() | |
41a85215 | 171 | { |
dadd4f55 | 172 | ////@begin wxRichTextListStylePage content construction |
603f702b | 173 | wxRichTextListStylePage* itemRichTextDialogPage1 = this; |
dadd4f55 JS |
174 | |
175 | wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL); | |
603f702b | 176 | itemRichTextDialogPage1->SetSizer(itemBoxSizer2); |
dadd4f55 JS |
177 | |
178 | wxBoxSizer* itemBoxSizer3 = new wxBoxSizer(wxVERTICAL); | |
179 | itemBoxSizer2->Add(itemBoxSizer3, 1, wxGROW|wxALL, 5); | |
180 | ||
181 | wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxHORIZONTAL); | |
182 | itemBoxSizer3->Add(itemBoxSizer4, 0, wxALIGN_CENTER_HORIZONTAL, 5); | |
183 | ||
603f702b | 184 | wxStaticText* itemStaticText5 = new wxStaticText( itemRichTextDialogPage1, wxID_STATIC, _("&List level:"), wxDefaultPosition, wxDefaultSize, 0 ); |
69ce77e2 | 185 | itemBoxSizer4->Add(itemStaticText5, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); |
dadd4f55 | 186 | |
2e92ad1b | 187 | m_levelCtrl = new wxSpinCtrl( itemRichTextDialogPage1, ID_RICHTEXTLISTSTYLEPAGE_LEVEL, wxT("1"), wxDefaultPosition, wxSize(60, -1), wxSP_ARROW_KEYS, 1, 10, 1 ); |
dadd4f55 | 188 | m_levelCtrl->SetHelpText(_("Selects the list level to edit.")); |
6103234e | 189 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 JS |
190 | m_levelCtrl->SetToolTip(_("Selects the list level to edit.")); |
191 | itemBoxSizer4->Add(m_levelCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
192 | ||
193 | itemBoxSizer4->Add(5, 5, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
194 | ||
603f702b | 195 | wxButton* itemButton8 = new wxButton( itemRichTextDialogPage1, ID_RICHTEXTLISTSTYLEPAGE_CHOOSE_FONT, _("&Font for Level..."), wxDefaultPosition, wxDefaultSize, 0 ); |
dadd4f55 | 196 | itemButton8->SetHelpText(_("Click to choose the font for this level.")); |
6103234e | 197 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 JS |
198 | itemButton8->SetToolTip(_("Click to choose the font for this level.")); |
199 | itemBoxSizer4->Add(itemButton8, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
200 | ||
603f702b | 201 | wxNotebook* itemNotebook9 = new wxNotebook( itemRichTextDialogPage1, ID_RICHTEXTLISTSTYLEPAGE_NOTEBOOK, wxDefaultPosition, wxDefaultSize, wxBK_DEFAULT|wxBK_TOP ); |
dadd4f55 | 202 | |
d2d0adc7 | 203 | wxPanel* itemPanel10 = new wxPanel( itemNotebook9, ID_RICHTEXTLISTSTYLEPAGE_BULLETS, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxTAB_TRAVERSAL ); |
dadd4f55 JS |
204 | wxBoxSizer* itemBoxSizer11 = new wxBoxSizer(wxVERTICAL); |
205 | itemPanel10->SetSizer(itemBoxSizer11); | |
206 | ||
207 | wxBoxSizer* itemBoxSizer12 = new wxBoxSizer(wxHORIZONTAL); | |
208 | itemBoxSizer11->Add(itemBoxSizer12, 1, wxGROW, 5); | |
209 | wxBoxSizer* itemBoxSizer13 = new wxBoxSizer(wxVERTICAL); | |
210 | itemBoxSizer12->Add(itemBoxSizer13, 0, wxGROW, 5); | |
211 | wxStaticText* itemStaticText14 = new wxStaticText( itemPanel10, wxID_STATIC, _("&Bullet style:"), wxDefaultPosition, wxDefaultSize, 0 ); | |
69ce77e2 | 212 | itemBoxSizer13->Add(itemStaticText14, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP, 5); |
dadd4f55 | 213 | |
6103234e | 214 | wxArrayString m_styleListBoxStrings; |
706465df | 215 | m_styleListBox = new wxListBox( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_STYLELISTBOX, wxDefaultPosition, wxSize(-1, 80), m_styleListBoxStrings, wxLB_SINGLE ); |
dadd4f55 | 216 | m_styleListBox->SetHelpText(_("The available bullet styles.")); |
6103234e | 217 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 218 | m_styleListBox->SetToolTip(_("The available bullet styles.")); |
f089713f JS |
219 | itemBoxSizer13->Add(m_styleListBox, 1, wxGROW|wxALL, 5); |
220 | ||
221 | wxBoxSizer* itemBoxSizer16 = new wxBoxSizer(wxHORIZONTAL); | |
222 | itemBoxSizer13->Add(itemBoxSizer16, 0, wxGROW, 5); | |
223 | m_periodCtrl = new wxCheckBox( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_PERIODCTRL, _("Peri&od"), wxDefaultPosition, wxDefaultSize, 0 ); | |
224 | m_periodCtrl->SetValue(false); | |
225 | m_periodCtrl->SetHelpText(_("Check to add a period after the bullet.")); | |
6103234e | 226 | if (wxRichTextListStylePage::ShowToolTips()) |
f089713f JS |
227 | m_periodCtrl->SetToolTip(_("Check to add a period after the bullet.")); |
228 | itemBoxSizer16->Add(m_periodCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
229 | ||
d2d0adc7 | 230 | m_parenthesesCtrl = new wxCheckBox( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_PARENTHESESCTRL, _("(*)"), wxDefaultPosition, wxDefaultSize, 0 ); |
f089713f JS |
231 | m_parenthesesCtrl->SetValue(false); |
232 | m_parenthesesCtrl->SetHelpText(_("Check to enclose the bullet in parentheses.")); | |
6103234e | 233 | if (wxRichTextListStylePage::ShowToolTips()) |
f089713f JS |
234 | m_parenthesesCtrl->SetToolTip(_("Check to enclose the bullet in parentheses.")); |
235 | itemBoxSizer16->Add(m_parenthesesCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
dadd4f55 | 236 | |
d2d0adc7 JS |
237 | m_rightParenthesisCtrl = new wxCheckBox( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_RIGHTPARENTHESISCTRL, _("*)"), wxDefaultPosition, wxDefaultSize, 0 ); |
238 | m_rightParenthesisCtrl->SetValue(false); | |
239 | m_rightParenthesisCtrl->SetHelpText(_("Check to add a right parenthesis.")); | |
6103234e | 240 | if (wxRichTextListStylePage::ShowToolTips()) |
d2d0adc7 JS |
241 | m_rightParenthesisCtrl->SetToolTip(_("Check to add a right parenthesis.")); |
242 | itemBoxSizer16->Add(m_rightParenthesisCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
243 | ||
244 | itemBoxSizer13->Add(2, 1, 0, wxALIGN_CENTER_HORIZONTAL, 5); | |
245 | ||
246 | wxStaticText* itemStaticText21 = new wxStaticText( itemPanel10, wxID_STATIC, _("Bullet &Alignment:"), wxDefaultPosition, wxDefaultSize, 0 ); | |
69ce77e2 | 247 | itemBoxSizer13->Add(itemStaticText21, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP, 5); |
d2d0adc7 | 248 | |
6103234e JS |
249 | wxArrayString m_bulletAlignmentCtrlStrings; |
250 | m_bulletAlignmentCtrlStrings.Add(_("Left")); | |
251 | m_bulletAlignmentCtrlStrings.Add(_("Centre")); | |
252 | m_bulletAlignmentCtrlStrings.Add(_("Right")); | |
253 | m_bulletAlignmentCtrl = new wxComboBox( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_BULLETALIGNMENTCTRL, _("Left"), wxDefaultPosition, wxSize(60, -1), m_bulletAlignmentCtrlStrings, wxCB_READONLY ); | |
d2d0adc7 JS |
254 | m_bulletAlignmentCtrl->SetStringSelection(_("Left")); |
255 | m_bulletAlignmentCtrl->SetHelpText(_("The bullet character.")); | |
6103234e | 256 | if (wxRichTextListStylePage::ShowToolTips()) |
d2d0adc7 JS |
257 | m_bulletAlignmentCtrl->SetToolTip(_("The bullet character.")); |
258 | itemBoxSizer13->Add(m_bulletAlignmentCtrl, 0, wxGROW|wxALL|wxFIXED_MINSIZE, 5); | |
259 | ||
dadd4f55 JS |
260 | itemBoxSizer12->Add(2, 1, 1, wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM, 5); |
261 | ||
d2d0adc7 JS |
262 | wxStaticLine* itemStaticLine24 = new wxStaticLine( itemPanel10, wxID_STATIC, wxDefaultPosition, wxDefaultSize, wxLI_VERTICAL ); |
263 | itemBoxSizer12->Add(itemStaticLine24, 0, wxGROW|wxALL, 5); | |
dadd4f55 JS |
264 | |
265 | itemBoxSizer12->Add(2, 1, 1, wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM, 5); | |
266 | ||
d2d0adc7 JS |
267 | wxBoxSizer* itemBoxSizer26 = new wxBoxSizer(wxVERTICAL); |
268 | itemBoxSizer12->Add(itemBoxSizer26, 0, wxGROW, 5); | |
269 | wxStaticText* itemStaticText27 = new wxStaticText( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_SYMBOLSTATIC, _("&Symbol:"), wxDefaultPosition, wxDefaultSize, 0 ); | |
69ce77e2 | 270 | itemBoxSizer26->Add(itemStaticText27, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP, 5); |
dadd4f55 | 271 | |
d2d0adc7 JS |
272 | wxBoxSizer* itemBoxSizer28 = new wxBoxSizer(wxHORIZONTAL); |
273 | itemBoxSizer26->Add(itemBoxSizer28, 0, wxGROW, 5); | |
6103234e | 274 | wxArrayString m_symbolCtrlStrings; |
603f702b | 275 | m_symbolCtrl = new wxComboBox( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_SYMBOLCTRL, wxEmptyString, wxDefaultPosition, wxSize(60, -1), m_symbolCtrlStrings, wxCB_DROPDOWN ); |
dadd4f55 | 276 | m_symbolCtrl->SetHelpText(_("The bullet character.")); |
6103234e | 277 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 278 | m_symbolCtrl->SetToolTip(_("The bullet character.")); |
d2d0adc7 | 279 | itemBoxSizer28->Add(m_symbolCtrl, 0, wxALIGN_CENTER_VERTICAL|wxALL|wxFIXED_MINSIZE, 5); |
dadd4f55 | 280 | |
cbfc8d9a | 281 | wxButton* itemButton30 = new wxButton( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_CHOOSE_SYMBOL, _("Ch&oose..."), wxDefaultPosition, wxDefaultSize, 0 ); |
d2d0adc7 | 282 | itemButton30->SetHelpText(_("Click to browse for a symbol.")); |
6103234e | 283 | if (wxRichTextListStylePage::ShowToolTips()) |
d2d0adc7 JS |
284 | itemButton30->SetToolTip(_("Click to browse for a symbol.")); |
285 | itemBoxSizer28->Add(itemButton30, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
dadd4f55 | 286 | |
d2d0adc7 | 287 | itemBoxSizer26->Add(5, 5, 0, wxALIGN_CENTER_HORIZONTAL, 5); |
dadd4f55 | 288 | |
d2d0adc7 | 289 | wxStaticText* itemStaticText32 = new wxStaticText( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_SYMBOLSTATIC, _("Symbol &font:"), wxDefaultPosition, wxDefaultSize, 0 ); |
69ce77e2 | 290 | itemBoxSizer26->Add(itemStaticText32, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP, 5); |
dadd4f55 | 291 | |
6103234e | 292 | wxArrayString m_symbolFontCtrlStrings; |
603f702b | 293 | m_symbolFontCtrl = new wxComboBox( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_SYMBOLFONTCTRL, wxEmptyString, wxDefaultPosition, wxDefaultSize, m_symbolFontCtrlStrings, wxCB_DROPDOWN ); |
6103234e | 294 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 295 | m_symbolFontCtrl->SetToolTip(_("Available fonts.")); |
d2d0adc7 | 296 | itemBoxSizer26->Add(m_symbolFontCtrl, 0, wxGROW|wxALL, 5); |
dadd4f55 | 297 | |
d2d0adc7 | 298 | itemBoxSizer26->Add(5, 5, 1, wxALIGN_CENTER_HORIZONTAL, 5); |
dadd4f55 | 299 | |
d2d0adc7 | 300 | wxStaticText* itemStaticText35 = new wxStaticText( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_NAMESTATIC, _("S&tandard bullet name:"), wxDefaultPosition, wxDefaultSize, 0 ); |
69ce77e2 | 301 | itemBoxSizer26->Add(itemStaticText35, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP, 5); |
dadd4f55 | 302 | |
6103234e | 303 | wxArrayString m_bulletNameCtrlStrings; |
603f702b | 304 | m_bulletNameCtrl = new wxComboBox( itemPanel10, ID_RICHTEXTLISTSTYLEPAGE_NAMECTRL, wxEmptyString, wxDefaultPosition, wxDefaultSize, m_bulletNameCtrlStrings, wxCB_DROPDOWN ); |
f089713f | 305 | m_bulletNameCtrl->SetHelpText(_("A standard bullet name.")); |
6103234e | 306 | if (wxRichTextListStylePage::ShowToolTips()) |
f089713f | 307 | m_bulletNameCtrl->SetToolTip(_("A standard bullet name.")); |
d2d0adc7 | 308 | itemBoxSizer26->Add(m_bulletNameCtrl, 0, wxGROW|wxALL, 5); |
dadd4f55 | 309 | |
d2d0adc7 | 310 | itemNotebook9->AddPage(itemPanel10, _("Bullet style")); |
dadd4f55 | 311 | |
d2d0adc7 JS |
312 | wxPanel* itemPanel37 = new wxPanel( itemNotebook9, ID_RICHTEXTLISTSTYLEPAGE_SPACING, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxTAB_TRAVERSAL ); |
313 | wxBoxSizer* itemBoxSizer38 = new wxBoxSizer(wxVERTICAL); | |
314 | itemPanel37->SetSizer(itemBoxSizer38); | |
dadd4f55 | 315 | |
d2d0adc7 JS |
316 | wxBoxSizer* itemBoxSizer39 = new wxBoxSizer(wxHORIZONTAL); |
317 | itemBoxSizer38->Add(itemBoxSizer39, 0, wxGROW, 5); | |
318 | wxBoxSizer* itemBoxSizer40 = new wxBoxSizer(wxVERTICAL); | |
319 | itemBoxSizer39->Add(itemBoxSizer40, 0, wxGROW, 5); | |
320 | wxStaticText* itemStaticText41 = new wxStaticText( itemPanel37, wxID_STATIC, _("&Alignment"), wxDefaultPosition, wxDefaultSize, 0 ); | |
69ce77e2 | 321 | itemBoxSizer40->Add(itemStaticText41, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP, 5); |
dadd4f55 | 322 | |
d2d0adc7 JS |
323 | wxBoxSizer* itemBoxSizer42 = new wxBoxSizer(wxHORIZONTAL); |
324 | itemBoxSizer40->Add(itemBoxSizer42, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); | |
325 | itemBoxSizer42->Add(5, 5, 0, wxALIGN_CENTER_VERTICAL, 5); | |
dadd4f55 | 326 | |
d2d0adc7 JS |
327 | wxBoxSizer* itemBoxSizer44 = new wxBoxSizer(wxVERTICAL); |
328 | itemBoxSizer42->Add(itemBoxSizer44, 0, wxALIGN_CENTER_VERTICAL|wxTOP, 5); | |
329 | m_alignmentLeft = new wxRadioButton( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_ALIGNLEFT, _("&Left"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP ); | |
dadd4f55 JS |
330 | m_alignmentLeft->SetValue(false); |
331 | m_alignmentLeft->SetHelpText(_("Left-align text.")); | |
6103234e | 332 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 333 | m_alignmentLeft->SetToolTip(_("Left-align text.")); |
d2d0adc7 | 334 | itemBoxSizer44->Add(m_alignmentLeft, 0, wxALIGN_LEFT|wxALL, 5); |
dadd4f55 | 335 | |
d2d0adc7 | 336 | m_alignmentRight = new wxRadioButton( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_ALIGNRIGHT, _("&Right"), wxDefaultPosition, wxDefaultSize, 0 ); |
dadd4f55 JS |
337 | m_alignmentRight->SetValue(false); |
338 | m_alignmentRight->SetHelpText(_("Right-align text.")); | |
6103234e | 339 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 340 | m_alignmentRight->SetToolTip(_("Right-align text.")); |
d2d0adc7 | 341 | itemBoxSizer44->Add(m_alignmentRight, 0, wxALIGN_LEFT|wxALL, 5); |
dadd4f55 | 342 | |
d2d0adc7 | 343 | m_alignmentJustified = new wxRadioButton( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_JUSTIFIED, _("&Justified"), wxDefaultPosition, wxDefaultSize, 0 ); |
dadd4f55 JS |
344 | m_alignmentJustified->SetValue(false); |
345 | m_alignmentJustified->SetHelpText(_("Justify text left and right.")); | |
6103234e | 346 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 347 | m_alignmentJustified->SetToolTip(_("Justify text left and right.")); |
d2d0adc7 | 348 | itemBoxSizer44->Add(m_alignmentJustified, 0, wxALIGN_LEFT|wxALL, 5); |
dadd4f55 | 349 | |
d2d0adc7 | 350 | m_alignmentCentred = new wxRadioButton( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_CENTERED, _("Cen&tred"), wxDefaultPosition, wxDefaultSize, 0 ); |
dadd4f55 JS |
351 | m_alignmentCentred->SetValue(false); |
352 | m_alignmentCentred->SetHelpText(_("Centre text.")); | |
6103234e | 353 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 354 | m_alignmentCentred->SetToolTip(_("Centre text.")); |
d2d0adc7 | 355 | itemBoxSizer44->Add(m_alignmentCentred, 0, wxALIGN_LEFT|wxALL, 5); |
dadd4f55 | 356 | |
d2d0adc7 | 357 | m_alignmentIndeterminate = new wxRadioButton( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_ALIGNINDETERMINATE, _("&Indeterminate"), wxDefaultPosition, wxDefaultSize, 0 ); |
dadd4f55 JS |
358 | m_alignmentIndeterminate->SetValue(false); |
359 | m_alignmentIndeterminate->SetHelpText(_("Use the current alignment setting.")); | |
6103234e | 360 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 361 | m_alignmentIndeterminate->SetToolTip(_("Use the current alignment setting.")); |
d2d0adc7 | 362 | itemBoxSizer44->Add(m_alignmentIndeterminate, 0, wxALIGN_LEFT|wxALL, 5); |
dadd4f55 | 363 | |
d2d0adc7 | 364 | itemBoxSizer39->Add(2, 1, 1, wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM, 5); |
dadd4f55 | 365 | |
d2d0adc7 JS |
366 | wxStaticLine* itemStaticLine51 = new wxStaticLine( itemPanel37, wxID_STATIC, wxDefaultPosition, wxDefaultSize, wxLI_VERTICAL ); |
367 | itemBoxSizer39->Add(itemStaticLine51, 0, wxGROW|wxLEFT|wxBOTTOM, 5); | |
dadd4f55 | 368 | |
d2d0adc7 | 369 | itemBoxSizer39->Add(2, 1, 1, wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM, 5); |
dadd4f55 | 370 | |
d2d0adc7 JS |
371 | wxBoxSizer* itemBoxSizer53 = new wxBoxSizer(wxVERTICAL); |
372 | itemBoxSizer39->Add(itemBoxSizer53, 0, wxGROW, 5); | |
373 | wxStaticText* itemStaticText54 = new wxStaticText( itemPanel37, wxID_STATIC, _("&Indentation (tenths of a mm)"), wxDefaultPosition, wxDefaultSize, 0 ); | |
69ce77e2 | 374 | itemBoxSizer53->Add(itemStaticText54, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP, 5); |
dadd4f55 | 375 | |
d2d0adc7 JS |
376 | wxBoxSizer* itemBoxSizer55 = new wxBoxSizer(wxHORIZONTAL); |
377 | itemBoxSizer53->Add(itemBoxSizer55, 0, wxALIGN_LEFT|wxALL, 5); | |
378 | itemBoxSizer55->Add(5, 5, 0, wxALIGN_CENTER_VERTICAL, 5); | |
dadd4f55 | 379 | |
706465df | 380 | wxFlexGridSizer* itemFlexGridSizer57 = new wxFlexGridSizer(0, 2, 0, 0); |
d2d0adc7 JS |
381 | itemBoxSizer55->Add(itemFlexGridSizer57, 0, wxALIGN_CENTER_VERTICAL, 5); |
382 | wxStaticText* itemStaticText58 = new wxStaticText( itemPanel37, wxID_STATIC, _("&Left:"), wxDefaultPosition, wxDefaultSize, 0 ); | |
69ce77e2 | 383 | itemFlexGridSizer57->Add(itemStaticText58, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxALL, 5); |
dadd4f55 | 384 | |
603f702b | 385 | m_indentLeft = new wxTextCtrl( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_INDENTLEFT, wxEmptyString, wxDefaultPosition, wxSize(50, -1), 0 ); |
dadd4f55 | 386 | m_indentLeft->SetHelpText(_("The left indent.")); |
6103234e | 387 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 388 | m_indentLeft->SetToolTip(_("The left indent.")); |
41d9dcbc | 389 | itemFlexGridSizer57->Add(m_indentLeft, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5); |
dadd4f55 | 390 | |
41d9dcbc JS |
391 | wxStaticText* itemStaticText60 = new wxStaticText( itemPanel37, wxID_STATIC, _("Left (&first line):"), wxDefaultPosition, wxDefaultSize, 0 ); |
392 | itemFlexGridSizer57->Add(itemStaticText60, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
dadd4f55 | 393 | |
603f702b | 394 | m_indentLeftFirst = new wxTextCtrl( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_INDENTFIRSTLINE, wxEmptyString, wxDefaultPosition, wxSize(50, -1), 0 ); |
dadd4f55 | 395 | m_indentLeftFirst->SetHelpText(_("The first line indent.")); |
6103234e | 396 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 397 | m_indentLeftFirst->SetToolTip(_("The first line indent.")); |
41d9dcbc | 398 | itemFlexGridSizer57->Add(m_indentLeftFirst, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5); |
dadd4f55 | 399 | |
41d9dcbc JS |
400 | wxStaticText* itemStaticText62 = new wxStaticText( itemPanel37, wxID_STATIC, _("&Right:"), wxDefaultPosition, wxDefaultSize, 0 ); |
401 | itemFlexGridSizer57->Add(itemStaticText62, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
dadd4f55 | 402 | |
603f702b | 403 | m_indentRight = new wxTextCtrl( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_INDENTRIGHT, wxEmptyString, wxDefaultPosition, wxSize(50, -1), 0 ); |
dadd4f55 | 404 | m_indentRight->SetHelpText(_("The right indent.")); |
6103234e | 405 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 406 | m_indentRight->SetToolTip(_("The right indent.")); |
41d9dcbc | 407 | itemFlexGridSizer57->Add(m_indentRight, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5); |
dadd4f55 | 408 | |
d2d0adc7 | 409 | itemBoxSizer39->Add(2, 1, 1, wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM, 5); |
dadd4f55 | 410 | |
41d9dcbc JS |
411 | wxStaticLine* itemStaticLine65 = new wxStaticLine( itemPanel37, wxID_STATIC, wxDefaultPosition, wxDefaultSize, wxLI_VERTICAL ); |
412 | itemBoxSizer39->Add(itemStaticLine65, 0, wxGROW|wxTOP|wxBOTTOM, 5); | |
dadd4f55 | 413 | |
d2d0adc7 | 414 | itemBoxSizer39->Add(2, 1, 1, wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM, 5); |
dadd4f55 | 415 | |
41d9dcbc JS |
416 | wxBoxSizer* itemBoxSizer67 = new wxBoxSizer(wxVERTICAL); |
417 | itemBoxSizer39->Add(itemBoxSizer67, 0, wxGROW, 5); | |
418 | wxStaticText* itemStaticText68 = new wxStaticText( itemPanel37, wxID_STATIC, _("&Spacing (tenths of a mm)"), wxDefaultPosition, wxDefaultSize, 0 ); | |
419 | itemBoxSizer67->Add(itemStaticText68, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP, 5); | |
dadd4f55 | 420 | |
41d9dcbc JS |
421 | wxBoxSizer* itemBoxSizer69 = new wxBoxSizer(wxHORIZONTAL); |
422 | itemBoxSizer67->Add(itemBoxSizer69, 0, wxALIGN_LEFT|wxALL, 5); | |
423 | itemBoxSizer69->Add(5, 5, 0, wxALIGN_CENTER_VERTICAL, 5); | |
dadd4f55 | 424 | |
41d9dcbc JS |
425 | wxFlexGridSizer* itemFlexGridSizer71 = new wxFlexGridSizer(0, 2, 0, 0); |
426 | itemBoxSizer69->Add(itemFlexGridSizer71, 0, wxALIGN_CENTER_VERTICAL, 5); | |
427 | wxStaticText* itemStaticText72 = new wxStaticText( itemPanel37, wxID_STATIC, _("Before a paragraph:"), wxDefaultPosition, wxDefaultSize, 0 ); | |
428 | itemFlexGridSizer71->Add(itemStaticText72, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
dadd4f55 | 429 | |
603f702b | 430 | m_spacingBefore = new wxTextCtrl( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_SPACINGBEFORE, wxEmptyString, wxDefaultPosition, wxSize(50, -1), 0 ); |
dadd4f55 | 431 | m_spacingBefore->SetHelpText(_("The spacing before the paragraph.")); |
6103234e | 432 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 433 | m_spacingBefore->SetToolTip(_("The spacing before the paragraph.")); |
41d9dcbc | 434 | itemFlexGridSizer71->Add(m_spacingBefore, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5); |
dadd4f55 | 435 | |
41d9dcbc JS |
436 | wxStaticText* itemStaticText74 = new wxStaticText( itemPanel37, wxID_STATIC, _("After a paragraph:"), wxDefaultPosition, wxDefaultSize, 0 ); |
437 | itemFlexGridSizer71->Add(itemStaticText74, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
dadd4f55 | 438 | |
603f702b | 439 | m_spacingAfter = new wxTextCtrl( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_SPACINGAFTER, wxEmptyString, wxDefaultPosition, wxSize(50, -1), 0 ); |
dadd4f55 | 440 | m_spacingAfter->SetHelpText(_("The spacing after the paragraph.")); |
6103234e | 441 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 442 | m_spacingAfter->SetToolTip(_("The spacing after the paragraph.")); |
41d9dcbc | 443 | itemFlexGridSizer71->Add(m_spacingAfter, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5); |
dadd4f55 | 444 | |
41d9dcbc JS |
445 | wxStaticText* itemStaticText76 = new wxStaticText( itemPanel37, wxID_STATIC, _("Line spacing:"), wxDefaultPosition, wxDefaultSize, 0 ); |
446 | itemFlexGridSizer71->Add(itemStaticText76, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxALL, 5); | |
dadd4f55 | 447 | |
6103234e | 448 | wxArrayString m_spacingLineStrings; |
41d9dcbc | 449 | m_spacingLineStrings.Add(_("(none)")); |
6103234e | 450 | m_spacingLineStrings.Add(_("Single")); |
41d9dcbc JS |
451 | m_spacingLineStrings.Add(_("1.1")); |
452 | m_spacingLineStrings.Add(_("1.2")); | |
453 | m_spacingLineStrings.Add(_("1.3")); | |
454 | m_spacingLineStrings.Add(_("1.4")); | |
6103234e | 455 | m_spacingLineStrings.Add(_("1.5")); |
41d9dcbc JS |
456 | m_spacingLineStrings.Add(_("1.6")); |
457 | m_spacingLineStrings.Add(_("1.7")); | |
458 | m_spacingLineStrings.Add(_("1.8")); | |
459 | m_spacingLineStrings.Add(_("1.9")); | |
6103234e | 460 | m_spacingLineStrings.Add(_("2")); |
41d9dcbc JS |
461 | m_spacingLine = new wxComboBox( itemPanel37, ID_RICHTEXTLISTSTYLEPAGE_LINESPACING, _("(none)"), wxDefaultPosition, wxSize(85, -1), m_spacingLineStrings, wxCB_READONLY ); |
462 | m_spacingLine->SetStringSelection(_("(none)")); | |
dadd4f55 | 463 | m_spacingLine->SetHelpText(_("The line spacing.")); |
6103234e | 464 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 | 465 | m_spacingLine->SetToolTip(_("The line spacing.")); |
41d9dcbc | 466 | itemFlexGridSizer71->Add(m_spacingLine, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5); |
dadd4f55 | 467 | |
d2d0adc7 | 468 | itemNotebook9->AddPage(itemPanel37, _("Spacing")); |
dadd4f55 | 469 | |
d2d0adc7 | 470 | itemBoxSizer3->Add(itemNotebook9, 0, wxGROW|wxALL, 5); |
dadd4f55 | 471 | |
706465df | 472 | m_previewCtrl = new wxRichTextCtrl( itemRichTextDialogPage1, ID_RICHTEXTLISTSTYLEPAGE_RICHTEXTCTRL, wxEmptyString, wxDefaultPosition, wxSize(350, 140), wxBORDER_THEME|wxVSCROLL|wxTE_READONLY ); |
dadd4f55 | 473 | m_previewCtrl->SetHelpText(_("Shows a preview of the bullet settings.")); |
6103234e | 474 | if (wxRichTextListStylePage::ShowToolTips()) |
dadd4f55 JS |
475 | m_previewCtrl->SetToolTip(_("Shows a preview of the bullet settings.")); |
476 | itemBoxSizer3->Add(m_previewCtrl, 0, wxGROW|wxALL, 5); | |
477 | ||
478 | ////@end wxRichTextListStylePage content construction | |
479 | ||
d2d0adc7 | 480 | m_dontUpdate = true; |
69ce77e2 | 481 | |
dadd4f55 JS |
482 | m_styleListBox->Append(_("(None)")); |
483 | m_styleListBox->Append(_("Arabic")); | |
484 | m_styleListBox->Append(_("Upper case letters")); | |
485 | m_styleListBox->Append(_("Lower case letters")); | |
486 | m_styleListBox->Append(_("Upper case roman numerals")); | |
487 | m_styleListBox->Append(_("Lower case roman numerals")); | |
d2d0adc7 | 488 | m_styleListBox->Append(_("Numbered outline")); |
dadd4f55 JS |
489 | m_styleListBox->Append(_("Symbol")); |
490 | m_styleListBox->Append(_("Bitmap")); | |
f089713f | 491 | m_styleListBox->Append(_("Standard")); |
dadd4f55 JS |
492 | |
493 | m_symbolCtrl->Append(_("*")); | |
494 | m_symbolCtrl->Append(_("-")); | |
495 | m_symbolCtrl->Append(_(">")); | |
496 | m_symbolCtrl->Append(_("+")); | |
497 | m_symbolCtrl->Append(_("~")); | |
69ce77e2 | 498 | |
d2d0adc7 JS |
499 | wxArrayString standardBulletNames; |
500 | if (wxRichTextBuffer::GetRenderer()) | |
501 | wxRichTextBuffer::GetRenderer()->EnumerateStandardBulletNames(standardBulletNames); | |
dadd4f55 | 502 | |
d2d0adc7 | 503 | m_bulletNameCtrl->Append(standardBulletNames); |
dadd4f55 JS |
504 | wxArrayString facenames = wxRichTextCtrl::GetAvailableFontNames(); |
505 | facenames.Sort(); | |
506 | ||
507 | m_symbolFontCtrl->Append(facenames); | |
d2d0adc7 JS |
508 | |
509 | m_levelCtrl->SetValue(m_currentLevel); | |
510 | ||
511 | m_dontUpdate = false; | |
dadd4f55 JS |
512 | } |
513 | ||
514 | /// Updates the font preview | |
515 | void wxRichTextListStylePage::UpdatePreview() | |
516 | { | |
517 | static const wxChar* s_para1 = wxT("Lorem ipsum dolor sit amet, consectetuer adipiscing elit. \ | |
2a94806c | 518 | Nullam ante sapien, vestibulum nonummy, pulvinar sed, luctus ut, lacus.\n"); |
dadd4f55 | 519 | |
2a94806c | 520 | static const wxChar* s_para2 = wxT("Duis pharetra consequat dui. Nullam vitae justo id mauris lobortis interdum.\n"); |
dadd4f55 | 521 | |
2a94806c | 522 | static const wxChar* s_para3 = wxT("Integer convallis dolor at augue \ |
dadd4f55 JS |
523 | iaculis malesuada. Donec bibendum ipsum ut ante porta fringilla.\n"); |
524 | ||
525 | wxRichTextListStyleDefinition* def = wxDynamicCast(wxRichTextFormattingDialog::GetDialogStyleDefinition(this), | |
526 | wxRichTextListStyleDefinition); | |
69ce77e2 | 527 | |
336d8ae9 | 528 | wxRichTextStyleSheet* styleSheet = wxRichTextFormattingDialog::GetDialog(this)->GetStyleSheet(); |
2a94806c | 529 | |
24777478 | 530 | wxRichTextAttr attr((const wxRichTextAttr &)(styleSheet ? def->GetStyle() : def->GetStyleMergedWithBase(styleSheet))); |
2a94806c | 531 | |
dadd4f55 JS |
532 | attr.SetFlags(attr.GetFlags() & |
533 | (wxTEXT_ATTR_ALIGNMENT|wxTEXT_ATTR_LEFT_INDENT|wxTEXT_ATTR_RIGHT_INDENT|wxTEXT_ATTR_PARA_SPACING_BEFORE|wxTEXT_ATTR_PARA_SPACING_AFTER| | |
534 | wxTEXT_ATTR_LINE_SPACING| | |
d2d0adc7 | 535 | wxTEXT_ATTR_BULLET_STYLE|wxTEXT_ATTR_BULLET_NUMBER|wxTEXT_ATTR_BULLET_TEXT)); |
dadd4f55 JS |
536 | |
537 | wxFont font(m_previewCtrl->GetFont()); | |
538 | font.SetPointSize(9); | |
539 | m_previewCtrl->SetFont(font); | |
540 | ||
24777478 | 541 | wxRichTextAttr normalParaAttr; |
dadd4f55 JS |
542 | normalParaAttr.SetFont(font); |
543 | normalParaAttr.SetTextColour(wxColour(wxT("LIGHT GREY"))); | |
544 | ||
545 | m_previewCtrl->Freeze(); | |
546 | m_previewCtrl->Clear(); | |
547 | ||
548 | m_previewCtrl->BeginStyle(normalParaAttr); | |
549 | m_previewCtrl->WriteText(s_para1); | |
550 | m_previewCtrl->EndStyle(); | |
41a85215 | 551 | |
dadd4f55 | 552 | m_previewCtrl->BeginStyle(attr); |
d2d0adc7 | 553 | long listStart = m_previewCtrl->GetInsertionPoint() + 1; |
41a85215 | 554 | |
dadd4f55 JS |
555 | int i; |
556 | for (i = 0; i < 10; i++) | |
557 | { | |
24777478 | 558 | wxRichTextAttr levelAttr = * def->GetLevelAttributes(i); |
dadd4f55 JS |
559 | levelAttr.SetBulletNumber(1); |
560 | m_previewCtrl->BeginStyle(levelAttr); | |
2a94806c | 561 | m_previewCtrl->WriteText(wxString::Format(wxT("List level %d. "), i+1) + s_para2); |
dadd4f55 JS |
562 | m_previewCtrl->EndStyle(); |
563 | } | |
564 | m_previewCtrl->EndStyle(); | |
d2d0adc7 | 565 | long listEnd = m_previewCtrl->GetInsertionPoint(); |
dadd4f55 JS |
566 | |
567 | m_previewCtrl->BeginStyle(normalParaAttr); | |
568 | m_previewCtrl->WriteText(s_para3); | |
569 | m_previewCtrl->EndStyle(); | |
570 | ||
d2d0adc7 JS |
571 | m_previewCtrl->NumberList(wxRichTextRange(listStart, listEnd), def); |
572 | ||
dadd4f55 JS |
573 | m_previewCtrl->Thaw(); |
574 | } | |
575 | ||
576 | /// Transfer data from/to window | |
577 | bool wxRichTextListStylePage::TransferDataFromWindow() | |
578 | { | |
579 | wxPanel::TransferDataFromWindow(); | |
580 | ||
581 | m_currentLevel = m_levelCtrl->GetValue(); | |
582 | ||
24777478 | 583 | wxRichTextAttr* attr = GetAttributesForSelection(); |
dadd4f55 JS |
584 | |
585 | if (m_alignmentLeft->GetValue()) | |
586 | attr->SetAlignment(wxTEXT_ALIGNMENT_LEFT); | |
587 | else if (m_alignmentCentred->GetValue()) | |
588 | attr->SetAlignment(wxTEXT_ALIGNMENT_CENTRE); | |
589 | else if (m_alignmentRight->GetValue()) | |
590 | attr->SetAlignment(wxTEXT_ALIGNMENT_RIGHT); | |
591 | else if (m_alignmentJustified->GetValue()) | |
592 | attr->SetAlignment(wxTEXT_ALIGNMENT_JUSTIFIED); | |
593 | else | |
594 | { | |
595 | attr->SetAlignment(wxTEXT_ALIGNMENT_DEFAULT); | |
596 | attr->SetFlags(attr->GetFlags() & (~wxTEXT_ATTR_ALIGNMENT)); | |
597 | } | |
598 | ||
599 | wxString leftIndent(m_indentLeft->GetValue()); | |
600 | wxString leftFirstIndent(m_indentLeftFirst->GetValue()); | |
601 | if (!leftIndent.empty()) | |
602 | { | |
603 | int visualLeftIndent = wxAtoi(leftIndent); | |
604 | int visualLeftFirstIndent = wxAtoi(leftFirstIndent); | |
605 | int actualLeftIndent = visualLeftFirstIndent; | |
606 | int actualLeftSubIndent = visualLeftIndent - visualLeftFirstIndent; | |
607 | ||
608 | attr->SetLeftIndent(actualLeftIndent, actualLeftSubIndent); | |
609 | } | |
610 | else | |
611 | attr->SetFlags(attr->GetFlags() & (~wxTEXT_ATTR_LEFT_INDENT)); | |
612 | ||
613 | wxString rightIndent(m_indentRight->GetValue()); | |
614 | if (!rightIndent.empty()) | |
615 | attr->SetRightIndent(wxAtoi(rightIndent)); | |
616 | else | |
617 | attr->SetFlags(attr->GetFlags() & (~wxTEXT_ATTR_RIGHT_INDENT)); | |
618 | ||
619 | wxString spacingAfter(m_spacingAfter->GetValue()); | |
620 | if (!spacingAfter.empty()) | |
621 | attr->SetParagraphSpacingAfter(wxAtoi(spacingAfter)); | |
622 | else | |
623 | attr->SetFlags(attr->GetFlags() & (~wxTEXT_ATTR_PARA_SPACING_AFTER)); | |
624 | ||
625 | wxString spacingBefore(m_spacingBefore->GetValue()); | |
626 | if (!spacingBefore.empty()) | |
627 | attr->SetParagraphSpacingBefore(wxAtoi(spacingBefore)); | |
628 | else | |
629 | attr->SetFlags(attr->GetFlags() & (~wxTEXT_ATTR_PARA_SPACING_BEFORE)); | |
630 | ||
41d9dcbc | 631 | int spacingIndex = m_spacingLine->GetSelection() - 1; |
dadd4f55 | 632 | int lineSpacing = 0; |
41d9dcbc JS |
633 | if (spacingIndex > -1) |
634 | lineSpacing = 10 + spacingIndex; | |
dadd4f55 JS |
635 | |
636 | if (lineSpacing == 0) | |
637 | attr->SetFlags(attr->GetFlags() & (~wxTEXT_ATTR_LINE_SPACING)); | |
638 | else | |
639 | attr->SetLineSpacing(lineSpacing); | |
640 | ||
641 | /// BULLETS | |
476a3029 | 642 | // if (m_hasBulletStyle) |
dadd4f55 JS |
643 | { |
644 | long bulletStyle = 0; | |
645 | ||
646 | int index = m_styleListBox->GetSelection(); | |
d2d0adc7 | 647 | if (index == wxRICHTEXT_BULLETINDEX_ARABIC) |
dadd4f55 | 648 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_ARABIC; |
d2d0adc7 JS |
649 | |
650 | else if (index == wxRICHTEXT_BULLETINDEX_UPPER_CASE) | |
dadd4f55 | 651 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER; |
d2d0adc7 JS |
652 | |
653 | else if (index == wxRICHTEXT_BULLETINDEX_LOWER_CASE) | |
dadd4f55 | 654 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER; |
d2d0adc7 JS |
655 | |
656 | else if (index == wxRICHTEXT_BULLETINDEX_UPPER_CASE_ROMAN) | |
dadd4f55 | 657 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER; |
d2d0adc7 JS |
658 | |
659 | else if (index == wxRICHTEXT_BULLETINDEX_LOWER_CASE_ROMAN) | |
dadd4f55 | 660 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER; |
d2d0adc7 JS |
661 | |
662 | else if (index == wxRICHTEXT_BULLETINDEX_OUTLINE) | |
663 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_OUTLINE; | |
664 | ||
665 | else if (index == wxRICHTEXT_BULLETINDEX_SYMBOL) | |
dadd4f55 | 666 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_SYMBOL; |
d2d0adc7 JS |
667 | |
668 | else if (index == wxRICHTEXT_BULLETINDEX_BITMAP) | |
dadd4f55 | 669 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_BITMAP; |
d2d0adc7 JS |
670 | |
671 | else if (index == wxRICHTEXT_BULLETINDEX_STANDARD) | |
f089713f JS |
672 | { |
673 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_STANDARD; | |
674 | attr->SetBulletName(m_bulletNameCtrl->GetValue()); | |
675 | } | |
dadd4f55 JS |
676 | |
677 | if (m_parenthesesCtrl->GetValue()) | |
678 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_PARENTHESES; | |
d2d0adc7 JS |
679 | if (m_rightParenthesisCtrl->GetValue()) |
680 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS; | |
dadd4f55 JS |
681 | if (m_periodCtrl->GetValue()) |
682 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_PERIOD; | |
683 | ||
d2d0adc7 JS |
684 | if (m_bulletAlignmentCtrl->GetSelection() == 1) |
685 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE; | |
686 | else if (m_bulletAlignmentCtrl->GetSelection() == 2) | |
687 | bulletStyle |= wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT; | |
69ce77e2 | 688 | // Left is implied |
d2d0adc7 | 689 | |
dadd4f55 JS |
690 | attr->SetBulletStyle(bulletStyle); |
691 | } | |
692 | ||
693 | // if (m_hasBulletSymbol) | |
694 | { | |
d2d0adc7 | 695 | attr->SetBulletText(m_symbolCtrl->GetValue()); |
dadd4f55 JS |
696 | attr->SetBulletFont(m_symbolFontCtrl->GetValue()); |
697 | } | |
41a85215 | 698 | |
dadd4f55 JS |
699 | return true; |
700 | } | |
701 | ||
702 | bool wxRichTextListStylePage::TransferDataToWindow() | |
703 | { | |
704 | DoTransferDataToWindow(); | |
705 | UpdatePreview(); | |
41a85215 | 706 | |
dadd4f55 JS |
707 | return true; |
708 | } | |
709 | ||
710 | /// Just transfer to the window | |
711 | void wxRichTextListStylePage::DoTransferDataToWindow() | |
712 | { | |
713 | m_dontUpdate = true; | |
714 | ||
715 | wxPanel::TransferDataToWindow(); | |
41a85215 | 716 | |
24777478 | 717 | wxRichTextAttr* attr = GetAttributesForSelection(); |
dadd4f55 JS |
718 | |
719 | if (attr->HasAlignment()) | |
720 | { | |
721 | if (attr->GetAlignment() == wxTEXT_ALIGNMENT_LEFT) | |
722 | m_alignmentLeft->SetValue(true); | |
723 | else if (attr->GetAlignment() == wxTEXT_ALIGNMENT_RIGHT) | |
724 | m_alignmentRight->SetValue(true); | |
725 | else if (attr->GetAlignment() == wxTEXT_ALIGNMENT_CENTRE) | |
726 | m_alignmentCentred->SetValue(true); | |
727 | else if (attr->GetAlignment() == wxTEXT_ALIGNMENT_JUSTIFIED) | |
728 | m_alignmentJustified->SetValue(true); | |
729 | else | |
730 | m_alignmentIndeterminate->SetValue(true); | |
731 | } | |
732 | else | |
733 | m_alignmentIndeterminate->SetValue(true); | |
734 | ||
735 | if (attr->HasLeftIndent()) | |
736 | { | |
737 | wxString leftIndent(wxString::Format(wxT("%ld"), attr->GetLeftIndent() + attr->GetLeftSubIndent())); | |
738 | wxString leftFirstIndent(wxString::Format(wxT("%ld"), attr->GetLeftIndent())); | |
739 | ||
740 | m_indentLeft->SetValue(leftIndent); | |
741 | m_indentLeftFirst->SetValue(leftFirstIndent); | |
742 | } | |
743 | else | |
744 | { | |
745 | m_indentLeft->SetValue(wxEmptyString); | |
746 | m_indentLeftFirst->SetValue(wxEmptyString); | |
747 | } | |
748 | ||
749 | if (attr->HasRightIndent()) | |
750 | { | |
751 | wxString rightIndent(wxString::Format(wxT("%ld"), attr->GetRightIndent())); | |
752 | ||
753 | m_indentRight->SetValue(rightIndent); | |
754 | } | |
755 | else | |
756 | m_indentRight->SetValue(wxEmptyString); | |
757 | ||
758 | if (attr->HasParagraphSpacingAfter()) | |
759 | { | |
760 | wxString spacingAfter(wxString::Format(wxT("%d"), attr->GetParagraphSpacingAfter())); | |
761 | ||
762 | m_spacingAfter->SetValue(spacingAfter); | |
763 | } | |
764 | else | |
765 | m_spacingAfter->SetValue(wxEmptyString); | |
766 | ||
767 | if (attr->HasParagraphSpacingBefore()) | |
768 | { | |
769 | wxString spacingBefore(wxString::Format(wxT("%d"), attr->GetParagraphSpacingBefore())); | |
770 | ||
771 | m_spacingBefore->SetValue(spacingBefore); | |
772 | } | |
773 | else | |
774 | m_spacingBefore->SetValue(wxEmptyString); | |
775 | ||
776 | if (attr->HasLineSpacing()) | |
777 | { | |
778 | int index = 0; | |
779 | ||
780 | int lineSpacing = attr->GetLineSpacing(); | |
41d9dcbc JS |
781 | if (lineSpacing >= 10 && lineSpacing <= 20) |
782 | index = (lineSpacing - 10) + 1; | |
dadd4f55 | 783 | else |
41d9dcbc | 784 | index = 0; |
dadd4f55 JS |
785 | |
786 | m_spacingLine->SetSelection(index); | |
787 | } | |
788 | else | |
41d9dcbc | 789 | m_spacingLine->SetSelection(0); |
dadd4f55 JS |
790 | |
791 | /// BULLETS | |
792 | if (attr->HasBulletStyle()) | |
793 | { | |
d2d0adc7 | 794 | int index = 0; |
dadd4f55 | 795 | if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ARABIC) |
d2d0adc7 JS |
796 | index = wxRICHTEXT_BULLETINDEX_ARABIC; |
797 | ||
dadd4f55 | 798 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER) |
d2d0adc7 JS |
799 | index = wxRICHTEXT_BULLETINDEX_UPPER_CASE; |
800 | ||
dadd4f55 | 801 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER) |
d2d0adc7 JS |
802 | index = wxRICHTEXT_BULLETINDEX_LOWER_CASE; |
803 | ||
dadd4f55 | 804 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER) |
d2d0adc7 JS |
805 | index = wxRICHTEXT_BULLETINDEX_UPPER_CASE_ROMAN; |
806 | ||
dadd4f55 | 807 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER) |
d2d0adc7 JS |
808 | index = wxRICHTEXT_BULLETINDEX_LOWER_CASE_ROMAN; |
809 | ||
810 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_OUTLINE) | |
811 | index = wxRICHTEXT_BULLETINDEX_OUTLINE; | |
812 | ||
dadd4f55 | 813 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_SYMBOL) |
d2d0adc7 JS |
814 | index = wxRICHTEXT_BULLETINDEX_SYMBOL; |
815 | ||
dadd4f55 | 816 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_BITMAP) |
d2d0adc7 JS |
817 | index = wxRICHTEXT_BULLETINDEX_BITMAP; |
818 | ||
f089713f | 819 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_STANDARD) |
d2d0adc7 JS |
820 | index = wxRICHTEXT_BULLETINDEX_STANDARD; |
821 | ||
dadd4f55 JS |
822 | m_styleListBox->SetSelection(index); |
823 | ||
824 | if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PARENTHESES) | |
825 | m_parenthesesCtrl->SetValue(true); | |
826 | else | |
827 | m_parenthesesCtrl->SetValue(false); | |
828 | ||
d2d0adc7 JS |
829 | if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS) |
830 | m_rightParenthesisCtrl->SetValue(true); | |
831 | else | |
832 | m_rightParenthesisCtrl->SetValue(false); | |
833 | ||
dadd4f55 JS |
834 | if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_PERIOD) |
835 | m_periodCtrl->SetValue(true); | |
836 | else | |
837 | m_periodCtrl->SetValue(false); | |
d2d0adc7 JS |
838 | |
839 | if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE) | |
840 | m_bulletAlignmentCtrl->SetSelection(1); | |
841 | else if (attr->GetBulletStyle() & wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT) | |
842 | m_bulletAlignmentCtrl->SetSelection(2); | |
843 | else | |
844 | m_bulletAlignmentCtrl->SetSelection(0); | |
dadd4f55 JS |
845 | } |
846 | else | |
d2d0adc7 | 847 | { |
dadd4f55 | 848 | m_styleListBox->SetSelection(-1); |
d2d0adc7 JS |
849 | m_bulletAlignmentCtrl->SetSelection(-1); |
850 | } | |
dadd4f55 | 851 | |
d2d0adc7 | 852 | if (attr->HasBulletText()) |
dadd4f55 | 853 | { |
d2d0adc7 | 854 | m_symbolCtrl->SetValue(attr->GetBulletText()); |
dadd4f55 JS |
855 | m_symbolFontCtrl->SetValue(attr->GetBulletFont()); |
856 | } | |
857 | else | |
858 | m_symbolCtrl->SetValue(wxEmptyString); | |
859 | ||
f089713f JS |
860 | if (attr->HasBulletName()) |
861 | m_bulletNameCtrl->SetValue(attr->GetBulletName()); | |
862 | else | |
863 | m_bulletNameCtrl->SetValue(wxEmptyString); | |
864 | ||
dadd4f55 JS |
865 | m_dontUpdate = false; |
866 | } | |
867 | ||
868 | /// Get attributes for selected level | |
24777478 | 869 | wxRichTextAttr* wxRichTextListStylePage::GetAttributesForSelection() |
dadd4f55 JS |
870 | { |
871 | wxRichTextListStyleDefinition* def = wxDynamicCast(wxRichTextFormattingDialog::GetDialogStyleDefinition(this), | |
872 | wxRichTextListStyleDefinition); | |
41a85215 | 873 | |
dadd4f55 | 874 | int value = m_levelCtrl->GetValue(); |
41a85215 | 875 | |
dadd4f55 JS |
876 | if (def) |
877 | return def->GetLevelAttributes(value-1); | |
878 | else | |
879 | return NULL; | |
880 | } | |
881 | ||
882 | /// Just transfer from the window and update the preview | |
883 | void wxRichTextListStylePage::TransferAndPreview() | |
884 | { | |
885 | if (!m_dontUpdate) | |
886 | { | |
887 | TransferDataFromWindow(); | |
888 | UpdatePreview(); | |
889 | } | |
890 | } | |
891 | ||
892 | ||
893 | /*! | |
894 | * wxEVT_COMMAND_SPINCTRL_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL | |
895 | */ | |
896 | ||
897 | void wxRichTextListStylePage::OnLevelUpdated( wxSpinEvent& WXUNUSED(event) ) | |
898 | { | |
899 | if (!m_dontUpdate) | |
900 | { | |
901 | m_currentLevel = m_levelCtrl->GetValue(); | |
902 | TransferDataToWindow(); | |
903 | } | |
904 | } | |
905 | ||
906 | /*! | |
907 | * wxEVT_SCROLL_LINEUP event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL | |
908 | */ | |
909 | ||
d33700db | 910 | void wxRichTextListStylePage::OnLevelUp( wxSpinEvent& event ) |
dadd4f55 JS |
911 | { |
912 | if (!m_dontUpdate) | |
913 | { | |
d33700db | 914 | m_currentLevel = event.GetPosition(); |
dadd4f55 JS |
915 | TransferDataToWindow(); |
916 | } | |
917 | } | |
918 | ||
919 | /*! | |
920 | * wxEVT_SCROLL_LINEDOWN event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL | |
921 | */ | |
922 | ||
d33700db | 923 | void wxRichTextListStylePage::OnLevelDown( wxSpinEvent& event ) |
dadd4f55 JS |
924 | { |
925 | if (!m_dontUpdate) | |
926 | { | |
d33700db | 927 | m_currentLevel = event.GetPosition(); |
dadd4f55 JS |
928 | TransferDataToWindow(); |
929 | } | |
930 | } | |
931 | ||
932 | /*! | |
933 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL | |
934 | */ | |
935 | ||
f089713f | 936 | void wxRichTextListStylePage::OnLevelTextUpdated( wxCommandEvent& WXUNUSED(event) ) |
dadd4f55 | 937 | { |
d33700db JS |
938 | // Can cause problems |
939 | #if 0 | |
dadd4f55 JS |
940 | if (!m_dontUpdate) |
941 | { | |
d33700db | 942 | m_currentLevel = event.GetInt(); |
dadd4f55 JS |
943 | TransferDataToWindow(); |
944 | } | |
d33700db | 945 | #endif |
dadd4f55 JS |
946 | } |
947 | ||
948 | /*! | |
949 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL | |
950 | */ | |
951 | ||
952 | void wxRichTextListStylePage::OnLevelUIUpdate( wxUpdateUIEvent& event ) | |
953 | { | |
954 | ////@begin wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL in wxRichTextListStylePage. | |
955 | // Before editing this code, remove the block markers. | |
956 | event.Skip(); | |
41a85215 | 957 | ////@end wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_LEVEL in wxRichTextListStylePage. |
dadd4f55 JS |
958 | } |
959 | ||
960 | /*! | |
961 | * wxEVT_COMMAND_LISTBOX_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_STYLELISTBOX | |
962 | */ | |
963 | ||
964 | void wxRichTextListStylePage::OnStylelistboxSelected( wxCommandEvent& WXUNUSED(event) ) | |
965 | { | |
966 | TransferAndPreview(); | |
967 | } | |
968 | ||
969 | /*! | |
970 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_SYMBOLSTATIC | |
971 | */ | |
972 | ||
973 | void wxRichTextListStylePage::OnSymbolstaticUpdate( wxUpdateUIEvent& event ) | |
974 | { | |
975 | OnSymbolUpdate(event); | |
976 | } | |
977 | ||
978 | /*! | |
979 | * wxEVT_COMMAND_COMBOBOX_SELECTED event handler for ID_RICHTEXTBULLETSPAGE_SYMBOLCTRL | |
980 | */ | |
981 | ||
982 | void wxRichTextListStylePage::OnSymbolctrlSelected( wxCommandEvent& WXUNUSED(event) ) | |
983 | { | |
984 | TransferAndPreview(); | |
985 | } | |
986 | ||
987 | /*! | |
988 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTBULLETSPAGE_SYMBOLCTRL | |
989 | */ | |
990 | ||
991 | void wxRichTextListStylePage::OnSymbolctrlUpdated( wxCommandEvent& WXUNUSED(event) ) | |
992 | { | |
993 | TransferAndPreview(); | |
994 | } | |
995 | ||
996 | /*! | |
997 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTBULLETSPAGE_SYMBOLCTRL | |
998 | */ | |
999 | ||
1000 | void wxRichTextListStylePage::OnSymbolctrlUIUpdate( wxUpdateUIEvent& event ) | |
1001 | { | |
1002 | OnSymbolUpdate(event); | |
1003 | } | |
1004 | ||
1005 | /*! | |
1006 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTBULLETSPAGE_CHOOSE_SYMBOL | |
1007 | */ | |
1008 | ||
1009 | void wxRichTextListStylePage::OnChooseSymbolClick( wxCommandEvent& WXUNUSED(event) ) | |
1010 | { | |
1011 | int sel = m_styleListBox->GetSelection(); | |
d2d0adc7 | 1012 | if (sel == wxRICHTEXT_BULLETINDEX_SYMBOL) |
dadd4f55 JS |
1013 | { |
1014 | wxString symbol = m_symbolCtrl->GetValue(); | |
1015 | wxString fontName = m_symbolFontCtrl->GetValue(); | |
1016 | wxSymbolPickerDialog dlg(symbol, fontName, fontName, this); | |
1017 | ||
1018 | if (dlg.ShowModal() == wxID_OK) | |
1019 | { | |
1020 | m_dontUpdate = true; | |
1021 | ||
1022 | m_symbolCtrl->SetValue(dlg.GetSymbol()); | |
1023 | m_symbolFontCtrl->SetValue(dlg.GetFontName()); | |
1024 | ||
1025 | TransferAndPreview(); | |
1026 | ||
1027 | m_dontUpdate = false; | |
1028 | } | |
1029 | } | |
1030 | } | |
1031 | ||
1032 | /*! | |
1033 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTBULLETSPAGE_CHOOSE_SYMBOL | |
1034 | */ | |
1035 | ||
1036 | void wxRichTextListStylePage::OnChooseSymbolUpdate( wxUpdateUIEvent& event ) | |
1037 | { | |
1038 | OnSymbolUpdate(event); | |
1039 | } | |
1040 | ||
1041 | /*! | |
1042 | * wxEVT_COMMAND_COMBOBOX_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_SYMBOLFONTCTRL | |
1043 | */ | |
1044 | ||
1045 | void wxRichTextListStylePage::OnSymbolfontctrlSelected( wxCommandEvent& WXUNUSED(event) ) | |
1046 | { | |
1047 | TransferAndPreview(); | |
1048 | } | |
1049 | ||
1050 | /*! | |
1051 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_SYMBOLFONTCTRL | |
1052 | */ | |
1053 | ||
1054 | void wxRichTextListStylePage::OnSymbolfontctrlUpdated( wxCommandEvent& WXUNUSED(event) ) | |
1055 | { | |
1056 | TransferAndPreview(); | |
1057 | } | |
1058 | ||
1059 | /*! | |
1060 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_SYMBOLFONTCTRL | |
1061 | */ | |
1062 | ||
1063 | void wxRichTextListStylePage::OnSymbolfontctrlUIUpdate( wxUpdateUIEvent& event ) | |
1064 | { | |
1065 | OnSymbolUpdate(event); | |
1066 | } | |
1067 | ||
1068 | /*! | |
1069 | * wxEVT_COMMAND_CHECKBOX_CLICKED event handler for ID_RICHTEXTLISTSTYLEPAGE__PARENTHESESCTRL | |
1070 | */ | |
1071 | ||
1072 | void wxRichTextListStylePage::OnParenthesesctrlClick( wxCommandEvent& WXUNUSED(event) ) | |
1073 | { | |
1074 | TransferAndPreview(); | |
1075 | } | |
1076 | ||
1077 | /*! | |
1078 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE__PARENTHESESCTRL | |
1079 | */ | |
1080 | ||
1081 | void wxRichTextListStylePage::OnParenthesesctrlUpdate( wxUpdateUIEvent& event ) | |
1082 | { | |
d2d0adc7 JS |
1083 | int sel = m_styleListBox->GetSelection(); |
1084 | event.Enable((sel != wxRICHTEXT_BULLETINDEX_SYMBOL && | |
1085 | sel != wxRICHTEXT_BULLETINDEX_BITMAP && | |
1086 | sel != wxRICHTEXT_BULLETINDEX_NONE)); | |
dadd4f55 JS |
1087 | } |
1088 | ||
1089 | /*! | |
1090 | * wxEVT_COMMAND_CHECKBOX_CLICKED event handler for ID_RICHTEXTLISTSTYLEPAGE_PERIODCTRL | |
1091 | */ | |
1092 | ||
1093 | void wxRichTextListStylePage::OnPeriodctrlClick( wxCommandEvent& WXUNUSED(event) ) | |
1094 | { | |
1095 | TransferAndPreview(); | |
1096 | } | |
1097 | ||
1098 | /*! | |
1099 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_PERIODCTRL | |
1100 | */ | |
1101 | ||
1102 | void wxRichTextListStylePage::OnPeriodctrlUpdate( wxUpdateUIEvent& event ) | |
1103 | { | |
d2d0adc7 JS |
1104 | int sel = m_styleListBox->GetSelection(); |
1105 | event.Enable((sel != wxRICHTEXT_BULLETINDEX_SYMBOL && | |
1106 | sel != wxRICHTEXT_BULLETINDEX_BITMAP && | |
1107 | sel != wxRICHTEXT_BULLETINDEX_NONE)); | |
dadd4f55 JS |
1108 | } |
1109 | ||
1110 | /*! | |
1111 | * wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_ALIGNLEFT | |
1112 | */ | |
1113 | ||
1114 | void wxRichTextListStylePage::OnRichtextliststylepageAlignleftSelected( wxCommandEvent& WXUNUSED(event) ) | |
1115 | { | |
1116 | TransferAndPreview(); | |
1117 | } | |
1118 | ||
1119 | /*! | |
1120 | * wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_ALIGNRIGHT | |
1121 | */ | |
1122 | ||
1123 | void wxRichTextListStylePage::OnRichtextliststylepageAlignrightSelected( wxCommandEvent& WXUNUSED(event) ) | |
1124 | { | |
1125 | TransferAndPreview(); | |
1126 | } | |
1127 | ||
1128 | /*! | |
1129 | * wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_JUSTIFIED | |
1130 | */ | |
1131 | ||
1132 | void wxRichTextListStylePage::OnRichtextliststylepageJustifiedSelected( wxCommandEvent& WXUNUSED(event) ) | |
1133 | { | |
1134 | TransferAndPreview(); | |
1135 | } | |
1136 | ||
1137 | /*! | |
1138 | * wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_CENTERED | |
1139 | */ | |
1140 | ||
1141 | void wxRichTextListStylePage::OnRichtextliststylepageCenteredSelected( wxCommandEvent& WXUNUSED(event) ) | |
1142 | { | |
1143 | TransferAndPreview(); | |
1144 | } | |
1145 | ||
1146 | /*! | |
1147 | * wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_ALIGNINDETERMINATE | |
1148 | */ | |
1149 | ||
1150 | void wxRichTextListStylePage::OnRichtextliststylepageAlignindeterminateSelected( wxCommandEvent& WXUNUSED(event) ) | |
1151 | { | |
1152 | TransferAndPreview(); | |
1153 | } | |
1154 | ||
1155 | /*! | |
1156 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_INDENTLEFT | |
1157 | */ | |
1158 | ||
1159 | void wxRichTextListStylePage::OnIndentLeftUpdated( wxCommandEvent& WXUNUSED(event) ) | |
1160 | { | |
1161 | TransferAndPreview(); | |
1162 | } | |
1163 | ||
1164 | /*! | |
1165 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_INDENTFIRSTLINE | |
1166 | */ | |
1167 | ||
1168 | void wxRichTextListStylePage::OnIndentFirstLineUpdated( wxCommandEvent& WXUNUSED(event) ) | |
1169 | { | |
1170 | TransferAndPreview(); | |
1171 | } | |
1172 | ||
1173 | /*! | |
1174 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_INDENTRIGHT | |
1175 | */ | |
1176 | ||
1177 | void wxRichTextListStylePage::OnIndentRightUpdated( wxCommandEvent& WXUNUSED(event) ) | |
1178 | { | |
1179 | TransferAndPreview(); | |
1180 | } | |
1181 | ||
1182 | /*! | |
1183 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_SPACINGBEFORE | |
1184 | */ | |
1185 | ||
1186 | void wxRichTextListStylePage::OnSpacingBeforeUpdated( wxCommandEvent& WXUNUSED(event) ) | |
1187 | { | |
1188 | TransferAndPreview(); | |
1189 | } | |
1190 | ||
1191 | /*! | |
1192 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_SPACINGAFTER | |
1193 | */ | |
1194 | ||
1195 | void wxRichTextListStylePage::OnSpacingAfterUpdated( wxCommandEvent& WXUNUSED(event) ) | |
1196 | { | |
1197 | TransferAndPreview(); | |
1198 | } | |
1199 | ||
1200 | /*! | |
1201 | * wxEVT_COMMAND_COMBOBOX_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_LINESPACING | |
1202 | */ | |
1203 | ||
1204 | void wxRichTextListStylePage::OnLineSpacingSelected( wxCommandEvent& WXUNUSED(event) ) | |
1205 | { | |
1206 | TransferAndPreview(); | |
1207 | } | |
1208 | ||
1209 | /*! | |
1210 | * Should we show tooltips? | |
1211 | */ | |
1212 | ||
1213 | bool wxRichTextListStylePage::ShowToolTips() | |
1214 | { | |
1215 | return wxRichTextFormattingDialog::ShowToolTips(); | |
1216 | } | |
1217 | ||
1218 | /*! | |
1219 | * Get bitmap resources | |
1220 | */ | |
1221 | ||
1222 | wxBitmap wxRichTextListStylePage::GetBitmapResource( const wxString& name ) | |
1223 | { | |
1224 | // Bitmap retrieval | |
1225 | ////@begin wxRichTextListStylePage bitmap retrieval | |
1226 | wxUnusedVar(name); | |
1227 | return wxNullBitmap; | |
1228 | ////@end wxRichTextListStylePage bitmap retrieval | |
1229 | } | |
1230 | ||
1231 | /*! | |
1232 | * Get icon resources | |
1233 | */ | |
1234 | ||
1235 | wxIcon wxRichTextListStylePage::GetIconResource( const wxString& name ) | |
1236 | { | |
1237 | // Icon retrieval | |
1238 | ////@begin wxRichTextListStylePage icon retrieval | |
1239 | wxUnusedVar(name); | |
1240 | return wxNullIcon; | |
1241 | ////@end wxRichTextListStylePage icon retrieval | |
1242 | } | |
1243 | ||
1244 | /// Update for symbol-related controls | |
1245 | void wxRichTextListStylePage::OnSymbolUpdate( wxUpdateUIEvent& event ) | |
1246 | { | |
1247 | int sel = m_styleListBox->GetSelection(); | |
d2d0adc7 | 1248 | event.Enable(sel == wxRICHTEXT_BULLETINDEX_SYMBOL); |
dadd4f55 JS |
1249 | } |
1250 | ||
1251 | /// Update for number-related controls | |
1252 | void wxRichTextListStylePage::OnNumberUpdate( wxUpdateUIEvent& event ) | |
1253 | { | |
1254 | int sel = m_styleListBox->GetSelection(); | |
d2d0adc7 JS |
1255 | event.Enable((sel != wxRICHTEXT_BULLETINDEX_SYMBOL && |
1256 | sel != wxRICHTEXT_BULLETINDEX_BITMAP && | |
1257 | sel != wxRICHTEXT_BULLETINDEX_STANDARD && | |
1258 | sel != wxRICHTEXT_BULLETINDEX_NONE)); | |
f089713f JS |
1259 | } |
1260 | ||
1261 | /// Update for standard bullet-related controls | |
1262 | void wxRichTextListStylePage::OnStandardBulletUpdate( wxUpdateUIEvent& event ) | |
1263 | { | |
1264 | int sel = m_styleListBox->GetSelection(); | |
d2d0adc7 | 1265 | event.Enable( sel == wxRICHTEXT_BULLETINDEX_STANDARD ); |
dadd4f55 JS |
1266 | } |
1267 | ||
1268 | /*! | |
1269 | * wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_RICHTEXTLISTSTYLEPAGE_CHOOSE_FONT | |
1270 | */ | |
1271 | ||
1272 | void wxRichTextListStylePage::OnChooseFontClick( wxCommandEvent& WXUNUSED(event) ) | |
1273 | { | |
24777478 | 1274 | wxRichTextAttr* attr = GetAttributesForSelection(); |
dadd4f55 JS |
1275 | |
1276 | int pages = wxRICHTEXT_FORMAT_FONT; | |
1277 | wxRichTextFormattingDialog formatDlg; | |
1278 | formatDlg.SetStyle(*attr, false); | |
1279 | formatDlg.Create(pages, this); | |
1280 | ||
1281 | if (formatDlg.ShowModal() == wxID_OK) | |
1282 | { | |
1283 | (*attr) = formatDlg.GetAttributes(); | |
1284 | TransferAndPreview(); | |
1285 | } | |
1286 | } | |
f089713f JS |
1287 | /*! |
1288 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_NAMESTATIC | |
1289 | */ | |
1290 | ||
1291 | void wxRichTextListStylePage::OnNamestaticUpdate( wxUpdateUIEvent& event ) | |
1292 | { | |
1293 | OnStandardBulletUpdate(event); | |
1294 | } | |
1295 | ||
1296 | /*! | |
1297 | * wxEVT_COMMAND_COMBOBOX_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_NAMECTRL | |
1298 | */ | |
1299 | ||
1300 | void wxRichTextListStylePage::OnNamectrlSelected( wxCommandEvent& WXUNUSED(event) ) | |
1301 | { | |
1302 | TransferAndPreview(); | |
1303 | } | |
1304 | ||
1305 | /*! | |
1306 | * wxEVT_COMMAND_TEXT_UPDATED event handler for ID_RICHTEXTLISTSTYLEPAGE_NAMECTRL | |
1307 | */ | |
1308 | ||
1309 | void wxRichTextListStylePage::OnNamectrlUpdated( wxCommandEvent& WXUNUSED(event) ) | |
1310 | { | |
1311 | TransferAndPreview(); | |
1312 | } | |
1313 | ||
1314 | /*! | |
1315 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_NAMECTRL | |
1316 | */ | |
1317 | ||
1318 | void wxRichTextListStylePage::OnNamectrlUIUpdate( wxUpdateUIEvent& event ) | |
1319 | { | |
1320 | OnStandardBulletUpdate(event); | |
1321 | } | |
d2d0adc7 JS |
1322 | /*! |
1323 | * wxEVT_COMMAND_CHECKBOX_CLICKED event handler for ID_RICHTEXTLISTSTYLEPAGE_RIGHTPARENTHESISCTRL | |
1324 | */ | |
1325 | ||
1326 | void wxRichTextListStylePage::OnRightParenthesisCtrlClick( wxCommandEvent& WXUNUSED(event) ) | |
1327 | { | |
1328 | TransferAndPreview(); | |
1329 | } | |
1330 | ||
1331 | /*! | |
1332 | * wxEVT_UPDATE_UI event handler for ID_RICHTEXTLISTSTYLEPAGE_RIGHTPARENTHESISCTRL | |
1333 | */ | |
1334 | ||
1335 | void wxRichTextListStylePage::OnRightParenthesisCtrlUpdate( wxUpdateUIEvent& event ) | |
1336 | { | |
1337 | int sel = m_styleListBox->GetSelection(); | |
1338 | event.Enable((sel != wxRICHTEXT_BULLETINDEX_SYMBOL && | |
1339 | sel != wxRICHTEXT_BULLETINDEX_BITMAP && | |
1340 | sel != wxRICHTEXT_BULLETINDEX_NONE)); | |
1341 | } | |
1342 | ||
1343 | /*! | |
1344 | * wxEVT_COMMAND_COMBOBOX_SELECTED event handler for ID_RICHTEXTLISTSTYLEPAGE_BULLETALIGNMENTCTRL | |
1345 | */ | |
1346 | ||
1347 | void wxRichTextListStylePage::OnBulletAlignmentCtrlSelected( wxCommandEvent& WXUNUSED(event) ) | |
1348 | { | |
1349 | TransferAndPreview(); | |
1350 | } | |
1351 | ||
1352 |