-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePlugin.h
389 lines (296 loc) · 9.3 KB
/
CMakePlugin.h
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
/* ************************************************************************ */
/* */
/* CMakePlugin for Codelite */
/* Copyright (C) 2013 Jiří Fatka <[email protected]> */
/* */
/* This program 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, either version 3 of the License, or */
/* (at your option) any later version. */
/* */
/* This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */
/* */
/* ************************************************************************ */
#ifndef CMAKE_PLUGIN_H_
#define CMAKE_PLUGIN_H_
/* ************************************************************************ */
/* INCLUDES */
/* ************************************************************************ */
// wxWidgets
#include <wx/scopedptr.h>
// CodeLite
#include "plugin.h"
#include "project.h"
#include "build_config.h"
#include "cl_command_event.h"
// CMakePlugin
#include "CMakeConfiguration.h"
/* ************************************************************************ */
/* FORWARD DECLARATIONS */
/* ************************************************************************ */
class CMake;
class CMakeSettingsManager;
class CMakeProjectSettingsPanel;
class CMakeProjectSettings;
class CMakeGenerator;
/* ************************************************************************ */
/* CLASSES */
/* ************************************************************************ */
/**
* @brief CMake plugin for CodeLite.
*
* Here is an explanation how the plugin works. For each project a makefile
* is generated with code that calls cmake if there is no Makefile in build
* directory (create directory if missing). Then is generated code built by
* calling make in build directory. Changes in CMakeLists.txt is detected
* by Makefile generated by cmake. Some CMakeLists.txt can contains code that
* takes all source files in specific directory and doesn't list them
* directly. In this case if a source file is added or removed the plugin
* doesn't regenerate CMake files because it's not able to detect changes.
* For this purpose there is a button that marks configuration dirty and
* forces plugin to regenerate CMake files.
*/
class CMakePlugin : public IPlugin
{
// Public Constants
public:
/**
* @brief Name of the output file - CMakeLists.txt
*/
static const wxString CMAKELISTS_FILE;
// Public Ctors & Dtors
public:
/**
* @brief Create plugin.
*
* @param manager
*/
explicit CMakePlugin(IManager* manager);
/**
* @brief Destructor.
*/
virtual ~CMakePlugin();
// Public Accessors
public:
/**
* @brief Returns a pointer to the manager object.
*
* @return
*/
IManager* GetManager() const {
return m_mgr;
}
/**
* @brief Returns CMake application pointer.
*
* @return
*/
CMake* GetCMake() const {
return m_cmake.get();
}
/**
* @brief Returns settings manager pointer.
*
* @return
*/
CMakeSettingsManager* GetSettingsManager() const {
return m_settingsManager.get();
}
/**
* @brief Returns CMake configuration.
*
* @return
*/
CMakeConfiguration* GetConfiguration() const {
return m_configuration.get();
}
/**
* @brief Returns directory where is workspace project stored.
*
* @return Path to workspace
*/
wxFileName GetWorkspaceDirectory() const;
/**
* @brief Returns directory where is the given project stored.
*
* @param projectName
*
* @return Project directory.
*/
wxFileName GetProjectDirectory(const wxString& projectName) const;
/**
* @brief Returns seleted project.
*
* @return Pointer to project.
*/
ProjectPtr GetSelectedProject() const {
return m_mgr->GetSelectedProject();
}
/**
* @brief Returns currently selected config for seleted project.
*
* @return
*/
wxString GetSelectedProjectConfig() const;
/**
* @brief Returns currently selected build config.
*
* @return
*/
BuildConfigPtr GetSelectedBuildConfig() const;
/**
* @brief Returns settings for currently selected project.
*
* @return Pointer to settings or nullptr if no project is seleted.
*/
const CMakeProjectSettings* GetSelectedProjectSettings() const;
/**
* @brief Returns if currently selected project is enabled.
*
* @return
*/
bool IsSeletedProjectEnabled() const;
/**
* @brief Returns a list of supported generators.
*
* Plugin supports only generators that generate directly buildable
* output like Unix Makefile or MinGW Makefile.
*
* @return List.
*/
wxArrayString GetSupportedGenerators() const;
/**
* @brief Check if Help pane is detached.
*
* @return
*/
bool IsPaneDetached() const;
// Public Operations
public:
/**
* @brief Creates a tool bar.
*
* @param parent Parent window.
*
* @return Codelite tool bar or NULL.
*/
clToolBar* CreateToolBar(wxWindow* parent);
/**
* @brief Creates a menu for plugin.
*
* @param pluginsMenu
*/
void CreatePluginMenu(wxMenu* pluginsMenu);
/**
* @brief Hook popup menu.
*
* @param menu
* @param type
*/
void HookPopupMenu(wxMenu* menu, MenuType type);
/**
* @brief allow the plugins to hook a tab in the project settings
*
* @param notebook the parent
* @param configName the associated configuration name
*/
void HookProjectSettingsTab(wxBookCtrlBase* notebook,
const wxString& projectName,
const wxString& configName);
/**
* @brief Unhook any tab from the project settings dialog.
*
* @param notebook the parent
* @param configName the associated configuration name
*/
void UnHookProjectSettingsTab(wxBookCtrlBase* notebook,
const wxString& projectName,
const wxString& configName);
/**
* @brief Unplug plugin.
*/
void UnPlug();
/**
* @brief Check if CMakeLists.txt exists in given directory.
*
* @param directory Directory where CMakeLists.txt should be located.
*
* @return If CMakeLists.txt exists in directory.
*/
bool ExistsCMakeLists(wxFileName directory) const;
/**
* @brief Open CMakeLists.txt in given directory.
*
* @param directory Directory where CMakeLists.txt should be located.
*/
void OpenCMakeLists(wxFileName directory) const;
// Public Events
public:
/**
* @brief On setting dialog.
*
* @param event
*/
void OnSettings(wxCommandEvent& event);
/**
* @brief On project config saving.
*
* @param event
*/
void OnSaveConfig(wxCommandEvent& event);
/**
* @brief Returns clean command.
*
* @param event
*/
void OnGetCleanCommand(clBuildEvent& event);
/**
* @brief Returns build command.
*
* @param event
*/
void OnGetBuildCommand(clBuildEvent& event);
/**
* @brief Returns if custom makefile is generated.
*/
void OnGetIsPluginMakefile(clBuildEvent& event);
/**
* @brief Generate custom makefile.
*
* @param event
*/
void OnExportMakefile(clBuildEvent& event);
/**
* @brief On workspace is loaded.
*
* @param event
*/
void OnWorkspaceLoaded(wxCommandEvent& event);
// Private Operations
private:
/**
* @brief Processes build event.
*
* @param event
* @param param
*/
void ProcessBuildEvent(clBuildEvent& event, wxString param = "");
// Private Data Members
private:
/// CMake configuration.
wxScopedPtr<CMakeConfiguration> m_configuration;
/// CMake application
wxScopedPtr<CMake> m_cmake;
/// Settings manager.
wxScopedPtr<CMakeSettingsManager> m_settingsManager;
/// Only one is enough
CMakeProjectSettingsPanel* m_panel;
};
/* ************************************************************************ */
#endif // CMAKE_PLUGIN_H_