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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : configuration_manager_dlg.cpp
//
// -------------------------------------------------------------------------
// 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.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "configuration_manager_dlg.h"
#include "edit_configuration.h"
#include "edit_workspace_conf_dlg.h"
#include "macros.h"
#include "manager.h"
#include "new_configuration_dlg.h"
#include "windowattrmanager.h"
#include <algorithm>
#include <wx/wupdlock.h>
//----------------------------------------------------------------------------
// Configuration Manager
//----------------------------------------------------------------------------
static int wxStringCmpFunc(const wxString& item1, const wxString& item2) { return item1.CmpNoCase(item2); }
ConfigurationManagerDlg::ConfigurationManagerDlg(wxWindow* parent)
: ConfigManagerBaseDlg(parent)
, m_dirty(false)
{
PopulateConfigurations();
CentreOnParent();
SetName("ConfigurationManagerDlg");
WindowAttrManager::Load(this);
m_dvListCtrl->Bind(wxEVT_DATAVIEW_ACTION_BUTTON, &ConfigurationManagerDlg::OnShowConfigList, this);
m_dvListCtrl->Bind(wxEVT_DATAVIEW_CHOICE, &ConfigurationManagerDlg::OnValueChanged, this);
}
wxArrayString ConfigurationManagerDlg::GetChoicesForProject(const wxString& projectName,
const wxString& workspaceConfig, size_t& index)
{
wxArrayString choices;
ProjectPtr project = ManagerST::Get()->GetProject(projectName);
if(!project) {
return choices;
}
// Get the workspace configuration
wxString projectConfig =
clCxxWorkspaceST::Get()->GetBuildMatrix()->GetProjectSelectedConf(workspaceConfig, projectName);
if(projectConfig.IsEmpty()) {
return choices;
}
// Get all configuration of the project
ProjectSettingsPtr settings = project->GetSettings();
size_t counter = 0;
if(settings) {
ProjectSettingsCookie cookie;
BuildConfigPtr bldConf = settings->GetFirstBuildConfiguration(cookie);
while(bldConf) {
choices.Add(bldConf->GetName());
if(projectConfig == bldConf->GetName()) {
index = counter;
}
bldConf = settings->GetNextBuildConfiguration(cookie);
++counter;
}
}
choices.Add(clCMD_NEW);
choices.Add(clCMD_EDIT);
return choices;
}
void ConfigurationManagerDlg::PopulateConfigurations()
{
// popuplate the configurations
BuildMatrixPtr matrix = ManagerST::Get()->GetWorkspaceBuildMatrix();
if(!matrix) {
return;
}
wxWindowUpdateLocker locker(this);
m_dvListCtrl->DeleteAllItems([](wxUIntPtr d) {
wxArrayString* choices = (wxArrayString*)d;
wxDELETE(choices);
});
std::list<WorkspaceConfigurationPtr> configs = matrix->GetConfigurations();
m_choiceConfigurations->Clear();
for(WorkspaceConfigurationPtr config : configs) {
m_choiceConfigurations->Append(config->GetName());
}
// append the 'New' & 'Delete' commands
m_choiceConfigurations->Append(clCMD_NEW);
m_choiceConfigurations->Append(clCMD_EDIT);
int sel = m_choiceConfigurations->FindString(m_currentWorkspaceConfiguration.IsEmpty()
? matrix->GetSelectedConfigurationName()
: m_currentWorkspaceConfiguration);
if(sel != wxNOT_FOUND) {
m_choiceConfigurations->SetSelection(sel);
} else if(m_choiceConfigurations->GetCount() > 2) {
m_choiceConfigurations->SetSelection(2);
} else {
m_choiceConfigurations->Append("Debug");
m_choiceConfigurations->SetSelection(2);
}
// keep the current workspace configuration
m_currentWorkspaceConfiguration = m_choiceConfigurations->GetStringSelection();
wxArrayString projects;
ManagerST::Get()->GetProjectList(projects);
projects.Sort(wxStringCmpFunc);
for(size_t i = 0; i < projects.GetCount(); ++i) {
size_t index = wxString::npos;
wxArrayString choices = GetChoicesForProject(projects[i], m_currentWorkspaceConfiguration, index);
clDataViewTextWithButton c(index != wxString::npos ? choices[index] : "", eCellButtonType::BT_DROPDOWN_ARROW,
wxNOT_FOUND);
wxVariant v;
v << c;
wxVector<wxVariant> cols;
cols.push_back(projects[i]);
cols.push_back(v);
m_dvListCtrl->AppendItem(cols, (wxUIntPtr) new wxArrayString(choices));
}
}
void ConfigurationManagerDlg::LoadWorkspaceConfiguration(const wxString& confName)
{
m_choiceConfigurations->SetStringSelection(confName);
PopulateConfigurations();
}
void ConfigurationManagerDlg::OnWorkspaceConfigSelected(wxCommandEvent& event)
{
if(event.GetString() == clCMD_NEW) {
OnButtonNew(event);
} else if(event.GetString() == clCMD_EDIT) {
// popup the delete dialog for configurations
EditWorkspaceConfDlg dlg(this);
dlg.ShowModal();
// once done, restore dialog
PopulateConfigurations();
} else {
if(m_dirty) {
if(wxMessageBox(
wxString::Format(
_("Settings for workspace configuration '%s' have changed, would you like to save them?"),
m_currentWorkspaceConfiguration.GetData()),
_("CodeLite"), wxYES | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION) != wxYES) {
return;
}
SaveCurrentSettings();
m_dirty = false;
}
m_currentWorkspaceConfiguration = event.GetString();
LoadWorkspaceConfiguration(event.GetString());
}
}
void ConfigurationManagerDlg::OnButtonNew(wxCommandEvent& event)
{
wxUnusedVar(event);
wxTextEntryDialog* dlg = new wxTextEntryDialog(this, _("Enter New Configuration Name:"), _("New Configuration"));
if(dlg->ShowModal() == wxID_OK) {
wxString value = dlg->GetValue();
TrimString(value);
if(value.IsEmpty() == false) {
value.Replace(" ", "_"); // using spaces will break the build, replace them with hyphens
BuildMatrixPtr matrix = ManagerST::Get()->GetWorkspaceBuildMatrix();
if(!matrix) {
return;
}
WorkspaceConfigurationPtr conf(new WorkspaceConfiguration(NULL));
conf->SetName(value);
conf->SetConfigMappingList(GetCurrentSettings());
matrix->SetConfiguration(conf);
// save changes
ManagerST::Get()->SetWorkspaceBuildMatrix(matrix);
}
}
PopulateConfigurations();
dlg->Destroy();
}
void ConfigurationManagerDlg::OnButtonApply(wxCommandEvent& event)
{
wxUnusedVar(event);
SaveCurrentSettings();
}
WorkspaceConfiguration::ConfigMappingList ConfigurationManagerDlg::GetCurrentSettings()
{
// return the current settings as described by the dialog
WorkspaceConfiguration::ConfigMappingList list;
for(size_t i = 0; i < m_dvListCtrl->GetItemCount(); ++i) {
wxDataViewItem item = m_dvListCtrl->RowToItem(i);
wxString projectName = m_dvListCtrl->GetItemText(item, 0);
wxString configName = m_dvListCtrl->GetItemText(item, 1);
if((configName != clCMD_NEW) && (configName != clCMD_EDIT)) {
ConfigMappingEntry entry(projectName, configName);
list.push_back(entry);
}
}
return list;
}
void ConfigurationManagerDlg::OnButtonOK(wxCommandEvent& event)
{
OnButtonApply(event);
EndModal(wxID_OK);
}
void ConfigurationManagerDlg::SaveCurrentSettings()
{
m_currentWorkspaceConfiguration = m_currentWorkspaceConfiguration.Trim().Trim(false);
BuildMatrixPtr matrix = ManagerST::Get()->GetWorkspaceBuildMatrix();
if(!matrix) {
return;
}
matrix->SetSelectedConfigurationName(m_currentWorkspaceConfiguration);
WorkspaceConfigurationPtr conf = matrix->GetConfigurationByName(m_currentWorkspaceConfiguration);
if(!conf) {
// create new configuration
conf = new WorkspaceConfiguration(NULL);
conf->SetName(m_currentWorkspaceConfiguration);
matrix->SetConfiguration(conf);
}
conf->SetConfigMappingList(GetCurrentSettings());
// save changes
ManagerST::Get()->SetWorkspaceBuildMatrix(matrix);
m_dirty = false;
}
void ConfigurationManagerDlg::OnButtonApplyUI(wxUpdateUIEvent& event) { event.Enable(m_dirty); }
ConfigurationManagerDlg::~ConfigurationManagerDlg()
{
m_dvListCtrl->DeleteAllItems([](wxUIntPtr d) {
wxArrayString* choices = (wxArrayString*)d;
wxDELETE(choices);
});
}
void ConfigurationManagerDlg::OnValueChanged(wxDataViewEvent& event)
{
wxString projectName = m_dvListCtrl->GetItemText(event.GetItem(), 0);
wxString selection = event.GetString(); // the new selection
if(selection == clCMD_NEW) {
// popup the 'New Configuration' dialog
NewConfigurationDlg dlg(this, projectName);
if(dlg.ShowModal() == wxID_OK) {
// clCMD_NEW does not mark the page as dirty !
PopulateConfigurations();
}
event.Veto(); // prevent the change from taking place
} else if(selection == clCMD_EDIT) {
EditConfigurationDialog dlg(this, projectName);
if(dlg.ShowModal() == wxID_OK) {
m_dirty = true;
PopulateConfigurations();
}
event.Veto(); // prevent the change from taking place
} else {
// just mark the page as dirty
m_dirty = true;
}
}
void ConfigurationManagerDlg::OnShowConfigList(wxDataViewEvent& event)
{
event.Skip();
wxDataViewItem item = event.GetItem();
wxArrayString* choices = reinterpret_cast<wxArrayString*>(m_dvListCtrl->GetItemData(item));
if(!choices) {
return;
}
m_dvListCtrl->ShowStringSelectionMenu(item, *choices, event.GetColumn());
}
|