]> git.saurik.com Git - wxWidgets.git/blame - samples/stc/stctest.cpp
Quote file names with spaces in wxFileType::ExpandCommand().
[wxWidgets.git] / samples / stc / stctest.cpp
CommitLineData
88a8b04e 1//////////////////////////////////////////////////////////////////////////////
f4ec6bd2 2// File: contrib/samples/stc/stctest.cpp
88a8b04e
RD
3// Purpose: STC test application
4// Maintainer: Otto Wyss
5// Created: 2003-09-01
9ce192d4 6// RCS-ID: $Id$
88a8b04e 7// Copyright: (c) wxGuide
9ce192d4 8// Licence: wxWindows licence
88a8b04e 9//////////////////////////////////////////////////////////////////////////////
9ce192d4 10
88a8b04e
RD
11//----------------------------------------------------------------------------
12// headers
13//----------------------------------------------------------------------------
9ce192d4 14
f4ec6bd2 15// For compilers that support precompilation, includes "wx/wx.h".
c40691a0 16#include "wx/wxprec.h"
9ce192d4
RD
17
18#ifdef __BORLANDC__
19 #pragma hdrstop
20#endif
21
22// for all others, include the necessary headers (this file is usually all you
be5a51fb 23// need because it includes almost all 'standard' wxWidgets headers)
9ce192d4 24#ifndef WX_PRECOMP
c54e5eb0 25 #include "wx/wx.h"
9ce192d4
RD
26#endif
27
be5a51fb 28//! wxWidgets headers
c54e5eb0
WS
29#include "wx/config.h" // configuration support
30#include "wx/filedlg.h" // file dialog support
31#include "wx/filename.h" // filename support
32#include "wx/notebook.h" // notebook support
33#include "wx/settings.h" // system settings
34#include "wx/string.h" // strings support
35#include "wx/image.h" // images support
88a8b04e
RD
36
37//! application headers
38#include "defsext.h" // Additional definitions
39#include "edit.h" // Edit module
40#include "prefs.h" // Prefs
41
41f02b9a
FM
42#ifndef __WXMSW__
43 #include "../sample.xpm"
44#endif
88a8b04e
RD
45
46//----------------------------------------------------------------------------
47// resources
48//----------------------------------------------------------------------------
49
50// the application icon (under Windows and OS/2 it is in resources)
3cb332c1
VZ
51#if !defined(__WXMSW__) && !defined(__WXPM__)
52 #include "../sample.xpm"
88a8b04e
RD
53#endif
54
55//============================================================================
56// declarations
57//============================================================================
58
9a83f860 59#define APP_NAME wxT("STC-Test")
1e545382 60#define APP_DESCR _("See http://wxguide.sourceforge.net/")
88a8b04e 61
9a83f860
VZ
62#define APP_MAINT wxT("Otto Wyss")
63#define APP_VENDOR wxT("wxWidgets")
64#define APP_COPYRIGTH wxT("(C) 2003 Otto Wyss")
65#define APP_LICENCE wxT("wxWidgets")
88a8b04e 66
9a83f860 67#define APP_VERSION wxT("0.1.alpha")
88a8b04e
RD
68#define APP_BUILD __DATE__
69
9a83f860
VZ
70#define APP_WEBSITE wxT("http://www.wxWidgets.org")
71#define APP_MAIL wxT("mailto://???")
9ce192d4 72
88a8b04e 73#define NONAME _("<untitled>")
9ce192d4 74
88a8b04e
RD
75class AppBook;
76
77
78//----------------------------------------------------------------------------
79//! global application name
80wxString *g_appname = NULL;
81
c54e5eb0
WS
82#if wxUSE_PRINTING_ARCHITECTURE
83
88a8b04e
RD
84//! global print data, to remember settings during the session
85wxPrintData *g_printData = (wxPrintData*) NULL;
86wxPageSetupData *g_pageSetupData = (wxPageSetupData*) NULL;
87
c54e5eb0
WS
88#endif // wxUSE_PRINTING_ARCHITECTURE
89
88a8b04e 90
90daa6cd
PC
91class AppFrame;
92
88a8b04e
RD
93//----------------------------------------------------------------------------
94//! application APP_VENDOR-APP_NAME.
95class App: public wxApp {
96 friend class AppFrame;
9ce192d4 97
9ce192d4 98public:
88a8b04e
RD
99 //! the main function called durning application start
100 virtual bool OnInit ();
101
102 //! application exit function
103 virtual int OnExit ();
104
105private:
106 //! frame window
107 AppFrame* m_frame;
108
c50e0cc7
JS
109 wxFrame* MinimalEditor();
110protected:
111 void OnMinimalEditor(wxCommandEvent&);
112 DECLARE_EVENT_TABLE()
9ce192d4
RD
113};
114
be5a51fb 115// created dynamically by wxWidgets
88a8b04e 116DECLARE_APP (App);
9ce192d4 117
88a8b04e
RD
118//----------------------------------------------------------------------------
119//! frame of the application APP_VENDOR-APP_NAME.
120class AppFrame: public wxFrame {
121 friend class App;
122 friend class AppBook;
123 friend class AppAbout;
9e730a78 124
88a8b04e
RD
125public:
126 //! constructor
127 AppFrame (const wxString &title);
128
129 //! destructor
130 ~AppFrame ();
131
132 //! event handlers
133 //! common
134 void OnClose (wxCloseEvent &event);
135 void OnAbout (wxCommandEvent &event);
136 void OnExit (wxCommandEvent &event);
137 void OnTimerEvent (wxTimerEvent &event);
138 //! file
139 void OnFileNew (wxCommandEvent &event);
140 void OnFileNewFrame (wxCommandEvent &event);
141 void OnFileOpen (wxCommandEvent &event);
142 void OnFileOpenFrame (wxCommandEvent &event);
143 void OnFileSave (wxCommandEvent &event);
144 void OnFileSaveAs (wxCommandEvent &event);
145 void OnFileClose (wxCommandEvent &event);
146 //! properties
147 void OnProperties (wxCommandEvent &event);
148 //! print
149 void OnPrintSetup (wxCommandEvent &event);
150 void OnPrintPreview (wxCommandEvent &event);
151 void OnPrint (wxCommandEvent &event);
152 //! edit events
153 void OnEdit (wxCommandEvent &event);
9e730a78
RD
154
155private:
88a8b04e
RD
156 // edit object
157 Edit *m_edit;
158 void FileOpen (wxString fname);
159
160 //! creates the application menu bar
161 wxMenuBar *m_menuBar;
162 void CreateMenu ();
163
164 // print preview position and size
165 wxRect DeterminePrintSize ();
166
9e730a78
RD
167 DECLARE_EVENT_TABLE()
168};
169
88a8b04e
RD
170//----------------------------------------------------------------------------
171//! about box of the application APP_VENDOR-APP_NAME
172class AppAbout: public wxDialog {
9e730a78 173
9ce192d4 174public:
88a8b04e
RD
175 //! constructor
176 AppAbout (wxWindow *parent,
177 int milliseconds = 0,
178 long style = 0);
179
180 //! destructor
181 ~AppAbout ();
9ce192d4 182
88a8b04e
RD
183 // event handlers
184 void OnTimerEvent (wxTimerEvent &event);
9ce192d4
RD
185
186private:
88a8b04e
RD
187 // timer
188 wxTimer *m_timer;
9ce192d4
RD
189
190 DECLARE_EVENT_TABLE()
191};
192
193
88a8b04e
RD
194//============================================================================
195// implementation
196//============================================================================
9ce192d4 197
88a8b04e 198IMPLEMENT_APP (App)
9ce192d4 199
c50e0cc7
JS
200
201BEGIN_EVENT_TABLE(App, wxApp)
202EVT_MENU(myID_WINDOW_MINIMAL, App::OnMinimalEditor)
203END_EVENT_TABLE()
204
88a8b04e
RD
205//----------------------------------------------------------------------------
206// App
207//----------------------------------------------------------------------------
9ce192d4 208
88a8b04e 209bool App::OnInit () {
9ce192d4 210
88a8b04e 211 wxInitAllImageHandlers();
f4cf4fda 212
88a8b04e
RD
213 // set application and vendor name
214 SetAppName (APP_NAME);
215 SetVendorName (APP_VENDOR);
216 g_appname = new wxString ();
217 g_appname->Append (APP_VENDOR);
9a83f860 218 g_appname->Append (wxT("-"));
88a8b04e 219 g_appname->Append (APP_NAME);
9ce192d4 220
c54e5eb0 221#if wxUSE_PRINTING_ARCHITECTURE
88a8b04e
RD
222 // initialize print data and setup
223 g_printData = new wxPrintData;
224 g_pageSetupData = new wxPageSetupDialogData;
c54e5eb0 225#endif // wxUSE_PRINTING_ARCHITECTURE
9ce192d4 226
88a8b04e
RD
227 // create application frame
228 m_frame = new AppFrame (*g_appname);
9ce192d4 229
88a8b04e
RD
230 // open application frame
231 m_frame->Layout ();
232 m_frame->Show (true);
233 SetTopWindow (m_frame);
9ce192d4 234
88a8b04e
RD
235 return true;
236}
9ce192d4 237
88a8b04e 238int App::OnExit () {
9ce192d4 239
88a8b04e
RD
240 // delete global appname
241 delete g_appname;
9ce192d4 242
c54e5eb0 243#if wxUSE_PRINTING_ARCHITECTURE
88a8b04e
RD
244 // delete global print data and setup
245 if (g_printData) delete g_printData;
246 if (g_pageSetupData) delete g_pageSetupData;
c54e5eb0 247#endif // wxUSE_PRINTING_ARCHITECTURE
9ce192d4 248
88a8b04e
RD
249 return 0;
250}
9ce192d4 251
88a8b04e
RD
252//----------------------------------------------------------------------------
253// AppFrame
254//----------------------------------------------------------------------------
255
256BEGIN_EVENT_TABLE (AppFrame, wxFrame)
257 // common
258 EVT_CLOSE ( AppFrame::OnClose)
259 // file
260 EVT_MENU (wxID_OPEN, AppFrame::OnFileOpen)
261 EVT_MENU (wxID_SAVE, AppFrame::OnFileSave)
262 EVT_MENU (wxID_SAVEAS, AppFrame::OnFileSaveAs)
263 EVT_MENU (wxID_CLOSE, AppFrame::OnFileClose)
264 // properties
265 EVT_MENU (myID_PROPERTIES, AppFrame::OnProperties)
266 // print and exit
267 EVT_MENU (wxID_PRINT_SETUP, AppFrame::OnPrintSetup)
268 EVT_MENU (wxID_PREVIEW, AppFrame::OnPrintPreview)
269 EVT_MENU (wxID_PRINT, AppFrame::OnPrint)
270 EVT_MENU (wxID_EXIT, AppFrame::OnExit)
271 // edit
272 EVT_MENU (wxID_CLEAR, AppFrame::OnEdit)
273 EVT_MENU (wxID_CUT, AppFrame::OnEdit)
274 EVT_MENU (wxID_COPY, AppFrame::OnEdit)
275 EVT_MENU (wxID_PASTE, AppFrame::OnEdit)
276 EVT_MENU (myID_INDENTINC, AppFrame::OnEdit)
277 EVT_MENU (myID_INDENTRED, AppFrame::OnEdit)
278 EVT_MENU (wxID_SELECTALL, AppFrame::OnEdit)
279 EVT_MENU (myID_SELECTLINE, AppFrame::OnEdit)
280 EVT_MENU (wxID_REDO, AppFrame::OnEdit)
281 EVT_MENU (wxID_UNDO, AppFrame::OnEdit)
282 // find
283 EVT_MENU (wxID_FIND, AppFrame::OnEdit)
284 EVT_MENU (myID_FINDNEXT, AppFrame::OnEdit)
285 EVT_MENU (myID_REPLACE, AppFrame::OnEdit)
286 EVT_MENU (myID_REPLACENEXT, AppFrame::OnEdit)
287 EVT_MENU (myID_BRACEMATCH, AppFrame::OnEdit)
288 EVT_MENU (myID_GOTO, AppFrame::OnEdit)
289 // view
290 EVT_MENU_RANGE (myID_HILIGHTFIRST, myID_HILIGHTLAST,
291 AppFrame::OnEdit)
292 EVT_MENU (myID_DISPLAYEOL, AppFrame::OnEdit)
293 EVT_MENU (myID_INDENTGUIDE, AppFrame::OnEdit)
294 EVT_MENU (myID_LINENUMBER, AppFrame::OnEdit)
295 EVT_MENU (myID_LONGLINEON, AppFrame::OnEdit)
296 EVT_MENU (myID_WHITESPACE, AppFrame::OnEdit)
297 EVT_MENU (myID_FOLDTOGGLE, AppFrame::OnEdit)
298 EVT_MENU (myID_OVERTYPE, AppFrame::OnEdit)
299 EVT_MENU (myID_READONLY, AppFrame::OnEdit)
300 EVT_MENU (myID_WRAPMODEON, AppFrame::OnEdit)
301 // extra
302 EVT_MENU (myID_CHANGELOWER, AppFrame::OnEdit)
303 EVT_MENU (myID_CHANGEUPPER, AppFrame::OnEdit)
304 EVT_MENU (myID_CONVERTCR, AppFrame::OnEdit)
305 EVT_MENU (myID_CONVERTCRLF, AppFrame::OnEdit)
306 EVT_MENU (myID_CONVERTLF, AppFrame::OnEdit)
307 EVT_MENU (myID_CHARSETANSI, AppFrame::OnEdit)
308 EVT_MENU (myID_CHARSETMAC, AppFrame::OnEdit)
309 // help
310 EVT_MENU (wxID_ABOUT, AppFrame::OnAbout)
311END_EVENT_TABLE ()
312
313AppFrame::AppFrame (const wxString &title)
7e126a07 314 : wxFrame ((wxFrame *)NULL, wxID_ANY, title, wxDefaultPosition, wxSize(750,550),
41f02b9a
FM
315 wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE)
316{
317 SetIcon(wxICON(sample));
88a8b04e 318
3cb332c1 319 // initialize important variables
88a8b04e
RD
320 m_edit = NULL;
321
322 // set icon and background
323 SetTitle (*g_appname);
9a83f860 324 SetBackgroundColour (wxT("WHITE"));
88a8b04e
RD
325
326 // about box shown for 1 seconds
c193de84 327 AppAbout dlg(this, 1000);
88a8b04e
RD
328
329 // create menu
330 m_menuBar = new wxMenuBar;
331 CreateMenu ();
332
333 // open first page
7e126a07 334 m_edit = new Edit (this, wxID_ANY);
88a8b04e 335 m_edit->SetFocus();
9ce192d4 336
9a83f860 337 FileOpen (wxT("stctest.cpp"));
88a8b04e 338}
9ce192d4 339
88a8b04e
RD
340AppFrame::~AppFrame () {
341}
9ce192d4 342
88a8b04e
RD
343// common event handlers
344void AppFrame::OnClose (wxCloseEvent &event) {
345 wxCommandEvent evt;
346 OnFileClose (evt);
347 if (m_edit && m_edit->Modified()) {
348 if (event.CanVeto()) event.Veto (true);
349 return;
350 }
351 Destroy();
9e730a78
RD
352}
353
88a8b04e 354void AppFrame::OnAbout (wxCommandEvent &WXUNUSED(event)) {
c193de84 355 AppAbout dlg(this);
88a8b04e 356}
9e730a78 357
88a8b04e
RD
358void AppFrame::OnExit (wxCommandEvent &WXUNUSED(event)) {
359 Close (true);
360}
9e730a78 361
88a8b04e
RD
362// file event handlers
363void AppFrame::OnFileOpen (wxCommandEvent &WXUNUSED(event)) {
364 if (!m_edit) return;
c54e5eb0 365#if wxUSE_FILEDLG
88a8b04e 366 wxString fname;
9a83f860 367 wxFileDialog dlg (this, wxT("Open file"), wxEmptyString, wxEmptyString, wxT("Any file (*)|*"),
ff3e84ff 368 wxFD_OPEN | wxFD_FILE_MUST_EXIST | wxFD_CHANGE_DIR);
88a8b04e
RD
369 if (dlg.ShowModal() != wxID_OK) return;
370 fname = dlg.GetPath ();
371 FileOpen (fname);
c54e5eb0 372#endif // wxUSE_FILEDLG
88a8b04e
RD
373}
374
375void AppFrame::OnFileSave (wxCommandEvent &WXUNUSED(event)) {
376 if (!m_edit) return;
377 if (!m_edit->Modified()) {
378 wxMessageBox (_("There is nothing to save!"), _("Save file"),
379 wxOK | wxICON_EXCLAMATION);
380 return;
381 }
382 m_edit->SaveFile ();
383}
9ce192d4 384
88a8b04e
RD
385void AppFrame::OnFileSaveAs (wxCommandEvent &WXUNUSED(event)) {
386 if (!m_edit) return;
c54e5eb0 387#if wxUSE_FILEDLG
88a8b04e 388 wxString filename = wxEmptyString;
9a83f860 389 wxFileDialog dlg (this, wxT("Save file"), wxEmptyString, wxEmptyString, wxT("Any file (*)|*"), wxFD_SAVE|wxFD_OVERWRITE_PROMPT);
88a8b04e
RD
390 if (dlg.ShowModal() != wxID_OK) return;
391 filename = dlg.GetPath();
392 m_edit->SaveFile (filename);
c54e5eb0 393#endif // wxUSE_FILEDLG
88a8b04e
RD
394}
395
396void AppFrame::OnFileClose (wxCommandEvent &WXUNUSED(event)) {
397 if (!m_edit) return;
398 if (m_edit->Modified()) {
399 if (wxMessageBox (_("Text is not saved, save before closing?"), _("Close"),
400 wxYES_NO | wxICON_QUESTION) == wxYES) {
401 m_edit->SaveFile();
402 if (m_edit->Modified()) {
403 wxMessageBox (_("Text could not be saved!"), _("Close abort"),
404 wxOK | wxICON_EXCLAMATION);
405 return;
406 }
9e730a78 407 }
88a8b04e 408 }
f4cf4fda
RD
409 m_edit->SetFilename (wxEmptyString);
410 m_edit->ClearAll();
411 m_edit->SetSavePoint();
88a8b04e
RD
412}
413
414// properties event handlers
415void AppFrame::OnProperties (wxCommandEvent &WXUNUSED(event)) {
416 if (!m_edit) return;
c193de84 417 EditProperties dlg(m_edit, 0);
88a8b04e
RD
418}
419
420// print event handlers
421void AppFrame::OnPrintSetup (wxCommandEvent &WXUNUSED(event)) {
c54e5eb0 422#if wxUSE_PRINTING_ARCHITECTURE
88a8b04e
RD
423 (*g_pageSetupData) = * g_printData;
424 wxPageSetupDialog pageSetupDialog(this, g_pageSetupData);
425 pageSetupDialog.ShowModal();
426 (*g_printData) = pageSetupDialog.GetPageSetupData().GetPrintData();
427 (*g_pageSetupData) = pageSetupDialog.GetPageSetupData();
c54e5eb0 428#endif // wxUSE_PRINTING_ARCHITECTURE
88a8b04e
RD
429}
430
431void AppFrame::OnPrintPreview (wxCommandEvent &WXUNUSED(event)) {
c54e5eb0 432#if wxUSE_PRINTING_ARCHITECTURE
88a8b04e
RD
433 wxPrintDialogData printDialogData( *g_printData);
434 wxPrintPreview *preview =
435 new wxPrintPreview (new EditPrint (m_edit),
436 new EditPrint (m_edit),
437 &printDialogData);
438 if (!preview->Ok()) {
439 delete preview;
440 wxMessageBox (_("There was a problem with previewing.\n\
441 Perhaps your current printer is not correctly?"),
442 _("Previewing"), wxOK);
443 return;
444 }
445 wxRect rect = DeterminePrintSize();
446 wxPreviewFrame *frame = new wxPreviewFrame (preview, this, _("Print Preview"));
447 frame->SetSize (rect);
448 frame->Centre(wxBOTH);
449 frame->Initialize();
450 frame->Show(true);
c54e5eb0 451#endif // wxUSE_PRINTING_ARCHITECTURE
88a8b04e
RD
452}
453
454void AppFrame::OnPrint (wxCommandEvent &WXUNUSED(event)) {
c54e5eb0 455#if wxUSE_PRINTING_ARCHITECTURE
88a8b04e
RD
456 wxPrintDialogData printDialogData( *g_printData);
457 wxPrinter printer (&printDialogData);
458 EditPrint printout (m_edit);
459 if (!printer.Print (this, &printout, true)) {
460 if (wxPrinter::GetLastError() == wxPRINTER_ERROR) {
461 wxMessageBox (_("There was a problem with printing.\n\
462 Perhaps your current printer is not correctly?"),
463 _("Previewing"), wxOK);
464 return;
9e730a78
RD
465 }
466 }
88a8b04e 467 (*g_printData) = printer.GetPrintDialogData().GetPrintData();
c54e5eb0 468#endif // wxUSE_PRINTING_ARCHITECTURE
88a8b04e
RD
469}
470
471// edit events
472void AppFrame::OnEdit (wxCommandEvent &event) {
004867db 473 if (m_edit) m_edit->GetEventHandler()->ProcessEvent (event);
88a8b04e
RD
474}
475
476// private functions
c54e5eb0
WS
477void AppFrame::CreateMenu ()
478{
88a8b04e
RD
479 // File menu
480 wxMenu *menuFile = new wxMenu;
481 menuFile->Append (wxID_OPEN, _("&Open ..\tCtrl+O"));
482 menuFile->Append (wxID_SAVE, _("&Save\tCtrl+S"));
483 menuFile->Append (wxID_SAVEAS, _("Save &as ..\tCtrl+Shift+S"));
484 menuFile->Append (wxID_CLOSE, _("&Close\tCtrl+W"));
485 menuFile->AppendSeparator();
486 menuFile->Append (myID_PROPERTIES, _("Proper&ties ..\tCtrl+I"));
487 menuFile->AppendSeparator();
488 menuFile->Append (wxID_PRINT_SETUP, _("Print Set&up .."));
489 menuFile->Append (wxID_PREVIEW, _("Print Pre&view\tCtrl+Shift+P"));
490 menuFile->Append (wxID_PRINT, _("&Print ..\tCtrl+P"));
491 menuFile->AppendSeparator();
492 menuFile->Append (wxID_EXIT, _("&Quit\tCtrl+Q"));
493
494 // Edit menu
495 wxMenu *menuEdit = new wxMenu;
496 menuEdit->Append (wxID_UNDO, _("&Undo\tCtrl+Z"));
497 menuEdit->Append (wxID_REDO, _("&Redo\tCtrl+Shift+Z"));
498 menuEdit->AppendSeparator();
499 menuEdit->Append (wxID_CUT, _("Cu&t\tCtrl+X"));
500 menuEdit->Append (wxID_COPY, _("&Copy\tCtrl+C"));
501 menuEdit->Append (wxID_PASTE, _("&Paste\tCtrl+V"));
502 menuEdit->Append (wxID_CLEAR, _("&Delete\tDel"));
503 menuEdit->AppendSeparator();
504 menuEdit->Append (wxID_FIND, _("&Find\tCtrl+F"));
505 menuEdit->Enable (wxID_FIND, false);
506 menuEdit->Append (myID_FINDNEXT, _("Find &next\tF3"));
507 menuEdit->Enable (myID_FINDNEXT, false);
508 menuEdit->Append (myID_REPLACE, _("&Replace\tCtrl+H"));
509 menuEdit->Enable (myID_REPLACE, false);
510 menuEdit->Append (myID_REPLACENEXT, _("Replace &again\tShift+F4"));
511 menuEdit->Enable (myID_REPLACENEXT, false);
512 menuEdit->AppendSeparator();
513 menuEdit->Append (myID_BRACEMATCH, _("&Match brace\tCtrl+M"));
514 menuEdit->Append (myID_GOTO, _("&Goto\tCtrl+G"));
515 menuEdit->Enable (myID_GOTO, false);
516 menuEdit->AppendSeparator();
517 menuEdit->Append (myID_INDENTINC, _("&Indent increase\tTab"));
588ba237 518 menuEdit->Append (myID_INDENTRED, _("I&ndent reduce\tShift+Tab"));
88a8b04e
RD
519 menuEdit->AppendSeparator();
520 menuEdit->Append (wxID_SELECTALL, _("&Select all\tCtrl+A"));
521 menuEdit->Append (myID_SELECTLINE, _("Select &line\tCtrl+L"));
522
523 // hilight submenu
524 wxMenu *menuHilight = new wxMenu;
525 int Nr;
526 for (Nr = 0; Nr < g_LanguagePrefsSize; Nr++) {
527 menuHilight->Append (myID_HILIGHTFIRST + Nr,
528 g_LanguagePrefs [Nr].name);
529 }
530
531 // charset submenu
532 wxMenu *menuCharset = new wxMenu;
533 menuCharset->Append (myID_CHARSETANSI, _("&ANSI (Windows)"));
534 menuCharset->Append (myID_CHARSETMAC, _("&MAC (Macintosh)"));
535
536 // View menu
537 wxMenu *menuView = new wxMenu;
538 menuView->Append (myID_HILIGHTLANG, _("&Hilight language .."), menuHilight);
539 menuView->AppendSeparator();
540 menuView->AppendCheckItem (myID_FOLDTOGGLE, _("&Toggle current fold\tCtrl+T"));
541 menuView->AppendCheckItem (myID_OVERTYPE, _("&Overwrite mode\tIns"));
542 menuView->AppendCheckItem (myID_WRAPMODEON, _("&Wrap mode\tCtrl+U"));
543 menuView->AppendSeparator();
544 menuView->AppendCheckItem (myID_DISPLAYEOL, _("Show line &endings"));
545 menuView->AppendCheckItem (myID_INDENTGUIDE, _("Show &indent guides"));
546 menuView->AppendCheckItem (myID_LINENUMBER, _("Show line &numbers"));
547 menuView->AppendCheckItem (myID_LONGLINEON, _("Show &long line marker"));
548 menuView->AppendCheckItem (myID_WHITESPACE, _("Show white&space"));
549 menuView->AppendSeparator();
550 menuView->Append (myID_USECHARSET, _("Use &code page of .."), menuCharset);
551
552 // change case submenu
553 wxMenu *menuChangeCase = new wxMenu;
554 menuChangeCase->Append (myID_CHANGEUPPER, _("&Upper case"));
555 menuChangeCase->Append (myID_CHANGELOWER, _("&Lower case"));
556
557 // convert EOL submenu
558 wxMenu *menuConvertEOL = new wxMenu;
559 menuConvertEOL->Append (myID_CONVERTCR, _("CR (&Linux)"));
560 menuConvertEOL->Append (myID_CONVERTCRLF, _("CR+LF (&Windows)"));
561 menuConvertEOL->Append (myID_CONVERTLF, _("LF (&Macintosh)"));
562
563 // Extra menu
564 wxMenu *menuExtra = new wxMenu;
565 menuExtra->AppendCheckItem (myID_READONLY, _("&Readonly mode"));
566 menuExtra->AppendSeparator();
567 menuExtra->Append (myID_CHANGECASE, _("Change &case to .."), menuChangeCase);
568 menuExtra->AppendSeparator();
569 menuExtra->Append (myID_CONVERTEOL, _("Convert line &endings to .."), menuConvertEOL);
570
571 // Window menu
572 wxMenu *menuWindow = new wxMenu;
573 menuWindow->Append (myID_PAGEPREV, _("&Previous\tCtrl+Shift+Tab"));
574 menuWindow->Append (myID_PAGENEXT, _("&Next\tCtrl+Tab"));
c50e0cc7 575 menuWindow->Append(myID_WINDOW_MINIMAL, _("&Minimal editor"));
88a8b04e
RD
576
577 // Help menu
578 wxMenu *menuHelp = new wxMenu;
579 menuHelp->Append (wxID_ABOUT, _("&About ..\tShift+F1"));
580
581 // construct menu
582 m_menuBar->Append (menuFile, _("&File"));
583 m_menuBar->Append (menuEdit, _("&Edit"));
584 m_menuBar->Append (menuView, _("&View"));
585 m_menuBar->Append (menuExtra, _("E&xtra"));
586 m_menuBar->Append (menuWindow, _("&Window"));
587 m_menuBar->Append (menuHelp, _("&Help"));
588 SetMenuBar (m_menuBar);
88a8b04e
RD
589}
590
c54e5eb0
WS
591void AppFrame::FileOpen (wxString fname)
592{
88a8b04e
RD
593 wxFileName w(fname); w.Normalize(); fname = w.GetFullPath();
594 m_edit->LoadFile (fname);
9ce192d4 595}
88a8b04e
RD
596
597wxRect AppFrame::DeterminePrintSize () {
598
599 wxSize scr = wxGetDisplaySize();
600
601 // determine position and size (shifting 16 left and down)
602 wxRect rect = GetRect();
603 rect.x += 16;
604 rect.y += 16;
605 rect.width = wxMin (rect.width, (scr.x - rect.x));
606 rect.height = wxMin (rect.height, (scr.x - rect.y));
607
608 return rect;
609}
610
611
612//----------------------------------------------------------------------------
613// AppAbout
614//----------------------------------------------------------------------------
615
616BEGIN_EVENT_TABLE (AppAbout, wxDialog)
617 EVT_TIMER (myID_ABOUTTIMER, AppAbout::OnTimerEvent)
618END_EVENT_TABLE ()
619
620AppAbout::AppAbout (wxWindow *parent,
621 int milliseconds,
622 long style)
7e126a07 623 : wxDialog (parent, wxID_ANY, wxEmptyString,
88a8b04e 624 wxDefaultPosition, wxDefaultSize,
0e974385 625 style | wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) {
88a8b04e
RD
626
627 // set timer if any
628 m_timer = NULL;
629 if (milliseconds > 0) {
630 m_timer = new wxTimer (this, myID_ABOUTTIMER);
631 m_timer->Start (milliseconds, wxTIMER_ONE_SHOT);
632 }
633
634 // sets the application title
635 SetTitle (_("About .."));
636
637 // about info
638 wxGridSizer *aboutinfo = new wxGridSizer (2, 0, 2);
7e126a07 639 aboutinfo->Add (new wxStaticText(this, wxID_ANY, _("Written by: ")),
88a8b04e 640 0, wxALIGN_LEFT);
7e126a07 641 aboutinfo->Add (new wxStaticText(this, wxID_ANY, APP_MAINT),
88a8b04e 642 1, wxEXPAND | wxALIGN_LEFT);
7e126a07 643 aboutinfo->Add (new wxStaticText(this, wxID_ANY, _("Version: ")),
88a8b04e 644 0, wxALIGN_LEFT);
7e126a07 645 aboutinfo->Add (new wxStaticText(this, wxID_ANY, APP_VERSION),
88a8b04e 646 1, wxEXPAND | wxALIGN_LEFT);
7e126a07 647 aboutinfo->Add (new wxStaticText(this, wxID_ANY, _("Licence type: ")),
88a8b04e 648 0, wxALIGN_LEFT);
7e126a07 649 aboutinfo->Add (new wxStaticText(this, wxID_ANY, APP_LICENCE),
88a8b04e 650 1, wxEXPAND | wxALIGN_LEFT);
7e126a07 651 aboutinfo->Add (new wxStaticText(this, wxID_ANY, _("Copyright: ")),
88a8b04e 652 0, wxALIGN_LEFT);
7e126a07 653 aboutinfo->Add (new wxStaticText(this, wxID_ANY, APP_COPYRIGTH),
88a8b04e
RD
654 1, wxEXPAND | wxALIGN_LEFT);
655
656 // about icontitle//info
657 wxBoxSizer *aboutpane = new wxBoxSizer (wxHORIZONTAL);
3cb332c1 658 wxBitmap bitmap = wxBitmap(wxICON (sample));
7e126a07 659 aboutpane->Add (new wxStaticBitmap (this, wxID_ANY, bitmap),
88a8b04e
RD
660 0, wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 20);
661 aboutpane->Add (aboutinfo, 1, wxEXPAND);
662 aboutpane->Add (60, 0);
663
664 // about complete
665 wxBoxSizer *totalpane = new wxBoxSizer (wxVERTICAL);
666 totalpane->Add (0, 20);
7e126a07 667 wxStaticText *appname = new wxStaticText(this, wxID_ANY, *g_appname);
88a8b04e
RD
668 appname->SetFont (wxFont (24, wxDEFAULT, wxNORMAL, wxBOLD));
669 totalpane->Add (appname, 0, wxALIGN_CENTER | wxLEFT | wxRIGHT, 40);
670 totalpane->Add (0, 10);
671 totalpane->Add (aboutpane, 0, wxEXPAND | wxALL, 4);
7e126a07 672 totalpane->Add (new wxStaticText(this, wxID_ANY, APP_DESCR),
88a8b04e
RD
673 0, wxALIGN_CENTER | wxALL, 10);
674 wxButton *okButton = new wxButton (this, wxID_OK, _("OK"));
675 okButton->SetDefault();
676 totalpane->Add (okButton, 0, wxALIGN_CENTER | wxLEFT | wxRIGHT | wxBOTTOM, 10);
677
678 SetSizerAndFit (totalpane);
679
f4cf4fda 680 CenterOnScreen();
88a8b04e
RD
681 ShowModal();
682}
683
684AppAbout::~AppAbout () {
685 if (m_timer) {
686 delete m_timer;
687 m_timer = NULL;
688 }
689}
690
691//----------------------------------------------------------------------------
692// event handlers
0e974385 693void AppAbout::OnTimerEvent (wxTimerEvent &WXUNUSED(event)) {
88a8b04e
RD
694 if (m_timer) delete m_timer;
695 m_timer = NULL;
696 EndModal (wxID_OK);
697}
c50e0cc7
JS
698
699/////////////////////////////////////////////////////////////////////////////
700// Minimal editor added by Troels K 2008-04-08
701// Thanks to geralds for SetLexerXml() - http://wxforum.shadonet.com/viewtopic.php?t=7155
702
703class MinimalEditor : public wxStyledTextCtrl
704{
705 enum
706 {
707 margin_id_lineno,
708 margin_id_fold,
709 };
710
711public:
712 MinimalEditor(wxWindow* parent, wxWindowID id = wxID_ANY) : wxStyledTextCtrl(parent, id)
713 {
714 SetLexerXml();
715
716 SetProperty(wxT("fold"), wxT("1"));
717 SetProperty(wxT("fold.comment"), wxT("1"));
718 SetProperty(wxT("fold.compact"), wxT("1"));
719 SetProperty(wxT("fold.preprocessor"), wxT("1"));
720 SetProperty(wxT("fold.html"), wxT("1"));
721 SetProperty(wxT("fold.html.preprocessor"), wxT("1"));
722
723 SetMarginType(margin_id_lineno, wxSTC_MARGIN_NUMBER);
724 SetMarginWidth(margin_id_lineno, 32);
725
726 MarkerDefine(wxSTC_MARKNUM_FOLDER, wxSTC_MARK_BOXPLUS, wxT("WHITE"), wxT("BLACK"));
727 MarkerDefine(wxSTC_MARKNUM_FOLDEROPEN, wxSTC_MARK_BOXMINUS, wxT("WHITE"), wxT("BLACK"));
728 MarkerDefine(wxSTC_MARKNUM_FOLDERSUB, wxSTC_MARK_VLINE, wxT("WHITE"), wxT("BLACK"));
729 MarkerDefine(wxSTC_MARKNUM_FOLDEREND, wxSTC_MARK_BOXPLUSCONNECTED, wxT("WHITE"), wxT("BLACK"));
730 MarkerDefine(wxSTC_MARKNUM_FOLDEROPENMID, wxSTC_MARK_BOXMINUSCONNECTED, wxT("WHITE"), wxT("BLACK"));
731 MarkerDefine(wxSTC_MARKNUM_FOLDERMIDTAIL, wxSTC_MARK_TCORNER, wxT("WHITE"), wxT("BLACK"));
732 MarkerDefine(wxSTC_MARKNUM_FOLDERTAIL, wxSTC_MARK_LCORNER, wxT("WHITE"), wxT("BLACK"));
733
734 SetMarginMask(margin_id_fold, wxSTC_MASK_FOLDERS);
735 SetMarginWidth(margin_id_fold, 32);
736 SetMarginSensitive(margin_id_fold, true);
737
738 SetFoldFlags(wxSTC_FOLDFLAG_LINEBEFORE_CONTRACTED | wxSTC_FOLDFLAG_LINEAFTER_CONTRACTED);
739
740 SetTabWidth(4);
741 SetUseTabs(false);
742 SetWrapMode(wxSTC_WRAP_WORD);
743 SetWrapVisualFlags(wxSTC_WRAPVISUALFLAG_END);
744 }
745 virtual bool SetFont(const wxFont& font)
746 {
747 StyleSetFont(wxSTC_STYLE_DEFAULT, (wxFont&)font);
748 return wxStyledTextCtrl::SetFont(font);
749 }
750 void SetLexerXml()
751 {
752 SetLexer(wxSTC_LEX_XML);
753 StyleSetForeground(wxSTC_H_DEFAULT, *wxBLACK);
754 StyleSetForeground(wxSTC_H_TAG, *wxBLUE);
755 StyleSetForeground(wxSTC_H_TAGUNKNOWN, *wxBLUE);
756 StyleSetForeground(wxSTC_H_ATTRIBUTE, *wxRED);
757 StyleSetForeground(wxSTC_H_ATTRIBUTEUNKNOWN, *wxRED);
758 StyleSetBold(wxSTC_H_ATTRIBUTEUNKNOWN, true);
759 StyleSetForeground(wxSTC_H_NUMBER, *wxBLACK);
760 StyleSetForeground(wxSTC_H_DOUBLESTRING, *wxBLACK);
761 StyleSetForeground(wxSTC_H_SINGLESTRING, *wxBLACK);
762 StyleSetForeground(wxSTC_H_OTHER, *wxBLUE);
763 StyleSetForeground(wxSTC_H_COMMENT, wxTheColourDatabase->Find(wxT("GREY")));
764 StyleSetForeground(wxSTC_H_ENTITY, *wxRED);
765 StyleSetBold(wxSTC_H_ENTITY, true);
766 StyleSetForeground(wxSTC_H_TAGEND, *wxBLUE);
767 StyleSetForeground(wxSTC_H_XMLSTART, *wxBLUE);
768 StyleSetForeground(wxSTC_H_XMLEND, *wxBLUE);
769 StyleSetForeground(wxSTC_H_CDATA, *wxRED);
770 }
771protected:
772 void OnMarginClick(wxStyledTextEvent&);
773 void OnText(wxStyledTextEvent&);
774 DECLARE_EVENT_TABLE()
775};
776
777BEGIN_EVENT_TABLE(MinimalEditor, wxStyledTextCtrl)
778 EVT_STC_MARGINCLICK(wxID_ANY, MinimalEditor::OnMarginClick)
779 EVT_STC_CHANGE(wxID_ANY, MinimalEditor::OnText)
780END_EVENT_TABLE()
781
782void MinimalEditor::OnMarginClick(wxStyledTextEvent &event)
783{
784 if (event.GetMargin() == margin_id_fold)
785 {
786 int lineClick = LineFromPosition(event.GetPosition());
787 int levelClick = GetFoldLevel(lineClick);
788 if ((levelClick & wxSTC_FOLDLEVELHEADERFLAG) > 0)
789 {
790 ToggleFold(lineClick);
791 }
792 }
793}
794
795void MinimalEditor::OnText(wxStyledTextEvent& event)
796{
797 wxLogDebug(wxT("Modified"));
798 event.Skip();
799}
800
801class MinimalEditorFrame : public wxFrame
802{
803public:
804 MinimalEditorFrame() : wxFrame(NULL, wxID_ANY, _("Minimal Editor"))
805 {
806 MinimalEditor* editor = new MinimalEditor(this);
807 editor->SetFont(wxSystemSettings::GetFont(wxSYS_ANSI_FIXED_FONT));
808 wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
809 sizer->Add(editor, 1, wxEXPAND);
810 SetSizer(sizer);
811 editor->SetText(
812 "<xml>\n"
813 " <text>\n"
814 " This is xml with syntax highlighting, line numbers, folding, word wrap and context menu\n"
815 " </text>\n"
816 "</xml>"
817 );
818 }
819};
820
821wxFrame* App::MinimalEditor()
822{
823 MinimalEditorFrame* frame = new MinimalEditorFrame;
824 frame->Show();
825 return frame;
826}
827
828void App::OnMinimalEditor(wxCommandEvent& WXUNUSED(event))
829{
830 MinimalEditor();
831}
832