100 lines
2.7 KiB
C++
100 lines
2.7 KiB
C++
/*
|
|
* 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.
|
|
*
|
|
* 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 MYPROPERTYSHEET_H
|
|
#define MYPROPERTYSHEET_H
|
|
|
|
#include <wx/wx.h>
|
|
#include <wx/generic/propdlg.h>
|
|
#include <wx/filename.h>
|
|
#include "xmlctrl.h"
|
|
|
|
enum
|
|
{
|
|
APPLICATION_DIR_BROWSE,
|
|
FONT_BROWSE
|
|
};
|
|
|
|
class MyPropertySheet : public wxPropertySheetDialog
|
|
{
|
|
public:
|
|
MyPropertySheet (
|
|
wxWindow *parent,
|
|
XmlCtrlProperties& propertiesParameter,
|
|
wxString& applicationDirParameter,
|
|
bool &rememberOpenTabsParameter,
|
|
bool &libxmlNetAccess,
|
|
bool &singleInstanceCheck,
|
|
bool &saveBom,
|
|
bool &unlimitedUndo,
|
|
bool &restoreLayout,
|
|
bool &expandInternalEntities,
|
|
bool &showFullPathOnFrame,
|
|
int &lang,
|
|
const std::set<const wxLanguageInfo *> &translations,
|
|
wxWindowID id = wxID_ANY,
|
|
wxString title = _T ( "" ),
|
|
const wxPoint& position = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxDEFAULT_DIALOG_STYLE );
|
|
~MyPropertySheet();
|
|
void OnOk ( wxCommandEvent& e );
|
|
void OnApplicationDirBrowse ( wxCommandEvent& e );
|
|
private:
|
|
int ⟨
|
|
wxCheckBox *completionBox,
|
|
*currentLineBox,
|
|
*foldBox,
|
|
*foldCompactBox,
|
|
*numberBox,
|
|
*whitespaceVisibleBox,
|
|
*indentLinesBox,
|
|
*deleteWholeTagBox,
|
|
*rememberOpenTabsBox,
|
|
*libxmlNetAccessBox,
|
|
*singleInstanceCheckBox,
|
|
*saveBomBox,
|
|
*protectHiddenElementsBox,
|
|
*toggleLineBackgroundBox,
|
|
*validateAsYouTypeBox,
|
|
*fullPathBox,
|
|
*highlightSyntaxBox,
|
|
*unlimitedUndoBox,
|
|
*restoreLayoutBox,
|
|
*expandInternalEntitiesBox,
|
|
*insertCloseTagBox;
|
|
wxChoice *languageBox, *fontBox;
|
|
wxTextCtrl *applicationDirEdit;
|
|
XmlCtrlProperties &properties;
|
|
wxString &applicationDir;
|
|
bool &singleInstanceCheck,
|
|
&rememberOpenTabs,
|
|
&libxmlNetAccess,
|
|
&saveBom,
|
|
&unlimitedUndo,
|
|
&restoreLayout,
|
|
&expandInternalEntities,
|
|
&showFullPathOnFrame;
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|