Menu

[r135]: / src / mypropertysheet.cpp  Maximize  Restore  History

Download this file

464 lines (424 with data), 16.6 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
/*
* Copyright 2005-2007 Gerald Schmidt.
*
* This file is part of Xml Copy Editor.
*
* Xml Copy Editor is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* Xml Copy Editor is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Xml Copy Editor; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <wx/bookctrl.h>
#include <wx/fontenum.h>
#include "mypropertysheet.h"
BEGIN_EVENT_TABLE ( MyPropertySheet, wxPropertySheetDialog )
EVT_BUTTON ( wxID_OK, MyPropertySheet::OnOk )
EVT_BUTTON (
APPLICATION_DIR_BROWSE,
MyPropertySheet::OnApplicationDirBrowse )
EVT_BUTTON (
BROWSER_COMMAND_BROWSE,
MyPropertySheet::OnBrowserCommandBrowse )
END_EVENT_TABLE()
MyPropertySheet::MyPropertySheet (
wxWindow *parent,
XmlCtrlProperties& propertiesParameter,
wxString& applicationDirParameter,
wxString& browserCommandParameter,
bool rememberOpenTabsParameter,
bool libxmlNetAccessParameter,
bool singleInstanceCheckParameter,
bool saveBomParameter,
bool unlimitedUndoParameter,
bool restoreLayoutParameter,
bool expandInternalEntitiesParameter,
bool showFullPathOnFrameParameter,
int lang,
wxWindowID id,
wxString title,
const wxPoint& position,
const wxSize& size,
long style ) : wxPropertySheetDialog (
parent, id, title, position, size, style ),
properties ( propertiesParameter ),
applicationDir ( applicationDirParameter ),
browserCommand ( browserCommandParameter )
{
CreateButtons ( wxOK | wxCANCEL );
// editor
wxPanel *editorPanel = new wxPanel ( GetBookCtrl() );
wxBoxSizer *editorSizer = new wxBoxSizer ( wxVERTICAL );
wxBoxSizer *col1sizer = new wxBoxSizer ( wxVERTICAL );
wxBoxSizer *col2sizer = new wxBoxSizer ( wxVERTICAL );
wxBoxSizer *tablesizer = new wxBoxSizer ( wxHORIZONTAL );
wxStaticText *labelFont = new wxStaticText (
editorPanel,
wxID_ANY,
_ ( "Font" ) );
fontBox = new wxChoice (
editorPanel,
wxID_ANY );
wxArrayString fontArray;
fontArray = wxFontEnumerator::GetFacenames();
fontArray.Sort();
for ( size_t i = 0; i < fontArray.GetCount(); i++ )
{
fontBox->Insert ( fontArray.Item ( i ), i );
}
fontBox->SetStringSelection ( properties.font );
deleteWholeTagBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "I&ntelligent backspace/delete" ) );
deleteWholeTagBox->SetValue ( properties.deleteWholeTag );
completionBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "&Tag completion" ) );
completionBox->SetValue ( properties.completion );
foldBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "&Folding" ) );
foldBox->SetValue ( properties.fold );
currentLineBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "&Highlight current line" ) );
currentLineBox->SetValue ( properties.currentLine );
indentLinesBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "&Indentation guides" ) );
indentLinesBox->SetValue ( properties.indentLines );
insertCloseTagBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "&Always insert closing tag" ) );
insertCloseTagBox->SetValue ( properties.insertCloseTag );
highlightSyntaxBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "Hi&ghlight syntax" ) );
highlightSyntaxBox->SetValue ( properties.highlightSyntax );
numberBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "&Line numbers" ) );
numberBox->SetValue ( properties.number );
protectHiddenElementsBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "L&ock hidden tags" ) );
protectHiddenElementsBox->SetValue ( properties.protectHiddenElements );
whitespaceVisibleBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "&White space visible" ) );
whitespaceVisibleBox->SetValue ( properties.whitespaceVisible );
validateAsYouTypeBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "&Validate as you type" ) );
validateAsYouTypeBox->SetValue ( properties.validateAsYouType );
toggleLineBackgroundBox =
new wxCheckBox ( editorPanel, wxID_ANY, _ ( "Va&riable highlight in tag free view" ) );
toggleLineBackgroundBox->SetValue ( properties.toggleLineBackground );
col1sizer->Add ( insertCloseTagBox, 0, wxALL | wxALIGN_LEFT, 5 );
col1sizer->Add ( foldBox, 0, wxALL | wxALIGN_LEFT, 5 );
col1sizer->Add ( currentLineBox, 0, wxALL | wxALIGN_LEFT, 5 );
col1sizer->Add ( highlightSyntaxBox, 0, wxALL | wxALIGN_LEFT, 5 );
col1sizer->Add ( indentLinesBox, 0, wxALL | wxALIGN_LEFT, 5 );
col1sizer->Add ( deleteWholeTagBox, 0, wxALL | wxALIGN_LEFT, 5 );
col2sizer->Add ( numberBox, 0, wxALL | wxALIGN_LEFT, 5 );
col2sizer->Add ( protectHiddenElementsBox, 0, wxALL | wxALIGN_LEFT, 5 );
col2sizer->Add ( completionBox, 0, wxALL | wxALIGN_LEFT, 5 );
col2sizer->Add ( validateAsYouTypeBox, 0, wxALL | wxALIGN_LEFT, 5 );
col2sizer->Add ( toggleLineBackgroundBox, 0, wxALL | wxALIGN_LEFT, 5 );
col2sizer->Add ( whitespaceVisibleBox, 0, wxALL | wxALIGN_LEFT, 5 );
tablesizer->Add ( col1sizer, 0, wxALL | wxALIGN_LEFT, 0 );
tablesizer->Add ( col2sizer, 0, wxALL | wxALIGN_LEFT, 0 );
editorSizer->Add ( tablesizer, 0, wxALL | wxALIGN_LEFT, 0 );
editorSizer->Add ( labelFont, 0, wxLEFT | wxTOP | wxALIGN_LEFT, 5 );
editorSizer->Add ( fontBox, 0, wxALL | wxALIGN_LEFT, 5 );
editorPanel->SetSizer ( editorSizer );
// general
wxPanel *generalPanel = new wxPanel ( GetBookCtrl() );
wxBoxSizer *vsizer = new wxBoxSizer ( wxVERTICAL );
wxBoxSizer *hsizer = new wxBoxSizer ( wxHORIZONTAL );
wxBoxSizer *hsizerBrowser = new wxBoxSizer ( wxHORIZONTAL );
wxBoxSizer *hsizerCheckboxes = new wxBoxSizer ( wxHORIZONTAL );
wxBoxSizer *vsizerCheckbox1 = new wxBoxSizer ( wxVERTICAL );
wxBoxSizer *vsizerCheckbox2 = new wxBoxSizer ( wxVERTICAL );
wxStaticText *label = new wxStaticText (
generalPanel,
wxID_ANY,
_ ( "Application directory" ) );
applicationDirEdit = new wxTextCtrl (
generalPanel,
wxID_ANY,
applicationDir,
wxDefaultPosition,
wxSize ( 240, -1 ) );
wxButton *browse = new wxButton (
generalPanel,
APPLICATION_DIR_BROWSE,
_ ( "Browse" ),
wxDefaultPosition,
wxSize ( -1, applicationDirEdit->GetSize().GetHeight() ) );
wxStaticText *labelBrowser = new wxStaticText (
generalPanel,
wxID_ANY,
_ ( "Browser" ) );
browserCommandEdit = new wxTextCtrl (
generalPanel,
wxID_ANY,
browserCommand,
wxDefaultPosition,
wxSize ( 240, -1 ) );
wxButton *browseCommand = new wxButton (
generalPanel,
BROWSER_COMMAND_BROWSE,
_ ( "Browse" ),
wxDefaultPosition,
wxSize ( -1, browserCommandEdit->GetSize().GetHeight() ) );
wxStaticText *labelLanguage = new wxStaticText (
generalPanel,
wxID_ANY,
_ ( "Language (restart required)" ) );
languageBox = new wxChoice (
generalPanel,
wxID_ANY );
languageBox->Insert ( _T ( "Catalan" ), INDEX_CATALAN );
languageBox->Insert ( _T ( "Chinese Simplified" ), INDEX_CHINESE_SIMPLIFIED );
languageBox->Insert ( _T ( "Chinese Traditional" ), INDEX_CHINESE_TRADITIONAL );
languageBox->Insert ( _T ( "Dutch" ), INDEX_DUTCH );
languageBox->Insert ( _T ( "English (US)" ), INDEX_ENGLISH_US );
languageBox->Insert ( _T ( "French" ), INDEX_FRENCH );
languageBox->Insert ( _T ( "German" ), INDEX_GERMAN );
languageBox->Insert ( _T ( "Italian" ), INDEX_ITALIAN );
languageBox->Insert ( _T ( "Russian" ), INDEX_RUSSIAN );
languageBox->Insert ( _T ( "Slovak" ), INDEX_SLOVAK );
languageBox->Insert ( _T ( "Spanish" ), INDEX_SPANISH );
languageBox->Insert ( _T ( "Swedish" ), INDEX_SWEDISH );
languageBox->Insert ( _T ( "Ukrainian" ), INDEX_UKRAINIAN );
switch ( lang )
{
case wxLANGUAGE_CATALAN:
languageBox->SetSelection ( INDEX_CATALAN );
break;
case wxLANGUAGE_GERMAN:
languageBox->SetSelection ( INDEX_GERMAN );
break;
case wxLANGUAGE_DUTCH:
languageBox->SetSelection ( INDEX_DUTCH );
break;
case wxLANGUAGE_FRENCH:
languageBox->SetSelection ( INDEX_FRENCH );
break;
case wxLANGUAGE_ITALIAN:
languageBox->SetSelection ( INDEX_ITALIAN );
break;
case wxLANGUAGE_SLOVAK:
languageBox->SetSelection ( INDEX_SLOVAK );
break;
case wxLANGUAGE_SWEDISH:
languageBox->SetSelection ( INDEX_SWEDISH );
break;
case wxLANGUAGE_RUSSIAN:
languageBox->SetSelection ( INDEX_RUSSIAN );
break;
case wxLANGUAGE_CHINESE_SIMPLIFIED:
languageBox->SetSelection ( INDEX_CHINESE_SIMPLIFIED );
break;
case wxLANGUAGE_CHINESE_TRADITIONAL:
languageBox->SetSelection ( INDEX_CHINESE_TRADITIONAL );
break;
case wxLANGUAGE_UKRAINIAN:
languageBox->SetSelection ( INDEX_UKRAINIAN );
break;
case wxLANGUAGE_SPANISH:
languageBox->SetSelection ( INDEX_SPANISH );
break;
default:
languageBox->SetSelection ( INDEX_ENGLISH_US );
break;
}
libxmlNetAccessBox = new wxCheckBox (
generalPanel, wxID_ANY, _ ( "&Enable network access for DTD validation" ) );
libxmlNetAccessBox->SetValue ( libxmlNetAccessParameter );
expandInternalEntitiesBox = new wxCheckBox (
generalPanel, wxID_ANY, _ ( "E&xpand internal entities on open" ) );
expandInternalEntitiesBox->SetValue ( expandInternalEntitiesParameter );
singleInstanceCheckBox = new wxCheckBox (
generalPanel, wxID_ANY, _ ( "&One application instance only" ) );
singleInstanceCheckBox->SetValue ( singleInstanceCheckParameter );
restoreLayoutBox = new wxCheckBox (
generalPanel, wxID_ANY, _ ( "Re&member layout on close" ) );
restoreLayoutBox->SetValue ( restoreLayoutParameter );
rememberOpenTabsBox = new wxCheckBox (
generalPanel, wxID_ANY, _ ( "&Remember open tabs on close" ) );
rememberOpenTabsBox->SetValue ( rememberOpenTabsParameter );
unlimitedUndoBox = new wxCheckBox (
generalPanel, wxID_ANY, _ ( "Re&tain undo history on save" ) );
unlimitedUndoBox->SetValue ( unlimitedUndoParameter );
saveBomBox = new wxCheckBox (
generalPanel, wxID_ANY, _ ( "&Save UTF-8 byte order mark" ) );
saveBomBox->SetValue ( saveBomParameter );
fullPathBox = new wxCheckBox (
generalPanel, wxID_ANY, _ ( "S&how full path on frame" ) );
fullPathBox->SetValue ( showFullPathOnFrameParameter );
hsizer->Add ( applicationDirEdit, 0, wxALL | wxALIGN_LEFT, 0 );
hsizer->Add ( browse, 0, wxLEFT | wxALIGN_LEFT, 5 );
hsizerBrowser->Add ( browserCommandEdit, 0, wxALL | wxALIGN_LEFT, 0 );
hsizerBrowser->Add ( browseCommand, 0, wxLEFT | wxALIGN_LEFT, 5 );
vsizer->Add ( label, 0, wxLEFT | wxTOP | wxALIGN_LEFT, 5 );
vsizer->Add ( hsizer, 0, wxALL | wxALIGN_LEFT, 5 );
vsizer->Add ( labelBrowser, 0, wxLEFT | wxTOP | wxALIGN_LEFT, 5 );
vsizer->Add ( hsizerBrowser, 0, wxALL | wxALIGN_LEFT, 5 );
vsizer->Add ( labelLanguage, 0, wxLEFT | wxTOP | wxALIGN_LEFT, 5 );
vsizer->Add ( languageBox, 0, wxALL | wxALIGN_LEFT, 5 );
vsizerCheckbox1->Add ( libxmlNetAccessBox, 0, wxALL | wxALIGN_LEFT, 5 );
vsizerCheckbox1->Add ( expandInternalEntitiesBox, 0, wxALL | wxALIGN_LEFT, 5 );
vsizerCheckbox1->Add ( singleInstanceCheckBox, 0, wxALL | wxALIGN_LEFT, 5 );
vsizerCheckbox1->Add ( restoreLayoutBox, 0, wxALL | wxALIGN_LEFT, 5 );
vsizerCheckbox2->Add ( rememberOpenTabsBox, 0, wxALL | wxALIGN_LEFT, 5 );
vsizerCheckbox2->Add ( unlimitedUndoBox, 0, wxALL | wxALIGN_LEFT, 5 );
vsizerCheckbox2->Add ( saveBomBox, 0, wxALL | wxALIGN_LEFT, 5 );
vsizerCheckbox2->Add ( fullPathBox, 0, wxALL | wxALIGN_LEFT, 5 );
hsizerCheckboxes->Add ( vsizerCheckbox1, 0, wxALL | wxALIGN_LEFT, 0 );
hsizerCheckboxes->Add ( vsizerCheckbox2, 0, wxALL | wxALIGN_LEFT, 0 );
vsizer->Add ( hsizerCheckboxes, 0, wxALL | wxALIGN_LEFT, 5 );
generalPanel->SetSizer ( vsizer );
editorSizer->Layout();
vsizer->Layout();
GetBookCtrl()->AddPage ( generalPanel, _ ( "General" ) );
GetBookCtrl()->AddPage ( editorPanel, _ ( "Editor" ) );
LayoutDialog();
}
MyPropertySheet::~MyPropertySheet()
{}
void MyPropertySheet::OnOk ( wxCommandEvent& e )
{
properties.completion = completionBox->GetValue();
properties.fold = foldBox->GetValue();
properties.number = numberBox->GetValue();
properties.currentLine = currentLineBox->GetValue();
properties.whitespaceVisible = whitespaceVisibleBox->GetValue();
properties.indentLines = indentLinesBox->GetValue();
properties.protectHiddenElements = protectHiddenElementsBox->GetValue();
properties.toggleLineBackground = toggleLineBackgroundBox->GetValue();
properties.insertCloseTag = insertCloseTagBox->GetValue();
properties.deleteWholeTag = deleteWholeTagBox->GetValue();
properties.validateAsYouType = validateAsYouTypeBox->GetValue();
properties.font = fontBox->GetStringSelection();
properties.highlightSyntax = highlightSyntaxBox->GetValue();
wxString testDir = applicationDirEdit->GetValue();
if ( !wxFileName::DirExists ( testDir ) )
{
wxMessageBox ( _ ( "Cannot access application directory" ), _ ( "Options" ) );
// tbd: show general tab
return;
}
else
applicationDir = testDir;
browserCommand = browserCommandEdit->GetValue(); // permit incorrect value
singleInstanceCheck = singleInstanceCheckBox->GetValue();
restoreLayout = restoreLayoutBox->GetValue();
rememberOpenTabs = rememberOpenTabsBox->GetValue();
libxmlNetAccess = libxmlNetAccessBox->GetValue();
saveBom = saveBomBox->GetValue();
unlimitedUndo = unlimitedUndoBox->GetValue();
expandInternalEntities = expandInternalEntitiesBox->GetValue();
showFullPathOnFrame = fullPathBox->GetValue();
int languageChoice = languageBox->GetSelection();
switch ( languageChoice )
{
case INDEX_CATALAN:
lang = wxLANGUAGE_CATALAN;
break;
case INDEX_DUTCH:
lang = wxLANGUAGE_DUTCH;
break;
case INDEX_ITALIAN:
lang = wxLANGUAGE_ITALIAN;
break;
case INDEX_GERMAN:
lang = wxLANGUAGE_GERMAN;
break;
case INDEX_CHINESE_SIMPLIFIED:
lang = wxLANGUAGE_CHINESE_SIMPLIFIED;
break;
case INDEX_CHINESE_TRADITIONAL:
lang = wxLANGUAGE_CHINESE_TRADITIONAL;
break;
case INDEX_RUSSIAN:
lang = wxLANGUAGE_RUSSIAN;
break;
case INDEX_FRENCH:
lang = wxLANGUAGE_FRENCH;
break;
case INDEX_SLOVAK:
lang = wxLANGUAGE_SLOVAK;
break;
case INDEX_SPANISH:
lang = wxLANGUAGE_SPANISH;
break;
case INDEX_SWEDISH:
lang = wxLANGUAGE_SWEDISH;
break;
case INDEX_UKRAINIAN:
lang = wxLANGUAGE_UKRAINIAN;
break;
default:
lang = wxLANGUAGE_ENGLISH_US;
break;
}
e.Skip();
}
void MyPropertySheet::OnApplicationDirBrowse ( wxCommandEvent& e )
{
wxDirDialog *browseDialog = new wxDirDialog ( this );
if ( browseDialog->ShowModal() == wxID_OK )
applicationDirEdit->SetValue ( browseDialog->GetPath() );
}
void MyPropertySheet::OnBrowserCommandBrowse ( wxCommandEvent& e )
{
wxFileDialog *browseDialog = new wxFileDialog ( this );
if ( browseDialog->ShowModal() == wxID_OK )
browserCommandEdit->SetValue ( browseDialog->GetPath() );
}
XmlCtrlProperties MyPropertySheet::getProperties()
{
return properties;
}
wxString MyPropertySheet::getApplicationDir()
{
return applicationDir;
}
wxString MyPropertySheet::getBrowserCommand()
{
return browserCommand;
}
bool MyPropertySheet::getSingleInstanceCheck()
{
return singleInstanceCheck;
}
bool MyPropertySheet::getRememberOpenTabs()
{
return rememberOpenTabs;
}
bool MyPropertySheet::getLibxmlNetAccess()
{
return libxmlNetAccess;
}
bool MyPropertySheet::getSaveBom()
{
return saveBom;
}
bool MyPropertySheet::getUnlimitedUndo()
{
return unlimitedUndo;
}
int MyPropertySheet::getLang()
{
return lang;
}
bool MyPropertySheet::getRestoreLayout()
{
return restoreLayout;
}
bool MyPropertySheet::getExpandInternalEntities()
{
return expandInternalEntities;
}
bool MyPropertySheet::getShowFullPathOnFrame()
{
return showFullPathOnFrame;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.