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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 The CodeLite Team
// file name : CMakeProjectSettingsPanel.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// 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 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
/* ************************************************************************ */
/* */
/* CMakePlugin for Codelite */
/* Copyright (C) 2013 Jiří Fatka <ntsfka@gmail.com> */
/* */
/* 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_PROJECT_SETTINGS_PANEL_H_
#define CMAKE_PROJECT_SETTINGS_PANEL_H_
/* ************************************************************************ */
/* INCLUDES */
/* ************************************************************************ */
// Codelite
#include "project.h"
// UI
#include "CMakePluginUi.h"
// CMakePlugin
#include "CMakeProjectSettings.h"
/* ************************************************************************ */
/* FORWARD DECLARATIONS */
/* ************************************************************************ */
class CMakePlugin;
/* ************************************************************************ */
/* CLASSES */
/* ************************************************************************ */
/**
* @brief Tab for project settings for CMake.
*/
class CMakeProjectSettingsPanel : public CMakeProjectSettingsPanelBase
{
// Public Ctors & Dtors
public:
/**
* @brief Create a CMake output tab.
*
* @param parent Pointer to parent window.
* @param project Project pointer.
*/
explicit CMakeProjectSettingsPanel(wxWindow* parent, CMakePlugin* plugin);
// Public Accessors
public:
/**
* @brief Returns if custom CMakeLists.txt is enabled.
*
* @return
*/
bool IsCMakeEnabled() const {
return m_checkBoxEnable->IsChecked();
}
/**
* @brief Returns name of parent project.
*
* @return Parent project name or empty string.
*/
wxString GetParentProject() const {
return m_choiceParent->GetStringSelection();
}
/**
* @brief Returns source directory.
*
* @return
*/
wxString GetSourceDirectory() const {
return m_dirPickerSourceDir->GetPath();
}
/**
* @brief Returns build directory.
*
* @return
*/
wxString GetBuildDirectory() const {
return m_dirPickerBuildDir->GetPath();
}
/**
* @brief Returns generator name.
*
* @return
*/
wxString GetGenerator() const {
return m_choiceGenerator->GetStringSelection();
}
/**
* @brief Returns build type.
*
* @return
*/
wxString GetBuildType() const {
return m_comboBoxBuildType->GetStringSelection();
}
/**
* @brief Returns cmake arguments.
*
* @return
*/
wxArrayString GetArguments() const {
return wxSplit(m_textCtrlArguments->GetValue(), '\n');
}
/**
* @brief Returns a pointer to project settings.
*
* @return
*/
CMakeProjectSettings* GetSettings() const {
return m_settings;
}
// Public Mutators
public:
/**
* @brief Set if custom CMakeLists.txt is enabled.
*
* @param value
*/
void SetCMakeEnabled(bool value) const {
m_checkBoxEnable->SetValue(value);
}
/**
* @brief Set name of the parent project.
*
* @param project
*/
void SetParentProject(const wxString& project) {
m_choiceParent->SetStringSelection(project);
}
/**
* @brief Change source directory.
*
* @param dir Directory.
*/
void SetSourceDirectory(const wxString& dir) {
m_dirPickerSourceDir->SetPath(dir);
}
/**
* @brief Change build directory.
*
* @param dir Directory.
*/
void SetBuildDirectory(const wxString& dir) {
m_dirPickerBuildDir->SetPath(dir);
}
/**
* @brief Changes CMake generator.
*
* @param generator
*/
void SetGenerator(const wxString& generator) {
m_choiceGenerator->SetStringSelection(generator);
}
/**
* @brief Changes CMake build type.
*
* @param buildType
*/
void SetBuildType(const wxString& buildType) {
m_comboBoxBuildType->SetStringSelection(buildType);
}
/**
* @brief Set cmake arguments.
*
* @param arguments
*/
void SetArguments(const wxArrayString& arguments) {
m_textCtrlArguments->SetValue(wxJoin(arguments, '\n'));
}
/**
* @brief Set project setting pointer.
*
* @param settings
* @param project
* @param config
*/
void SetSettings(CMakeProjectSettings* settings, const wxString& project,
const wxString& config);
// Public Events
public:
/**
* @brief On enable or disable.
*
* @param event
*/
void OnCheck(wxUpdateUIEvent& event) {
event.Enable(m_checkBoxEnable->IsChecked());
}
/**
* @brief On enable or disable.
*
* @param event
*/
void OnCheck2(wxUpdateUIEvent& event) {
event.Enable(m_checkBoxEnable->IsChecked() &&
GetParentProject().empty());
}
// Public Operations
public:
/**
* @brief Loads from settings pointer to GUI widgets.
*/
void LoadSettings();
/**
* @brief Stores settings from GUI widgets into settings pointer.
*/
void StoreSettings();
/**
* @brief Clear settings from GUI widgets into settings pointer.
*/
void ClearSettings();
// Private Data Members
private:
/// A pointer to plugin.
CMakePlugin* const m_plugin;
/// Pointer to settings.
CMakeProjectSettings* m_settings;
};
/* ************************************************************************ */
#endif // CMAKE_PROJECT_SETTINGS_PANEL_H_
|