// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart and Markus Holzem
-// Licence: wxWindows license
+// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifndef __DIALOGSH__
// Define a new application type
class MyApp: public wxApp
-{ public:
- bool OnInit(void);
+{
+public:
+ bool OnInit();
wxFont m_canvasFont;
wxColour m_canvasTextColour;
// Define a new frame type
class MyFrame: public wxFrame
-{ public:
- MyFrame(wxWindow *parent, const wxString& title, const wxPoint& pos,
- const wxSize& size);
- bool OnClose(void) { return TRUE; }
+{
+public:
+ MyFrame(wxWindow *parent, const wxString& title,
+ const wxPoint& pos, const wxSize& size);
- void ChooseColour(wxCommandEvent& event);
- void ChooseFont(wxCommandEvent& event);
+ void ChooseColour(wxCommandEvent& event);
+ void ChooseFont(wxCommandEvent& event);
void MessageBox(wxCommandEvent& event);
void SingleChoice(wxCommandEvent& event);
void TextEntry(wxCommandEvent& event);
+ void NumericEntry(wxCommandEvent& event);
void FileOpen(wxCommandEvent& event);
void FileSave(wxCommandEvent& event);
void DirChoose(wxCommandEvent& event);
+ void ShowTip(wxCommandEvent& event);
-#if !defined(__WXMSW__) || USE_GENERIC_DIALOGS_IN_MSW
- void ChooseColourGeneric(wxCommandEvent& event);
- void ChooseFontGeneric(wxCommandEvent& event);
+#if !defined(__WXMSW__) || wxTEST_GENERIC_DIALOGS_IN_MSW
+ void ChooseColourGeneric(wxCommandEvent& event);
+ void ChooseFontGeneric(wxCommandEvent& event);
#endif
- void OnExit(wxCommandEvent& event);
-DECLARE_EVENT_TABLE()
+
+ void OnExit(wxCommandEvent& event);
+
+ DECLARE_EVENT_TABLE()
};
class MyCanvas: public wxScrolledWindow
{
- public:
- MyCanvas(wxWindow *parent):
- wxScrolledWindow(parent)
- {
- }
- void OnPaint(wxPaintEvent& event);
-DECLARE_EVENT_TABLE()
+public:
+ MyCanvas(wxWindow *parent) : wxScrolledWindow(parent) { }
+
+ void OnPaint(wxPaintEvent& event);
+
+ DECLARE_EVENT_TABLE()
};
#define DIALOGS_FILE_OPEN 8
#define DIALOGS_FILE_SAVE 9
#define DIALOGS_DIR_CHOOSE 10
+#define DIALOGS_TIP 11
+#define DIALOGS_NUM_ENTRY 13
#endif