-
Notifications
You must be signed in to change notification settings - Fork 466
/
addincludefiledlgbase.cpp
177 lines (145 loc) · 7.55 KB
/
addincludefiledlgbase.cpp
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
//////////////////////////////////////////////////////////////////////
// This file was auto-generated by codelite's wxCrafter Plugin
// wxCrafter project file: AddIncludeFile.wxcp
// Do not modify this file by hand!
//////////////////////////////////////////////////////////////////////
#include "addincludefiledlgbase.h"
// Declare the bitmap loading function
extern void wxC10CDInitBitmapResources();
static bool bBitmapLoaded = false;
AddIncludeFileDlgBase::AddIncludeFileDlgBase(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
const wxSize& size, long style)
: wxDialog(parent, id, title, pos, size, style)
{
if(!bBitmapLoaded) {
// We need to initialise the default bitmap handler
wxXmlResource::Get()->AddHandler(new wxBitmapXmlHandler);
wxC10CDInitBitmapResources();
bBitmapLoaded = true;
}
wxBoxSizer* bSizer7 = new wxBoxSizer(wxVERTICAL);
this->SetSizer(bSizer7);
m_toolbar = new clToolBar(this, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1, -1)), wxTB_FLAT);
m_toolbar->SetToolBitmapSize(wxSize(16, 16));
bSizer7->Add(m_toolbar, 0, wxEXPAND, WXC_FROM_DIP(5));
m_mainPanel = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1, -1)), wxTAB_TRAVERSAL);
bSizer7->Add(m_mainPanel, 1, wxALL | wxEXPAND, WXC_FROM_DIP(5));
wxBoxSizer* bSizer9 = new wxBoxSizer(wxVERTICAL);
m_mainPanel->SetSizer(bSizer9);
m_textCtrlPreview =
new wxStyledTextCtrl(m_mainPanel, wxID_ANY, wxDefaultPosition, wxDLG_UNIT(m_mainPanel, wxSize(400, 300)), 0);
#ifdef __WXMSW__
// To get the newer version of the font on MSW, we use font wxSYS_DEFAULT_GUI_FONT with family set to
// wxFONTFAMILY_TELETYPE
wxFont m_textCtrlPreviewFont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
m_textCtrlPreviewFont.SetFamily(wxFONTFAMILY_TELETYPE);
#else
wxFont m_textCtrlPreviewFont = wxSystemSettings::GetFont(wxSYS_ANSI_FIXED_FONT);
m_textCtrlPreviewFont.SetFamily(wxFONTFAMILY_TELETYPE);
#endif
m_textCtrlPreview->SetFont(m_textCtrlPreviewFont);
m_textCtrlPreview->SetFocus();
// Configure the fold margin
m_textCtrlPreview->SetMarginType(4, wxSTC_MARGIN_SYMBOL);
m_textCtrlPreview->SetMarginMask(4, wxSTC_MASK_FOLDERS);
m_textCtrlPreview->SetMarginSensitive(4, true);
m_textCtrlPreview->SetMarginWidth(4, 0);
// Configure the tracker margin
m_textCtrlPreview->SetMarginWidth(1, 0);
// Configure the symbol margin
m_textCtrlPreview->SetMarginType(2, wxSTC_MARGIN_SYMBOL);
m_textCtrlPreview->SetMarginMask(2, ~(wxSTC_MASK_FOLDERS));
m_textCtrlPreview->SetMarginWidth(2, 0);
m_textCtrlPreview->SetMarginSensitive(2, true);
// Configure the line numbers margin
int m_textCtrlPreview_PixelWidth = 4 + 5 * m_textCtrlPreview->TextWidth(wxSTC_STYLE_LINENUMBER, wxT("9"));
m_textCtrlPreview->SetMarginType(0, wxSTC_MARGIN_NUMBER);
m_textCtrlPreview->SetMarginWidth(0, m_textCtrlPreview_PixelWidth);
// Configure the line symbol margin
m_textCtrlPreview->SetMarginType(3, wxSTC_MARGIN_FORE);
m_textCtrlPreview->SetMarginMask(3, 0);
m_textCtrlPreview->SetMarginWidth(3, 0);
// Select the lexer
m_textCtrlPreview->SetLexer(wxSTC_LEX_CPP);
// Set default font / styles
m_textCtrlPreview->StyleClearAll();
for(int i = 0; i < wxSTC_STYLE_MAX; ++i) {
m_textCtrlPreview->StyleSetFont(i, m_textCtrlPreviewFont);
}
m_textCtrlPreview->SetWrapMode(0);
m_textCtrlPreview->SetIndentationGuides(0);
m_textCtrlPreview->SetKeyWords(0, wxT(""));
m_textCtrlPreview->SetKeyWords(1, wxT(""));
m_textCtrlPreview->SetKeyWords(2, wxT(""));
m_textCtrlPreview->SetKeyWords(3, wxT(""));
m_textCtrlPreview->SetKeyWords(4, wxT(""));
bSizer9->Add(m_textCtrlPreview, 1, wxLEFT | wxRIGHT | wxEXPAND, WXC_FROM_DIP(5));
wxFlexGridSizer* flexGridSizer4 = new wxFlexGridSizer(0, 2, 0, 0);
flexGridSizer4->SetFlexibleDirection(wxBOTH);
flexGridSizer4->SetNonFlexibleGrowMode(wxFLEX_GROWMODE_SPECIFIED);
flexGridSizer4->AddGrowableCol(1);
bSizer9->Add(flexGridSizer4, 0, wxALL | wxEXPAND, WXC_FROM_DIP(5));
m_staticText21 = new wxStaticText(m_mainPanel, wxID_ANY, _("Line to add:"), wxDefaultPosition,
wxDLG_UNIT(m_mainPanel, wxSize(-1, -1)), 0);
wxFont m_staticText21Font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
m_staticText21Font.SetWeight(wxFONTWEIGHT_BOLD);
m_staticText21->SetFont(m_staticText21Font);
flexGridSizer4->Add(m_staticText21, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, WXC_FROM_DIP(5));
m_staticTextPreview =
new wxStaticText(m_mainPanel, wxID_ANY, wxT(""), wxDefaultPosition, wxDLG_UNIT(m_mainPanel, wxSize(-1, -1)), 0);
#ifdef __WXMSW__
// To get the newer version of the font on MSW, we use font wxSYS_DEFAULT_GUI_FONT with family set to
// wxFONTFAMILY_TELETYPE
wxFont m_staticTextPreviewFont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
m_staticTextPreviewFont.SetFamily(wxFONTFAMILY_TELETYPE);
#else
wxFont m_staticTextPreviewFont = wxSystemSettings::GetFont(wxSYS_ANSI_FIXED_FONT);
m_staticTextPreviewFont.SetFamily(wxFONTFAMILY_TELETYPE);
#endif
m_staticTextPreview->SetFont(m_staticTextPreviewFont);
flexGridSizer4->Add(m_staticTextPreview, 0, wxALL | wxEXPAND | wxALIGN_CENTER_VERTICAL, WXC_FROM_DIP(5));
m_staticText5 = new wxStaticText(m_mainPanel, wxID_ANY, _("File's full path:"), wxDefaultPosition,
wxDLG_UNIT(m_mainPanel, wxSize(-1, -1)), 0);
wxFont m_staticText5Font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
m_staticText5Font.SetWeight(wxFONTWEIGHT_BOLD);
m_staticText5->SetFont(m_staticText5Font);
flexGridSizer4->Add(m_staticText5, 0, wxALL | wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL, WXC_FROM_DIP(5));
m_textCtrlFullPath = new wxTextCtrl(m_mainPanel, wxID_ANY, wxT(""), wxDefaultPosition,
wxDLG_UNIT(m_mainPanel, wxSize(400, -1)), wxTE_READONLY);
#if wxVERSION_NUMBER >= 3000
m_textCtrlFullPath->SetHint(wxT(""));
#endif
flexGridSizer4->Add(m_textCtrlFullPath, 0, wxALL | wxEXPAND, WXC_FROM_DIP(5));
m_stdBtnSizer23 = new wxStdDialogButtonSizer();
bSizer7->Add(m_stdBtnSizer23, 0, wxALL | wxALIGN_CENTER_HORIZONTAL, WXC_FROM_DIP(10));
m_button25 = new wxButton(this, wxID_OK, wxT(""), wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1, -1)), 0);
m_button25->SetDefault();
m_stdBtnSizer23->AddButton(m_button25);
m_button27 = new wxButton(this, wxID_CANCEL, wxT(""), wxDefaultPosition, wxDLG_UNIT(this, wxSize(-1, -1)), 0);
m_stdBtnSizer23->AddButton(m_button27);
m_stdBtnSizer23->Realize();
SetName(wxT("AddIncludeFileDlgBase"));
SetMinClientSize(wxSize(250, -1));
SetSize(wxDLG_UNIT(this, wxSize(-1, -1)));
if(GetSizer()) { GetSizer()->Fit(this); }
if(GetParent()) {
CentreOnParent();
} else {
CentreOnScreen();
}
#if wxVERSION_NUMBER >= 2900
if(!wxPersistenceManager::Get().Find(this)) {
wxPersistenceManager::Get().RegisterAndRestore(this);
} else {
wxPersistenceManager::Get().Restore(this);
}
#endif
// Connect events
m_button25->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(AddIncludeFileDlgBase::OnButtonOK), NULL,
this);
}
AddIncludeFileDlgBase::~AddIncludeFileDlgBase()
{
m_button25->Disconnect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(AddIncludeFileDlgBase::OnButtonOK), NULL,
this);
}