Start out with the line numbers not shown.
Don't use the default size for the AppFrame. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25535 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -156,8 +156,6 @@ Edit::Edit (wxWindow *parent, wxWindowID id,
|
|||||||
// miscelaneous
|
// miscelaneous
|
||||||
m_LineNrMargin = TextWidth (wxSTC_STYLE_LINENUMBER, _T("_999999"));
|
m_LineNrMargin = TextWidth (wxSTC_STYLE_LINENUMBER, _T("_999999"));
|
||||||
m_FoldingMargin = 16;
|
m_FoldingMargin = 16;
|
||||||
SetMarginWidth (m_LineNrID,
|
|
||||||
g_CommonPrefs.lineNumberEnable? m_LineNrMargin: 0);
|
|
||||||
CmdKeyClear (wxSTC_KEY_TAB, 0); // this is done by the menu accelerator key
|
CmdKeyClear (wxSTC_KEY_TAB, 0); // this is done by the menu accelerator key
|
||||||
SetLayoutCache (wxSTC_CACHE_PAGE);
|
SetLayoutCache (wxSTC_CACHE_PAGE);
|
||||||
|
|
||||||
@@ -408,8 +406,7 @@ bool Edit::InitializePrefs (const wxString &name) {
|
|||||||
SetMarginType (m_LineNrID, wxSTC_MARGIN_NUMBER);
|
SetMarginType (m_LineNrID, wxSTC_MARGIN_NUMBER);
|
||||||
StyleSetForeground (wxSTC_STYLE_LINENUMBER, wxColour (_T("DARK GREY")));
|
StyleSetForeground (wxSTC_STYLE_LINENUMBER, wxColour (_T("DARK GREY")));
|
||||||
StyleSetBackground (wxSTC_STYLE_LINENUMBER, wxColour (_T("WHITE")));
|
StyleSetBackground (wxSTC_STYLE_LINENUMBER, wxColour (_T("WHITE")));
|
||||||
SetMarginWidth (m_LineNrID,
|
SetMarginWidth (m_LineNrID, 0); // start out not visible
|
||||||
g_CommonPrefs.lineNumberEnable? m_LineNrMargin: 0);
|
|
||||||
|
|
||||||
// default fonts for all styles!
|
// default fonts for all styles!
|
||||||
int Nr;
|
int Nr;
|
||||||
|
@@ -289,7 +289,7 @@ BEGIN_EVENT_TABLE (AppFrame, wxFrame)
|
|||||||
END_EVENT_TABLE ()
|
END_EVENT_TABLE ()
|
||||||
|
|
||||||
AppFrame::AppFrame (const wxString &title)
|
AppFrame::AppFrame (const wxString &title)
|
||||||
: wxFrame ((wxFrame *)NULL, -1, title, wxDefaultPosition, wxDefaultSize,
|
: wxFrame ((wxFrame *)NULL, -1, title, wxDefaultPosition, wxSize(750,550),
|
||||||
wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE) {
|
wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE) {
|
||||||
|
|
||||||
// intitialize important variables
|
// intitialize important variables
|
||||||
|
@@ -156,8 +156,6 @@ Edit::Edit (wxWindow *parent, wxWindowID id,
|
|||||||
// miscelaneous
|
// miscelaneous
|
||||||
m_LineNrMargin = TextWidth (wxSTC_STYLE_LINENUMBER, _T("_999999"));
|
m_LineNrMargin = TextWidth (wxSTC_STYLE_LINENUMBER, _T("_999999"));
|
||||||
m_FoldingMargin = 16;
|
m_FoldingMargin = 16;
|
||||||
SetMarginWidth (m_LineNrID,
|
|
||||||
g_CommonPrefs.lineNumberEnable? m_LineNrMargin: 0);
|
|
||||||
CmdKeyClear (wxSTC_KEY_TAB, 0); // this is done by the menu accelerator key
|
CmdKeyClear (wxSTC_KEY_TAB, 0); // this is done by the menu accelerator key
|
||||||
SetLayoutCache (wxSTC_CACHE_PAGE);
|
SetLayoutCache (wxSTC_CACHE_PAGE);
|
||||||
|
|
||||||
@@ -408,8 +406,7 @@ bool Edit::InitializePrefs (const wxString &name) {
|
|||||||
SetMarginType (m_LineNrID, wxSTC_MARGIN_NUMBER);
|
SetMarginType (m_LineNrID, wxSTC_MARGIN_NUMBER);
|
||||||
StyleSetForeground (wxSTC_STYLE_LINENUMBER, wxColour (_T("DARK GREY")));
|
StyleSetForeground (wxSTC_STYLE_LINENUMBER, wxColour (_T("DARK GREY")));
|
||||||
StyleSetBackground (wxSTC_STYLE_LINENUMBER, wxColour (_T("WHITE")));
|
StyleSetBackground (wxSTC_STYLE_LINENUMBER, wxColour (_T("WHITE")));
|
||||||
SetMarginWidth (m_LineNrID,
|
SetMarginWidth (m_LineNrID, 0); // start out not visible
|
||||||
g_CommonPrefs.lineNumberEnable? m_LineNrMargin: 0);
|
|
||||||
|
|
||||||
// default fonts for all styles!
|
// default fonts for all styles!
|
||||||
int Nr;
|
int Nr;
|
||||||
|
@@ -289,7 +289,7 @@ BEGIN_EVENT_TABLE (AppFrame, wxFrame)
|
|||||||
END_EVENT_TABLE ()
|
END_EVENT_TABLE ()
|
||||||
|
|
||||||
AppFrame::AppFrame (const wxString &title)
|
AppFrame::AppFrame (const wxString &title)
|
||||||
: wxFrame ((wxFrame *)NULL, -1, title, wxDefaultPosition, wxDefaultSize,
|
: wxFrame ((wxFrame *)NULL, -1, title, wxDefaultPosition, wxSize(750,550),
|
||||||
wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE) {
|
wxDEFAULT_FRAME_STYLE | wxNO_FULL_REPAINT_ON_RESIZE) {
|
||||||
|
|
||||||
// intitialize important variables
|
// intitialize important variables
|
||||||
|
Reference in New Issue
Block a user