1 //////////////////////////////////////////////////////////////////////////////
3 // Purpose: STC test module
7 // Copyright: (c) wxGuide
8 // Licence: wxWindows licence
9 //////////////////////////////////////////////////////////////////////////////
11 //----------------------------------------------------------------------------
13 //----------------------------------------------------------------------------
16 //----------------------------------------------------------------------------
18 //----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes <wx/wx.h>.
21 #include <wx/wxprec.h>
27 // for all others, include the necessary headers (this file is usually all you
28 // need because it includes almost all 'standard' wxWindows headers)
34 #include <wx/file.h> // raw file io support
35 #include <wx/filename.h> // filename support
37 //! application headers
38 #include "defsext.h" // additional definitions
40 #include "edit.h" // edit module
43 //----------------------------------------------------------------------------
45 //----------------------------------------------------------------------------
48 //============================================================================
50 //============================================================================
53 //============================================================================
55 //============================================================================
57 //----------------------------------------------------------------------------
59 //----------------------------------------------------------------------------
61 BEGIN_EVENT_TABLE (Edit
, wxStyledTextCtrl
)
63 EVT_SIZE ( Edit::OnSize
)
65 EVT_MENU (wxID_CLEAR
, Edit::OnEditClear
)
66 EVT_MENU (wxID_CUT
, Edit::OnEditCut
)
67 EVT_MENU (wxID_COPY
, Edit::OnEditCopy
)
68 EVT_MENU (wxID_PASTE
, Edit::OnEditPaste
)
69 EVT_MENU (myID_INDENTINC
, Edit::OnEditIndentInc
)
70 EVT_MENU (myID_INDENTRED
, Edit::OnEditIndentRed
)
71 EVT_MENU (wxID_SELECTALL
, Edit::OnEditSelectAll
)
72 EVT_MENU (myID_SELECTLINE
, Edit::OnEditSelectLine
)
73 EVT_MENU (wxID_REDO
, Edit::OnEditRedo
)
74 EVT_MENU (wxID_UNDO
, Edit::OnEditUndo
)
76 EVT_MENU (wxID_FIND
, Edit::OnFind
)
77 EVT_MENU (myID_FINDNEXT
, Edit::OnFindNext
)
78 EVT_MENU (myID_REPLACE
, Edit::OnReplace
)
79 EVT_MENU (myID_REPLACENEXT
, Edit::OnReplaceNext
)
80 EVT_MENU (myID_BRACEMATCH
, Edit::OnBraceMatch
)
81 EVT_MENU (myID_GOTO
, Edit::OnGoto
)
83 EVT_MENU_RANGE (myID_HILIGHTFIRST
, myID_HILIGHTLAST
,
85 EVT_MENU (myID_DISPLAYEOL
, Edit::OnDisplayEOL
)
86 EVT_MENU (myID_INDENTGUIDE
, Edit::OnIndentGuide
)
87 EVT_MENU (myID_LINENUMBER
, Edit::OnLineNumber
)
88 EVT_MENU (myID_LONGLINEON
, Edit::OnLongLineOn
)
89 EVT_MENU (myID_WHITESPACE
, Edit::OnWhiteSpace
)
90 EVT_MENU (myID_FOLDTOGGLE
, Edit::OnFoldToggle
)
91 EVT_MENU (myID_OVERTYPE
, Edit::OnSetOverType
)
92 EVT_MENU (myID_READONLY
, Edit::OnSetReadOnly
)
93 EVT_MENU (myID_WRAPMODEON
, Edit::OnWrapmodeOn
)
94 EVT_MENU (myID_CHARSETANSI
, Edit::OnUseCharset
)
95 EVT_MENU (myID_CHARSETMAC
, Edit::OnUseCharset
)
97 EVT_MENU (myID_CHANGELOWER
, Edit::OnChangeCase
)
98 EVT_MENU (myID_CHANGEUPPER
, Edit::OnChangeCase
)
99 EVT_MENU (myID_CONVERTCR
, Edit::OnConvertEOL
)
100 EVT_MENU (myID_CONVERTCRLF
, Edit::OnConvertEOL
)
101 EVT_MENU (myID_CONVERTLF
, Edit::OnConvertEOL
)
103 EVT_STC_MARGINCLICK (-1, Edit::OnMarginClick
)
104 EVT_STC_CHARADDED (-1, Edit::OnCharAdded
)
107 Edit::Edit (wxWindow
*parent
, wxWindowID id
,
111 : wxStyledTextCtrl (parent
, id
, pos
, size
, style
) {
119 // initialize language
122 // default font for all styles
123 SetViewEOL (g_CommonPrefs
.displayEOLEnable
);
124 SetIndentationGuides (g_CommonPrefs
.indentGuideEnable
);
125 SetEdgeMode (g_CommonPrefs
.longLineOnEnable
?
126 wxSTC_EDGE_LINE
: wxSTC_EDGE_NONE
);
127 SetViewWhiteSpace (g_CommonPrefs
.whiteSpaceEnable
?
128 wxSTC_WS_VISIBLEALWAYS
: wxSTC_WS_INVISIBLE
);
129 SetOvertype (g_CommonPrefs
.overTypeInitial
);
130 SetReadOnly (g_CommonPrefs
.readOnlyInitial
);
131 SetWrapMode (g_CommonPrefs
.wrapModeInitial
?
132 wxSTC_WRAP_WORD
: wxSTC_WRAP_NONE
);
133 wxFont
font (10, wxMODERN
, wxNORMAL
, wxNORMAL
);
134 StyleSetFont (wxSTC_STYLE_DEFAULT
, font
);
135 StyleSetForeground (wxSTC_STYLE_DEFAULT
, wxColour (_T("BLACK")));
136 StyleSetBackground (wxSTC_STYLE_DEFAULT
, wxColour (_T("WHITE")));
137 StyleSetForeground (wxSTC_STYLE_LINENUMBER
, wxColour (_T("DARK GREY")));
138 StyleSetBackground (wxSTC_STYLE_LINENUMBER
, wxColour (_T("WHITE")));
139 StyleSetForeground(wxSTC_STYLE_INDENTGUIDE
, wxColour (_T("DARK GREY")));
140 InitializePrefs (DEFAULT_LANGUAGE
);
143 SetVisiblePolicy (wxSTC_VISIBLE_STRICT
|wxSTC_VISIBLE_SLOP
, 1);
144 SetXCaretPolicy (wxSTC_CARET_EVEN
|wxSTC_VISIBLE_STRICT
|wxSTC_CARET_SLOP
, 1);
145 SetYCaretPolicy (wxSTC_CARET_EVEN
|wxSTC_VISIBLE_STRICT
|wxSTC_CARET_SLOP
, 1);
148 MarkerDefine (wxSTC_MARKNUM_FOLDER
, wxSTC_MARK_DOTDOTDOT
, _T("BLACK"), _T("BLACK"));
149 MarkerDefine (wxSTC_MARKNUM_FOLDEROPEN
, wxSTC_MARK_ARROWDOWN
, _T("BLACK"), _T("BLACK"));
150 MarkerDefine (wxSTC_MARKNUM_FOLDERSUB
, wxSTC_MARK_EMPTY
, _T("BLACK"), _T("BLACK"));
151 MarkerDefine (wxSTC_MARKNUM_FOLDEREND
, wxSTC_MARK_DOTDOTDOT
, _T("BLACK"), _T("WHITE"));
152 MarkerDefine (wxSTC_MARKNUM_FOLDEROPENMID
, wxSTC_MARK_ARROWDOWN
, _T("BLACK"), _T("WHITE"));
153 MarkerDefine (wxSTC_MARKNUM_FOLDERMIDTAIL
, wxSTC_MARK_EMPTY
, _T("BLACK"), _T("BLACK"));
154 MarkerDefine (wxSTC_MARKNUM_FOLDERTAIL
, wxSTC_MARK_EMPTY
, _T("BLACK"), _T("BLACK"));
157 m_LineNrMargin
= TextWidth (wxSTC_STYLE_LINENUMBER
, _T("_999999"));
158 m_FoldingMargin
= 16;
159 CmdKeyClear (wxSTC_KEY_TAB
, 0); // this is done by the menu accelerator key
160 SetLayoutCache (wxSTC_CACHE_PAGE
);
166 //----------------------------------------------------------------------------
167 // common event handlers
168 void Edit::OnSize( wxSizeEvent
& event
) {
169 int x
= GetClientSize().x
+
170 (g_CommonPrefs
.lineNumberEnable
? m_LineNrMargin
: 0) +
171 (g_CommonPrefs
.foldEnable
? m_FoldingMargin
: 0);
172 if (x
> 0) SetScrollWidth (x
);
176 // edit event handlers
177 void Edit::OnEditRedo (wxCommandEvent
&WXUNUSED(event
)) {
178 if (!CanRedo()) return;
182 void Edit::OnEditUndo (wxCommandEvent
&WXUNUSED(event
)) {
183 if (!CanUndo()) return;
187 void Edit::OnEditClear (wxCommandEvent
&WXUNUSED(event
)) {
188 if (GetReadOnly()) return;
192 void Edit::OnEditCut (wxCommandEvent
&WXUNUSED(event
)) {
193 if (GetReadOnly() || (GetSelectionEnd()-GetSelectionStart() <= 0)) return;
197 void Edit::OnEditCopy (wxCommandEvent
&WXUNUSED(event
)) {
198 if (GetSelectionEnd()-GetSelectionStart() <= 0) return;
202 void Edit::OnEditPaste (wxCommandEvent
&WXUNUSED(event
)) {
203 if (!CanPaste()) return;
207 void Edit::OnFind (wxCommandEvent
&WXUNUSED(event
)) {
210 void Edit::OnFindNext (wxCommandEvent
&WXUNUSED(event
)) {
213 void Edit::OnReplace (wxCommandEvent
&WXUNUSED(event
)) {
216 void Edit::OnReplaceNext (wxCommandEvent
&WXUNUSED(event
)) {
219 void Edit::OnBraceMatch (wxCommandEvent
&WXUNUSED(event
)) {
220 int min
= GetCurrentPos ();
221 int max
= BraceMatch (min
);
223 BraceHighlight (min
+1, max
);
224 SetSelection (min
+1, max
);
230 void Edit::OnGoto (wxCommandEvent
&WXUNUSED(event
)) {
233 void Edit::OnEditIndentInc (wxCommandEvent
&WXUNUSED(event
)) {
234 CmdKeyExecute (wxSTC_CMD_TAB
);
237 void Edit::OnEditIndentRed (wxCommandEvent
&WXUNUSED(event
)) {
238 CmdKeyExecute (wxSTC_CMD_DELETEBACK
);
241 void Edit::OnEditSelectAll (wxCommandEvent
&WXUNUSED(event
)) {
242 SetSelection (0, GetTextLength ());
245 void Edit::OnEditSelectLine (wxCommandEvent
&WXUNUSED(event
)) {
246 int lineStart
= PositionFromLine (GetCurrentLine());
247 int lineEnd
= PositionFromLine (GetCurrentLine() + 1);
248 SetSelection (lineStart
, lineEnd
);
251 void Edit::OnHilightLang (wxCommandEvent
&event
) {
252 InitializePrefs (g_LanguagePrefs
[event
.GetId() - myID_HILIGHTFIRST
].name
);
255 void Edit::OnDisplayEOL (wxCommandEvent
&WXUNUSED(event
)) {
256 SetViewEOL (!GetViewEOL());
259 void Edit::OnIndentGuide (wxCommandEvent
&WXUNUSED(event
)) {
260 SetIndentationGuides (!GetIndentationGuides());
263 void Edit::OnLineNumber (wxCommandEvent
&WXUNUSED(event
)) {
264 SetMarginWidth (m_LineNrID
,
265 GetMarginWidth (m_LineNrID
) == 0? m_LineNrMargin
: 0);
268 void Edit::OnLongLineOn (wxCommandEvent
&WXUNUSED(event
)) {
269 SetEdgeMode (GetEdgeMode() == 0? wxSTC_EDGE_LINE
: wxSTC_EDGE_NONE
);
272 void Edit::OnWhiteSpace (wxCommandEvent
&WXUNUSED(event
)) {
273 SetViewWhiteSpace (GetViewWhiteSpace() == 0?
274 wxSTC_WS_VISIBLEALWAYS
: wxSTC_WS_INVISIBLE
);
277 void Edit::OnFoldToggle (wxCommandEvent
&WXUNUSED(event
)) {
278 ToggleFold (GetFoldParent(GetCurrentLine()));
281 void Edit::OnSetOverType (wxCommandEvent
&WXUNUSED(event
)) {
282 SetOvertype (!GetOvertype());
285 void Edit::OnSetReadOnly (wxCommandEvent
&WXUNUSED(event
)) {
286 SetReadOnly (!GetReadOnly());
289 void Edit::OnWrapmodeOn (wxCommandEvent
&WXUNUSED(event
)) {
290 SetWrapMode (GetWrapMode() == 0? wxSTC_WRAP_WORD
: wxSTC_WRAP_NONE
);
293 void Edit::OnUseCharset (wxCommandEvent
&event
) {
295 int charset
= GetCodePage();
296 switch (event
.GetId()) {
297 case myID_CHARSETANSI
: {charset
= wxSTC_CHARSET_ANSI
; break;}
298 case myID_CHARSETMAC
: {charset
= wxSTC_CHARSET_ANSI
; break;}
300 for (Nr
= 0; Nr
< wxSTC_STYLE_LASTPREDEFINED
; Nr
++) {
301 StyleSetCharacterSet (Nr
, charset
);
303 SetCodePage (charset
);
306 void Edit::OnChangeCase (wxCommandEvent
&event
) {
307 switch (event
.GetId()) {
308 case myID_CHANGELOWER
: {
309 CmdKeyExecute (wxSTC_CMD_LOWERCASE
);
312 case myID_CHANGEUPPER
: {
313 CmdKeyExecute (wxSTC_CMD_UPPERCASE
);
319 void Edit::OnConvertEOL (wxCommandEvent
&event
) {
320 int eolMode
= GetEOLMode();
321 switch (event
.GetId()) {
322 case myID_CONVERTCR
: { eolMode
= wxSTC_EOL_CR
; break;}
323 case myID_CONVERTCRLF
: { eolMode
= wxSTC_EOL_CRLF
; break;}
324 case myID_CONVERTLF
: { eolMode
= wxSTC_EOL_LF
; break;}
326 ConvertEOLs (eolMode
);
327 SetEOLMode (eolMode
);
331 void Edit::OnMarginClick (wxStyledTextEvent
&event
) {
332 if (event
.GetMargin() == 2) {
333 int lineClick
= LineFromPosition (event
.GetPosition());
334 int levelClick
= GetFoldLevel (lineClick
);
335 if ((levelClick
& wxSTC_FOLDLEVELHEADERFLAG
) > 0) {
336 ToggleFold (lineClick
);
341 void Edit::OnCharAdded (wxStyledTextEvent
&event
) {
342 char chr
= event
.GetKey();
343 int currentLine
= GetCurrentLine();
344 // Change this if support for mac files with \r is needed
347 if (currentLine
> 0) {
348 lineInd
= GetLineIndentation(currentLine
- 1);
350 if (lineInd
== 0) return;
351 SetLineIndentation (currentLine
, lineInd
);
352 GotoPos(PositionFromLine (currentLine
) + lineInd
);
357 //----------------------------------------------------------------------------
359 wxString
Edit::DeterminePrefs (const wxString
&filename
) {
361 LanguageInfo
const* curInfo
;
363 // determine language from filepatterns
365 for (languageNr
= 0; languageNr
< g_LanguagePrefsSize
; languageNr
++) {
366 curInfo
= &g_LanguagePrefs
[languageNr
];
367 wxString filepattern
= curInfo
->filepattern
;
369 while (!filepattern
.IsEmpty()) {
370 wxString cur
= filepattern
.BeforeFirst (';');
371 if ((cur
== filename
) ||
372 (cur
== (filename
.BeforeLast ('.') + _T(".*"))) ||
373 (cur
== (_T("*.") + filename
.AfterLast ('.')))) {
374 return curInfo
->name
;
376 filepattern
= filepattern
.AfterFirst (';');
379 return wxEmptyString
;
383 bool Edit::InitializePrefs (const wxString
&name
) {
387 LanguageInfo
const* curInfo
= NULL
;
389 // determine language
392 for (languageNr
= 0; languageNr
< g_LanguagePrefsSize
; languageNr
++) {
393 curInfo
= &g_LanguagePrefs
[languageNr
];
394 if (curInfo
->name
== name
) {
399 if (!found
) return false;
401 // set lexer and language
402 SetLexer (curInfo
->lexer
);
403 m_language
= curInfo
;
405 // set margin for line numbers
406 SetMarginType (m_LineNrID
, wxSTC_MARGIN_NUMBER
);
407 StyleSetForeground (wxSTC_STYLE_LINENUMBER
, wxColour (_T("DARK GREY")));
408 StyleSetBackground (wxSTC_STYLE_LINENUMBER
, wxColour (_T("WHITE")));
409 SetMarginWidth (m_LineNrID
, 0); // start out not visible
411 // default fonts for all styles!
413 for (Nr
= 0; Nr
< wxSTC_STYLE_LASTPREDEFINED
; Nr
++) {
414 wxFont
font (10, wxMODERN
, wxNORMAL
, wxNORMAL
);
415 StyleSetFont (Nr
, font
);
419 StyleSetForeground (wxSTC_STYLE_DEFAULT
, wxColour (_T("DARK GREY")));
420 StyleSetForeground (wxSTC_STYLE_INDENTGUIDE
, wxColour (_T("DARK GREY")));
422 // initialize settings
423 if (g_CommonPrefs
.syntaxEnable
) {
425 for (Nr
= 0; Nr
< STYLE_TYPES_COUNT
; Nr
++) {
426 if (curInfo
->styles
[Nr
].type
== -1) continue;
427 const StyleInfo
&curType
= g_StylePrefs
[curInfo
->styles
[Nr
].type
];
428 wxFont
font (curType
.fontsize
, wxMODERN
, wxNORMAL
, wxNORMAL
, false,
430 StyleSetFont (Nr
, font
);
431 if (curType
.foreground
) {
432 StyleSetForeground (Nr
, wxColour (curType
.foreground
));
434 if (curType
.background
) {
435 StyleSetBackground (Nr
, wxColour (curType
.background
));
437 StyleSetBold (Nr
, (curType
.fontstyle
& mySTC_STYLE_BOLD
) > 0);
438 StyleSetItalic (Nr
, (curType
.fontstyle
& mySTC_STYLE_ITALIC
) > 0);
439 StyleSetUnderline (Nr
, (curType
.fontstyle
& mySTC_STYLE_UNDERL
) > 0);
440 StyleSetVisible (Nr
, (curType
.fontstyle
& mySTC_STYLE_HIDDEN
) == 0);
441 StyleSetCase (Nr
, curType
.lettercase
);
442 const wxChar
*pwords
= curInfo
->styles
[Nr
].words
;
444 SetKeyWords (keywordnr
, pwords
);
450 // set margin as unused
451 SetMarginType (m_DividerID
, wxSTC_MARGIN_SYMBOL
);
452 SetMarginWidth (m_DividerID
, 0);
453 SetMarginSensitive (m_DividerID
, false);
456 SetMarginType (m_FoldingID
, wxSTC_MARGIN_SYMBOL
);
457 SetMarginMask (m_FoldingID
, wxSTC_MASK_FOLDERS
);
458 StyleSetBackground (m_FoldingID
, wxColour (_T("WHITE")));
459 SetMarginWidth (m_FoldingID
, 0);
460 SetMarginSensitive (m_FoldingID
, false);
461 if (g_CommonPrefs
.foldEnable
) {
462 SetMarginWidth (m_FoldingID
, curInfo
->folds
!= 0? m_FoldingMargin
: 0);
463 SetMarginSensitive (m_FoldingID
, curInfo
->folds
!= 0);
464 SetProperty (_T("fold"), curInfo
->folds
!= 0? _T("1"): _T("0"));
465 SetProperty (_T("fold.comment"),
466 (curInfo
->folds
& mySTC_FOLD_COMMENT
) > 0? _T("1"): _T("0"));
467 SetProperty (_T("fold.compact"),
468 (curInfo
->folds
& mySTC_FOLD_COMPACT
) > 0? _T("1"): _T("0"));
469 SetProperty (_T("fold.preprocessor"),
470 (curInfo
->folds
& mySTC_FOLD_PREPROC
) > 0? _T("1"): _T("0"));
471 SetProperty (_T("fold.html"),
472 (curInfo
->folds
& mySTC_FOLD_HTML
) > 0? _T("1"): _T("0"));
473 SetProperty (_T("fold.html.preprocessor"),
474 (curInfo
->folds
& mySTC_FOLD_HTMLPREP
) > 0? _T("1"): _T("0"));
475 SetProperty (_T("fold.comment.python"),
476 (curInfo
->folds
& mySTC_FOLD_COMMENTPY
) > 0? _T("1"): _T("0"));
477 SetProperty (_T("fold.quotes.python"),
478 (curInfo
->folds
& mySTC_FOLD_QUOTESPY
) > 0? _T("1"): _T("0"));
480 SetFoldFlags (wxSTC_FOLDFLAG_LINEBEFORE_CONTRACTED
|
481 wxSTC_FOLDFLAG_LINEAFTER_CONTRACTED
);
483 // set spaces and indention
486 SetTabIndents (true);
487 SetBackSpaceUnIndents (true);
488 SetIndent (g_CommonPrefs
.indentEnable
? 4: 0);
491 SetViewEOL (g_CommonPrefs
.displayEOLEnable
);
492 SetIndentationGuides (g_CommonPrefs
.indentGuideEnable
);
494 SetEdgeMode (g_CommonPrefs
.longLineOnEnable
? wxSTC_EDGE_LINE
: wxSTC_EDGE_NONE
);
495 SetViewWhiteSpace (g_CommonPrefs
.whiteSpaceEnable
?
496 wxSTC_WS_VISIBLEALWAYS
: wxSTC_WS_INVISIBLE
);
497 SetOvertype (g_CommonPrefs
.overTypeInitial
);
498 SetReadOnly (g_CommonPrefs
.readOnlyInitial
);
499 SetWrapMode (g_CommonPrefs
.wrapModeInitial
?
500 wxSTC_WRAP_WORD
: wxSTC_WRAP_NONE
);
505 bool Edit::LoadFile () {
509 wxFileDialog
dlg (this, _T("Open file"), _T(""), _T(""),
510 _T("Any file (*)|*"), wxOPEN
| wxFILE_MUST_EXIST
| wxCHANGE_DIR
);
511 if (dlg
.ShowModal() != wxID_OK
) return false;
512 m_filename
= dlg
.GetPath();
516 return LoadFile (m_filename
);
519 bool Edit::LoadFile (const wxString
&filename
) {
521 // load file in edit and clear undo
522 if (!filename
.IsEmpty()) m_filename
= filename
;
523 // wxFile file (m_filename);
524 // if (!file.IsOpened()) return false;
526 // long lng = file.Length ();
529 // wxChar *buff = buf.GetWriteBuf (lng);
530 // file.Read (buff, lng);
531 // buf.UngetWriteBuf ();
532 // InsertText (0, buf);
536 wxStyledTextCtrl::LoadFile(m_filename
);
540 // determine lexer language
541 wxFileName
fname (m_filename
);
542 InitializePrefs (DeterminePrefs (fname
.GetFullName()));
547 bool Edit::SaveFile () {
549 // return if no change
550 if (!Modified()) return true;
554 wxFileDialog
dlg (this, _T("Save file"), _T(""), _T(""), _T("Any file (*)|*"),
555 wxSAVE
| wxOVERWRITE_PROMPT
);
556 if (dlg
.ShowModal() != wxID_OK
) return false;
557 m_filename
= dlg
.GetPath();
561 return SaveFile (m_filename
);
564 bool Edit::SaveFile (const wxString
&filename
) {
566 // return if no change
567 if (!Modified()) return true;
569 // // save edit in file and clear undo
570 // if (!filename.IsEmpty()) m_filename = filename;
571 // wxFile file (m_filename, wxFile::write);
572 // if (!file.IsOpened()) return false;
573 // wxString buf = GetText();
574 // bool okay = file.Write (buf);
576 // if (!okay) return false;
577 // EmptyUndoBuffer();
582 return wxStyledTextCtrl::SaveFile(filename
);
586 bool Edit::Modified () {
588 // return modified state
589 return (GetModify() && !GetReadOnly());
592 //----------------------------------------------------------------------------
594 //----------------------------------------------------------------------------
596 EditProperties::EditProperties (Edit
*edit
,
598 : wxDialog (edit
, -1, wxEmptyString
,
599 wxDefaultPosition
, wxDefaultSize
,
600 style
| wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
) {
602 // sets the application title
603 SetTitle (_("Properties"));
607 wxBoxSizer
*fullname
= new wxBoxSizer (wxHORIZONTAL
);
608 fullname
->Add (10, 0);
609 fullname
->Add (new wxStaticText (this, -1, _("Full filename"),
610 wxDefaultPosition
, wxSize(80, -1)),
611 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
);
612 fullname
->Add (new wxStaticText (this, -1, edit
->GetFilename()),
613 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
);
616 wxGridSizer
*textinfo
= new wxGridSizer (4, 0, 2);
617 textinfo
->Add (new wxStaticText (this, -1, _("Language"),
618 wxDefaultPosition
, wxSize(80, -1)),
619 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxLEFT
, 4);
620 textinfo
->Add (new wxStaticText (this, -1, edit
->m_language
->name
),
621 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4);
622 textinfo
->Add (new wxStaticText (this, -1, _("Lexer-ID: "),
623 wxDefaultPosition
, wxSize(80, -1)),
624 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxLEFT
, 4);
625 text
= wxString::Format (_T("%d"), edit
->GetLexer());
626 textinfo
->Add (new wxStaticText (this, -1, text
),
627 0, wxALIGN_RIGHT
|wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4);
628 wxString EOLtype
= _T("");
629 switch (edit
->GetEOLMode()) {
630 case wxSTC_EOL_CR
: {EOLtype
= _T("CR (Unix)"); break; }
631 case wxSTC_EOL_CRLF
: {EOLtype
= _T("CRLF (Windows)"); break; }
632 case wxSTC_EOL_LF
: {EOLtype
= _T("CR (Macintosh)"); break; }
634 textinfo
->Add (new wxStaticText (this, -1, _("Line endings"),
635 wxDefaultPosition
, wxSize(80, -1)),
636 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxLEFT
, 4);
637 textinfo
->Add (new wxStaticText (this, -1, EOLtype
),
638 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4);
641 wxStaticBoxSizer
*textinfos
= new wxStaticBoxSizer (
642 new wxStaticBox (this, -1, _("Informations")),
644 textinfos
->Add (textinfo
, 0, wxEXPAND
);
645 textinfos
->Add (0, 6);
648 wxGridSizer
*statistic
= new wxGridSizer (4, 0, 2);
649 statistic
->Add (new wxStaticText (this, -1, _("Total lines"),
650 wxDefaultPosition
, wxSize(80, -1)),
651 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxLEFT
, 4);
652 text
= wxString::Format (_T("%d"), edit
->GetLineCount());
653 statistic
->Add (new wxStaticText (this, -1, text
),
654 0, wxALIGN_RIGHT
|wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4);
655 statistic
->Add (new wxStaticText (this, -1, _("Total chars"),
656 wxDefaultPosition
, wxSize(80, -1)),
657 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxLEFT
, 4);
658 text
= wxString::Format (_T("%d"), edit
->GetTextLength());
659 statistic
->Add (new wxStaticText (this, -1, text
),
660 0, wxALIGN_RIGHT
|wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4);
661 statistic
->Add (new wxStaticText (this, -1, _("Current line"),
662 wxDefaultPosition
, wxSize(80, -1)),
663 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxLEFT
, 4);
664 text
= wxString::Format (_T("%d"), edit
->GetCurrentLine());
665 statistic
->Add (new wxStaticText (this, -1, text
),
666 0, wxALIGN_RIGHT
|wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4);
667 statistic
->Add (new wxStaticText (this, -1, _("Current pos"),
668 wxDefaultPosition
, wxSize(80, -1)),
669 0, wxALIGN_LEFT
|wxALIGN_CENTER_VERTICAL
|wxLEFT
, 4);
670 text
= wxString::Format (_T("%d"), edit
->GetCurrentPos());
671 statistic
->Add (new wxStaticText (this, -1, text
),
672 0, wxALIGN_RIGHT
|wxALIGN_CENTER_VERTICAL
|wxRIGHT
, 4);
674 // char/line statistics
675 wxStaticBoxSizer
*statistics
= new wxStaticBoxSizer (
676 new wxStaticBox (this, -1, _("Statistics")),
678 statistics
->Add (statistic
, 0, wxEXPAND
);
679 statistics
->Add (0, 6);
682 wxBoxSizer
*totalpane
= new wxBoxSizer (wxVERTICAL
);
683 totalpane
->Add (fullname
, 0, wxEXPAND
| wxLEFT
| wxRIGHT
| wxTOP
, 10);
684 totalpane
->Add (0, 6);
685 totalpane
->Add (textinfos
, 0, wxEXPAND
| wxLEFT
| wxRIGHT
, 10);
686 totalpane
->Add (0, 10);
687 totalpane
->Add (statistics
, 0, wxEXPAND
| wxLEFT
| wxRIGHT
, 10);
688 totalpane
->Add (0, 6);
689 wxButton
*okButton
= new wxButton (this, wxID_OK
, _("OK"));
690 okButton
->SetDefault();
691 totalpane
->Add (okButton
, 0, wxALIGN_CENTER
| wxALL
, 10);
693 SetSizerAndFit (totalpane
);
698 //----------------------------------------------------------------------------
700 //----------------------------------------------------------------------------
702 EditPrint::EditPrint (Edit
*edit
, wxChar
*title
)
703 : wxPrintout(title
) {
709 bool EditPrint::OnPrintPage (int page
) {
712 if (!dc
) return false;
718 if (page
== 1) m_printed
= 0;
719 m_printed
= m_edit
->FormatRange (1, m_printed
, m_edit
->GetLength(),
720 dc
, dc
, m_printRect
, m_pageRect
);
725 bool EditPrint::OnBeginDocument (int startPage
, int endPage
) {
727 if (!wxPrintout::OnBeginDocument (startPage
, endPage
)) {
734 void EditPrint::GetPageInfo (int *minPage
, int *maxPage
, int *selPageFrom
, int *selPageTo
) {
742 // scale DC if possible
747 // get print page informations and convert to printer pixels
749 GetPPIScreen (&ppiScr
.x
, &ppiScr
.y
);
750 wxSize page
= g_pageSetupData
->GetPaperSize();
751 page
.x
= static_cast<int> (page
.x
* ppiScr
.x
/ 25.4);
752 page
.y
= static_cast<int> (page
.y
* ppiScr
.y
/ 25.4);
753 m_pageRect
= wxRect (0,
758 // get margins informations and convert to printer pixels
759 int top
= 25; // default 25
760 int bottom
= 25; // default 25
761 int left
= 20; // default 20
762 int right
= 20; // default 20
763 wxPoint (top
, left
) = g_pageSetupData
->GetMarginTopLeft();
764 wxPoint (bottom
, right
) = g_pageSetupData
->GetMarginBottomRight();
765 top
= static_cast<int> (top
* ppiScr
.y
/ 25.4);
766 bottom
= static_cast<int> (bottom
* ppiScr
.y
/ 25.4);
767 left
= static_cast<int> (left
* ppiScr
.x
/ 25.4);
768 right
= static_cast<int> (right
* ppiScr
.x
/ 25.4);
769 m_printRect
= wxRect (left
,
771 page
.x
- (left
+ right
),
772 page
.y
- (top
+ bottom
));
775 while (HasPage (*maxPage
)) {
776 m_printed
= m_edit
->FormatRange (0, m_printed
, m_edit
->GetLength(),
777 dc
, dc
, m_printRect
, m_pageRect
);
780 if (*maxPage
> 0) *minPage
= 1;
781 *selPageFrom
= *minPage
;
782 *selPageTo
= *maxPage
;
785 bool EditPrint::HasPage (int WXUNUSED(page
)) {
787 return (m_printed
< m_edit
->GetLength());
790 bool EditPrint::PrintScaling (wxDC
*dc
){
792 // check for dc, return if none
793 if (!dc
) return false;
795 // get printer and screen sizing values
797 GetPPIScreen (&ppiScr
.x
, &ppiScr
.y
);
798 if (ppiScr
.x
== 0) { // most possible guess 96 dpi
803 GetPPIPrinter (&ppiPrt
.x
, &ppiPrt
.y
);
804 if (ppiPrt
.x
== 0) { // scaling factor to 1
808 wxSize dcSize
= dc
->GetSize();
810 GetPageSizePixels (&pageSize
.x
, &pageSize
.y
);
813 float scale_x
= (float)(ppiPrt
.x
* dcSize
.x
) /
814 (float)(ppiScr
.x
* pageSize
.x
);
815 float scale_y
= (float)(ppiPrt
.y
* dcSize
.y
) /
816 (float)(ppiScr
.y
* pageSize
.y
);
817 dc
->SetUserScale (scale_x
, scale_y
);