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

66 lines
2.0 KiB
C
Raw Normal View History

2009-11-06 18:06:12 +01:00
/*
* Copyright 2005-2007 Gerald Schmidt.
*
* This file is part of Xml Copy Editor.
*
* 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; either version 2
* of the License, or (at your option) any later version.
2009-11-06 18:06:12 +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.
*
* 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
*/
#ifndef ASSOCIATE_DIALOG_H
#define ASSOCIATE_DIALOG_H
#include <wx/wx.h>
#include <wx/tipwin.h>
class AssociateDialog : public wxDialog
{
public:
AssociateDialog (
wxWindow *parent,
const wxString& titleParameter = wxEmptyString,
const wxString& labelParameter = wxEmptyString,
const wxString& typeParameter = _T ( "All" ),
const wxString& extensionParameter = _T ( "*.*" ),
const wxString& urlParameter = wxEmptyString,
wxString *lastDir = NULL,
2009-11-06 18:06:12 +01:00
bool auxNeededParameter = false,
const wxString& auxLabelTextParameter = wxEmptyString,
const wxString& auxParameter = wxEmptyString );
~AssociateDialog();
void OnOk ( wxCommandEvent& e );
void OnBrowse ( wxCommandEvent& e );
void OnContextHelp ( wxHelpEvent& e );
void OnUpdateOk ( wxUpdateUIEvent& event );
wxString getUrl();
wxString getAux();
enum constants
{
ID_URL,
ID_BROWSE,
ID_AUX
};
private:
wxTextCtrl *urlCtrl, *auxCtrl;
wxButton *browseButton;
wxStaticText *urlLabel, *auxLabel;
wxString title, label, type, extension, url;
wxString *mLastDir;
2009-11-06 18:06:12 +01:00
bool auxNeeded;
wxString auxLabelText, aux;
DECLARE_EVENT_TABLE()
};
#endif