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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : ps_general_page.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 "ps_general_page.h"
#include "project_settings_dlg.h"
#include "build_settings_config.h"
#include "project.h"
#include "dirsaver.h"
#include "manager.h"
#include <wx/filedlg.h>
#include <wx/dirdlg.h>
#include "globals.h"
#include <algorithm>
#include "buildmanager.h"
PSGeneralPage::PSGeneralPage(
wxWindow* parent, const wxString& projectName, const wxString& conf, ProjectSettingsDlg* dlg)
: PSGeneralPageBase(parent)
, m_dlg(dlg)
, m_projectName(projectName)
, m_configName(conf)
{
::wxPGPropertyBooleanUseCheckbox(m_pgMgr136->GetGrid());
}
void PSGeneralPage::OnProjectCustumBuildUI(wxUpdateUIEvent& event)
{
// do not disable the General page even when in custom build
event.Enable(m_checkBoxEnabled->IsChecked());
}
void PSGeneralPage::Load(BuildConfigPtr buildConf)
{
Clear();
m_configName = buildConf->GetName();
m_checkBoxEnabled->SetValue(buildConf->IsProjectEnabled());
m_pgPropArgs->SetValue(buildConf->GetCommandArguments());
m_pgPropDebugArgs->SetValueFromString(buildConf->GetDebugArgs());
m_pgPropIntermediateFolder->SetValueFromString(buildConf->GetIntermediateDirectory());
m_pgPropGUIApp->SetValue(buildConf->IsGUIProgram());
m_pgPropOutputFile->SetValueFromString(buildConf->GetOutputFileName());
m_pgPropPause->SetValue(buildConf->GetPauseWhenExecEnds());
m_pgPropProgram->SetValueFromString(buildConf->GetCommand());
m_pgPropWorkingDirectory->SetValue(buildConf->GetWorkingDirectory());
// Project type
wxPGChoices choices;
choices.Add(PROJECT_TYPE_STATIC_LIBRARY);
choices.Add(PROJECT_TYPE_DYNAMIC_LIBRARY);
choices.Add(PROJECT_TYPE_EXECUTABLE);
m_pgPropProjectType->SetChoices(choices);
int sel = choices.Index(buildConf->GetProjectType());
if(sel != wxNOT_FOUND) {
m_pgPropProjectType->SetChoiceSelection(sel);
}
// Builders
wxPGChoices builders;
std::list<wxString> buildersList;
BuildManagerST::Get()->GetBuilders(buildersList);
std::for_each(buildersList.begin(), buildersList.end(), [&](const wxString& builder) { builders.Add(builder); });
m_pgPropMakeGenerator->SetChoices(builders);
m_pgPropMakeGeneratorArgs->SetValue(buildConf->GetBuildSystemArguments());
m_pgPropMakeGenerator->SetExpanded(false);
sel = builders.Index(buildConf->GetBuildSystem());
if(sel != wxNOT_FOUND) {
m_pgPropMakeGenerator->SetChoiceSelection(sel);
}
// Compilers
choices.Clear();
wxString cmpType = buildConf->GetCompilerType();
BuildSettingsConfigCookie cookie;
CompilerPtr cmp = BuildSettingsConfigST::Get()->GetFirstCompiler(cookie);
while(cmp) {
choices.Add(cmp->GetName());
cmp = BuildSettingsConfigST::Get()->GetNextCompiler(cookie);
}
m_pgPropCompiler->SetChoices(choices);
sel = choices.Index(buildConf->GetCompiler()->GetName());
if(sel != wxNOT_FOUND) {
m_pgPropCompiler->SetChoiceSelection(sel);
}
// Debuggers
choices.Clear();
wxString dbgType = buildConf->GetDebuggerType();
wxArrayString dbgs = DebuggerMgr::Get().GetAvailableDebuggers();
choices.Add(dbgs);
m_pgPropDebugger->SetChoices(choices);
sel = choices.Index(buildConf->GetDebuggerType());
if(sel != wxNOT_FOUND) {
m_pgPropDebugger->SetChoiceSelection(sel);
}
m_pgPropUseSeparateDebuggerArgs->SetValue(buildConf->GetUseSeparateDebugArgs());
m_dlg->SetIsProjectEnabled(buildConf->IsProjectEnabled());
}
void PSGeneralPage::Save(BuildConfigPtr buildConf, ProjectSettingsPtr projSettingsPtr)
{
buildConf->SetOutputFileName(GetPropertyAsString(m_pgPropOutputFile));
buildConf->SetIntermediateDirectory(GetPropertyAsString(m_pgPropIntermediateFolder));
buildConf->SetCommand(GetPropertyAsString(m_pgPropProgram));
buildConf->SetCommandArguments(GetPropertyAsString(m_pgPropArgs));
buildConf->SetWorkingDirectory(GetPropertyAsString(m_pgPropWorkingDirectory));
// Get the project type selection, unlocalised
projSettingsPtr->SetProjectType(GetPropertyAsString(m_pgPropProjectType));
buildConf->SetBuildSystemArguments(GetPropertyAsString(m_pgPropMakeGeneratorArgs));
buildConf->SetBuildSystem(GetPropertyAsString(m_pgPropMakeGenerator));
buildConf->SetCompilerType(GetPropertyAsString(m_pgPropCompiler));
buildConf->SetDebuggerType(GetPropertyAsString(m_pgPropDebugger));
buildConf->SetPauseWhenExecEnds(GetPropertyAsBool(m_pgPropPause));
buildConf->SetProjectType(GetPropertyAsString(m_pgPropProjectType));
buildConf->SetDebugArgs(GetPropertyAsString(m_pgPropDebugArgs));
buildConf->SetIsGUIProgram(GetPropertyAsBool(m_pgPropGUIApp));
buildConf->SetIsProjectEnabled(m_checkBoxEnabled->IsChecked());
buildConf->SetUseSeparateDebugArgs(GetPropertyAsBool(m_pgPropUseSeparateDebuggerArgs));
}
void PSGeneralPage::Clear()
{
wxPropertyGridIterator iter = m_pgMgr136->GetGrid()->GetIterator();
for(; !iter.AtEnd(); ++iter) {
if(iter.GetProperty() && !iter.GetProperty()->IsCategory()) {
iter.GetProperty()->SetValueToUnspecified();
}
}
m_checkBoxEnabled->SetValue(true);
}
void PSGeneralPage::OnValueChanged(wxPropertyGridEvent& event) { m_dlg->SetIsDirty(true); }
bool PSGeneralPage::GetPropertyAsBool(wxPGProperty* prop) const
{
wxVariant v = prop->GetValue();
bool b = v.GetBool();
return b;
}
wxString PSGeneralPage::GetPropertyAsString(wxPGProperty* prop) const
{
wxString s = prop->GetValueAsString();
return s;
}
void PSGeneralPage::OnProjectEnabled(wxCommandEvent& event)
{
m_dlg->SetIsProjectEnabled(event.IsChecked());
m_dlg->SetIsDirty(true);
m_dlg->ShowHideDisabledMessage();
}
void PSGeneralPage::OnCustomEditorClicked(wxCommandEvent& event)
{
wxPGProperty* prop = m_pgMgr136->GetSelectedProperty();
CHECK_PTR_RET(prop);
m_dlg->SetIsDirty(true);
if(prop == m_pgPropProgram) {
wxFileName curvalue = prop->GetValueAsString();
wxString program = ::wxFileSelector(_("Choose a file"), curvalue.GetPath());
if(!program.IsEmpty()) {
program.Replace("\\", "/");
prop->SetValue(program);
}
} else if(prop == m_pgPropWorkingDirectory) {
wxString curpath = prop->GetValueAsString();
wxFileName fp(curpath, "");
wxString newPath = ::wxDirSelector(_("Choose a directory"), fp.GetPath());
if(!newPath.IsEmpty()) {
newPath.Replace("\\", "/");
prop->SetValue(newPath);
}
}
}
|