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
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// 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 <wx/msgdlg.h>
#include "externaltooldlg.h"
#include "externaltoolsdata.h"
#include "newtooldlg.h"
#include <wx/dirdlg.h>
#include <wx/filedlg.h>
#include "macrosdlg.h"
#include "workspace.h"
NewToolDlg::NewToolDlg( wxWindow* parent, IManager *mgr, ExternalToolData *data)
: NewToolBase( parent )
, m_mgr(mgr)
{
// Don't use wxFB to load translated versions of these strings: the translations wouldn't be very sensible, and it might break things
const wxString IdChoices[] = { wxT("external_tool_0"), wxT("external_tool_1"), wxT("external_tool_2"), wxT("external_tool_3"), wxT("external_tool_4"),
wxT("external_tool_5"), wxT("external_tool_6"), wxT("external_tool_7"), wxT("external_tool_8"), wxT("external_tool_9") };
wxArrayString choices(10, IdChoices);
m_choiceId->Clear();
m_choiceId->Append(choices);
m_choiceId->SetFocus();
if( data ) {
m_textCtrlArguments->SetValue(data->m_args);
m_choiceId->SetStringSelection(data->m_id);
m_textCtrlPath->SetValue(data->m_path);
m_textCtrlWd->SetValue(data->m_workingDirectory);
m_textCtrlIcon16->SetValue(data->m_icon16);
m_textCtrlIcon24->SetValue(data->m_icon24);
m_textCtrlName->SetValue(data->m_name);
m_checkBoxCaptureProcessOutput->SetValue(data->m_captureOutput);
m_checkBoxSaveAllFilesBefore->SetValue(data->m_saveAllFiles);
}
}
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 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);
// load all the tools
ExternalToolsData inData;
m_mgr->GetConfigTool()->ReadObject(wxT("ExternalTools"), &inData);
for(size_t i=0; i<inData.GetTools().size(); i++){
if(GetToolId() == inData.GetTools().at(i).GetId()){
int answer = wxMessageBox(wxString::Format(_("Continue updating tool ID '%s'"), GetToolId().c_str()), _("CodeLite"), wxYES_NO|wxCANCEL, this);
if(answer != wxYES){
rc = wxID_CANCEL;
}
break;
}
}
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);
}
}
|