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

122 lines
3.3 KiB
C
Raw Normal View History

/*
* 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; version 2 of the License.
*
* 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
*/
2007-09-07 23:17:30 +02:00
#ifndef MYPROPERTYSHEET_H
#define MYPROPERTYSHEET_H
#include <wx/wx.h>
#include <wx/generic/propdlg.h>
#include <wx/filename.h>
#include "xmlctrl.h"
enum {
2007-09-08 00:25:30 +02:00
APPLICATION_DIR_BROWSE,
BROWSER_COMMAND_BROWSE,
FONT_BROWSE
2007-09-07 23:17:30 +02:00
};
enum langIndex {
2007-09-08 00:25:30 +02:00
INDEX_CHINESE_SIMPLIFIED = 0,
INDEX_CHINESE_TRADITIONAL,
INDEX_ENGLISH_US,
INDEX_FRENCH,
INDEX_GERMAN,
INDEX_SLOVAK,
INDEX_SWEDISH,
INDEX_UKRAINIAN
2007-09-07 23:17:30 +02:00
};
class MyPropertySheet : public wxPropertySheetDialog
{
2007-09-08 00:25:30 +02:00
public:
MyPropertySheet (
wxWindow *parent,
XmlCtrlProperties& propertiesParameter,
wxString& applicationDirParameter,
wxString& browserCommandParameter,
bool rememberOpenTabsParameter,
bool libxmlNetAccess,
bool singleInstanceCheck,
bool saveBom,
bool unlimitedUndo,
bool restoreLayout,
bool expandInternalEntities,
bool showFullPathOnFrame,
int lang,
wxWindowID id = wxID_ANY,
wxString title = _T ( "" ),
const wxPoint& position = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE );
2007-09-07 23:17:30 +02:00
~MyPropertySheet();
2007-09-08 00:25:30 +02:00
void OnOk ( wxCommandEvent& e );
void OnBrowserCommandBrowse ( wxCommandEvent& e );
void OnApplicationDirBrowse ( wxCommandEvent& e );
2007-09-07 23:17:30 +02:00
XmlCtrlProperties getProperties();
wxString getApplicationDir();
wxString getBrowserCommand();
bool getSingleInstanceCheck();
bool getRememberOpenTabs();
bool getLibxmlNetAccess();
bool getSaveBom();
bool getUnlimitedUndo();
bool getRestoreLayout();
bool getExpandInternalEntities();
bool getShowFullPathOnFrame();
int getLang();
2007-09-08 00:25:30 +02:00
private:
2007-09-07 23:17:30 +02:00
int lang;
wxCheckBox *completionBox,
2007-09-08 00:25:30 +02:00
*currentLineBox,
*foldBox,
*numberBox,
*whitespaceVisibleBox,
*indentLinesBox,
*deleteWholeTagBox,
*rememberOpenTabsBox,
*libxmlNetAccessBox,
*singleInstanceCheckBox,
*saveBomBox,
*protectHiddenElementsBox,
*toggleLineBackgroundBox,
*validateAsYouTypeBox,
*fullPathBox,
*highlightSyntaxBox,
*unlimitedUndoBox,
*restoreLayoutBox,
*expandInternalEntitiesBox,
*insertCloseTagBox;
2007-09-07 23:17:30 +02:00
wxChoice *languageBox, *fontBox;
wxTextCtrl *applicationDirEdit, *browserCommandEdit;
XmlCtrlProperties properties;
wxString applicationDir, browserCommand;
bool singleInstanceCheck,
2007-09-08 00:25:30 +02:00
rememberOpenTabs,
libxmlNetAccess,
saveBom,
unlimitedUndo,
restoreLayout,
expandInternalEntities,
showFullPathOnFrame,
insertCloseTag;
2007-09-07 23:17:30 +02:00
DECLARE_EVENT_TABLE()
};
#endif