xml-copy-editor-code/src/associatedialog.cpp

185 lines
5.1 KiB
C++
Raw Normal View History

2008-01-06 23:13:01 +01:00
/*
* Copyright 2005-2007 Gerald Schmidt.
2008-01-06 23:13:01 +01:00
*
* This file is part of Xml Copy Editor.
2008-01-06 23:13:01 +01:00
*
* Xml Copy Editor 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; version 2 of the License.
2008-01-06 23:13:01 +01:00
*
* Xml Copy Editor 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.
2008-01-06 23:13:01 +01:00
*
* You should have received a copy of the GNU General Public License
* along with Xml Copy Editor; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
2007-09-07 23:17:30 +02:00
#include <memory>
#include "associatedialog.h"
2007-09-08 00:25:30 +02:00
BEGIN_EVENT_TABLE ( AssociateDialog, wxDialog )
2008-01-06 23:13:01 +01:00
EVT_BUTTON ( wxID_OK, AssociateDialog::OnOk )
EVT_BUTTON ( ID_BROWSE, AssociateDialog::OnBrowse )
EVT_HELP_RANGE ( ID_URL, ID_AUX, AssociateDialog::OnContextHelp )
EVT_HELP ( wxID_OK, AssociateDialog::OnContextHelp )
EVT_HELP ( wxID_CANCEL, AssociateDialog::OnContextHelp )
EVT_UPDATE_UI ( wxID_OK, AssociateDialog::OnUpdateOk )
2007-09-07 23:17:30 +02:00
END_EVENT_TABLE()
2007-09-08 00:25:30 +02:00
AssociateDialog::AssociateDialog (
wxWindow *parent,
const wxString& titleParameter,
const wxString& labelParameter,
const wxString& typeParameter,
const wxString& extensionParameter,
const wxString& urlParameter,
bool auxNeededParameter,
const wxString& auxLabelTextParameter,
const wxString& auxParameter ) :
2008-01-06 23:13:01 +01:00
wxDialog(),
title ( titleParameter ),
label ( labelParameter ),
type ( typeParameter ),
extension ( extensionParameter ),
url ( urlParameter ),
auxNeeded ( auxNeededParameter ),
auxLabelText ( auxLabelTextParameter ),
aux ( auxParameter )
2007-09-07 23:17:30 +02:00
{
2008-01-06 23:13:01 +01:00
SetExtraStyle ( wxDIALOG_EX_CONTEXTHELP );
Create (
parent,
wxID_ANY,
title,
wxDefaultPosition,
wxSize ( -1, -1 ),
wxDEFAULT_DIALOG_STYLE );
2007-09-07 23:17:30 +02:00
2008-01-06 23:13:01 +01:00
wxBoxSizer *dialogSizer = new wxBoxSizer ( wxVERTICAL );
wxBoxSizer *horizontalSizer = new wxBoxSizer ( wxHORIZONTAL );
auxCtrl = NULL; // may or may not be used
urlLabel = new wxStaticText ( this, ID_URL, label );
urlCtrl = new wxTextCtrl (
this,
ID_URL,
url,
wxDefaultPosition,
wxSize ( 240, -1 ) );
browseButton = new wxButton (
this,
ID_BROWSE,
_ ( "Browse" ) );
horizontalSizer->Add ( urlCtrl, 0, wxLEFT, 0 );
horizontalSizer->Add ( browseButton, 0, wxLEFT, 5 );
2007-09-07 23:17:30 +02:00
2008-01-06 23:13:01 +01:00
if ( auxNeeded )
{
auxLabel = new wxStaticText ( this, ID_AUX, auxLabelText );
auxCtrl = new wxTextCtrl (
this,
ID_AUX,
aux,
wxDefaultPosition,
wxSize ( 240, -1 ) );
dialogSizer->Add ( auxLabel, 0, wxLEFT | wxTOP | wxALIGN_LEFT, 10 );
dialogSizer->Add ( auxCtrl, 0, wxALL, 5 );
}
2007-09-07 23:17:30 +02:00
2008-01-06 23:13:01 +01:00
dialogSizer->Add ( urlLabel, 0, wxTOP | wxLEFT | wxALIGN_LEFT, 10 );
dialogSizer->Add ( horizontalSizer, 0, wxALL, 5 );
dialogSizer->Add (
CreateButtonSizer ( wxOK | wxCANCEL ), 0, wxTOP | wxBOTTOM | wxALIGN_RIGHT, 10 );
this->SetSizer ( dialogSizer );
dialogSizer->SetSizeHints ( this );
2007-09-07 23:17:30 +02:00
2008-01-06 23:13:01 +01:00
if ( auxNeeded )
auxCtrl->SetFocus();
else
urlCtrl->SetFocus();
2007-09-07 23:17:30 +02:00
}
AssociateDialog::~AssociateDialog()
{ }
2007-09-08 00:25:30 +02:00
void AssociateDialog::OnOk ( wxCommandEvent& e )
2007-09-07 23:17:30 +02:00
{
2008-01-06 23:13:01 +01:00
url = urlCtrl->GetValue();
if ( auxCtrl )
aux = auxCtrl->GetValue();
e.Skip();
2007-09-07 23:17:30 +02:00
}
2007-09-08 00:25:30 +02:00
void AssociateDialog::OnContextHelp ( wxHelpEvent& e )
2007-09-07 23:17:30 +02:00
{
2008-01-06 23:13:01 +01:00
wxTipWindow *tw;
int id = e.GetId();
if ( id == ID_URL )
tw = new wxTipWindow (
this,
_ ( "Provides a space for you to type the path of the file" ) );
else if ( id == ID_BROWSE )
tw = new wxTipWindow (
this,
_ ( "Opens a standard file dialog" ) );
else if ( id == ID_AUX )
tw = new wxTipWindow (
this,
_ ( "Provides a space for you to type additional information" ) );
else if ( id == wxID_CANCEL )
tw = new wxTipWindow (
this,
_ ( "Closes this dialog without making any changes" ) );
else if ( id == wxID_OK )
tw = new wxTipWindow (
this,
_ ( "Selects the file specified" ) );
else
{ }
e.Skip();
2007-09-07 23:17:30 +02:00
}
2007-09-08 00:25:30 +02:00
void AssociateDialog::OnUpdateOk ( wxUpdateUIEvent& e )
2007-09-07 23:17:30 +02:00
{
2008-01-06 23:13:01 +01:00
e.Enable ( !urlCtrl->GetValue().empty() );
2007-09-07 23:17:30 +02:00
}
2007-09-08 00:25:30 +02:00
wxString AssociateDialog::getUrl()
{
2008-01-06 23:13:01 +01:00
return url;
2007-09-08 00:25:30 +02:00
}
wxString AssociateDialog::getAux()
{
2008-01-06 23:13:01 +01:00
return aux;
2007-09-08 00:25:30 +02:00
}
2007-09-07 23:17:30 +02:00
2007-09-08 00:25:30 +02:00
void AssociateDialog::OnBrowse ( wxCommandEvent& e )
2007-09-07 23:17:30 +02:00
{
2008-01-06 23:13:01 +01:00
wxString extensionArgument;
extensionArgument =
type +
_T ( " (" ) +
extension +
_T ( ")|" ) +
extension +
_ ( "|All files (*.*)|*.*" );
std::auto_ptr<wxFileDialog> fd ( new wxFileDialog (
this,
_ ( "Select " ) + type,
_T ( "" ),
_T ( "" ),
extensionArgument,
wxOPEN | wxFILE_MUST_EXIST | wxCHANGE_DIR
) );
2007-09-07 23:17:30 +02:00
2008-01-06 23:13:01 +01:00
if ( fd->ShowModal() == wxID_OK )
{
wxString newValue = fd->GetPath();
newValue.Replace ( _T ( "\\" ), _T ( "/" ), true );
newValue.Replace ( _T ( " " ), _T ( "%20" ), true );
urlCtrl->SetValue ( newValue );
}
2007-09-07 23:17:30 +02:00
}