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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : newtooldlg.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 "externaltooldlg.h"
#include "externaltoolsdata.h"
#include "macrosdlg.h"
#include "newtooldlg.h"
#include "windowattrmanager.h"
#include "workspace.h"
#include <wx/dirdlg.h>
#include <wx/filedlg.h>
#include <wx/msgdlg.h>
NewToolDlg::NewToolDlg(wxWindow* parent, IManager* mgr, ExternalToolData* data)
: NewToolBase(parent)
, m_mgr(mgr)
{
wxArrayString choices;
for(size_t i = 0; i < MAX_TOOLS; ++i) {
wxString toolId;
toolId << "external_tool_" << i;
choices.Add(toolId);
}
m_choiceId->Clear();
m_choiceId->Append(choices);
m_choiceId->SetFocus();
if(data) {
m_choiceId->SetStringSelection(data->m_id);
m_textCtrlPath->ChangeValue(data->m_path);
m_textCtrlWd->ChangeValue(data->m_workingDirectory);
m_textCtrlIcon16->ChangeValue(data->m_icon16);
m_textCtrlIcon24->ChangeValue(data->m_icon24);
m_textCtrlName->ChangeValue(data->m_name);
m_checkBoxCaptureOutput->SetValue(data->m_captureOutput);
m_checkBoxSaveAllFilesBefore->SetValue(data->m_saveAllFiles);
m_checkBoxCallOnFileSave->SetValue(data->m_callOnFileSave);
m_choiceId->Enable(false);
}
GetSizer()->Fit(this);
CentreOnParent();
}
void NewToolDlg::OnButtonBrowsePath(wxCommandEvent& event)
{
wxUnusedVar(event);
wxString path = m_textCtrlPath->GetValue();
wxString new_path = wxFileSelector(_("Select a program:"), path.c_str(), wxT(""), wxT(""),
wxFileSelectorDefaultWildcardStr, 0, this);
if(new_path.IsEmpty() == false) { m_textCtrlPath->SetValue(new_path); }
}
void NewToolDlg::OnButtonBrowseWD(wxCommandEvent& event)
{
wxUnusedVar(event);
wxString path(m_textCtrlWd->GetValue());
wxString new_path =
wxDirSelector(_("Select a working directory:"), path, wxDD_DEFAULT_STYLE, wxDefaultPosition, this);
if(new_path.IsEmpty() == false) { m_textCtrlWd->SetValue(new_path); }
}
void NewToolDlg::OnButtonHelp(wxCommandEvent& event)
{
wxUnusedVar(event);
wxString errMsg = wxT("");
wxString projectName = m_mgr->GetWorkspace()->GetActiveProjectName();
ProjectPtr project = m_mgr->GetWorkspace()->FindProjectByName(projectName, errMsg);
IEditor* editor = m_mgr->GetActiveEditor();
MacrosDlg dlg(this, MacrosDlg::MacrosExternalTools, project, editor);
dlg.ShowModal();
}
void NewToolDlg::OnButtonOk(wxCommandEvent& event)
{
wxUnusedVar(event);
int rc(wxID_OK);
EndModal(rc);
}
void NewToolDlg::OnButtonCancel(wxCommandEvent& event)
{
wxUnusedVar(event);
EndModal(wxID_CANCEL);
}
void NewToolDlg::OnButtonBrowseIcon16(wxCommandEvent& event)
{
wxUnusedVar(event);
wxString path = m_textCtrlIcon16->GetValue();
wxString new_path =
wxFileSelector(_("Select an icon:"), path.c_str(), wxT(""), wxT(""), wxFileSelectorDefaultWildcardStr, 0, this);
if(new_path.IsEmpty() == false) { m_textCtrlIcon16->SetValue(new_path); }
}
void NewToolDlg::OnButtonBrowseIcon24(wxCommandEvent& event)
{
wxUnusedVar(event);
wxString path = m_textCtrlIcon24->GetValue();
wxString new_path =
wxFileSelector(_("Select an icon:"), path.c_str(), wxT(""), wxT(""), wxFileSelectorDefaultWildcardStr, 0, this);
if(new_path.IsEmpty() == false) { m_textCtrlIcon24->SetValue(new_path); }
}
NewToolDlg::~NewToolDlg() {}
void NewToolDlg::OnIdSelected(wxCommandEvent& event) {}
void NewToolDlg::OnButtonOkUI(wxUpdateUIEvent& event)
{
event.Enable((m_choiceId->GetSelection() != wxNOT_FOUND) && !m_textCtrlName->IsEmpty() &&
!m_textCtrlPath->IsEmpty());
}
|