1998-05-22 15:57:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: dialogs.h
|
|
|
|
// Purpose: Common dialogs demo
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 04/01/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
1999-07-22 19:39:47 -04:00
|
|
|
// Licence: wxWindows license
|
1998-05-22 15:57:05 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __DIALOGSH__
|
|
|
|
#define __DIALOGSH__
|
|
|
|
|
|
|
|
// Define a new application type
|
|
|
|
class MyApp: public wxApp
|
1999-07-22 19:39:47 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool OnInit();
|
1998-05-22 15:57:05 -04:00
|
|
|
|
|
|
|
wxFont m_canvasFont;
|
|
|
|
wxColour m_canvasTextColour;
|
|
|
|
};
|
|
|
|
|
2000-01-29 20:33:02 -05:00
|
|
|
// A modeless dialog
|
|
|
|
class MyModelessDialog : public wxDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyModelessDialog(wxWindow *parent);
|
|
|
|
};
|
|
|
|
|
1998-05-22 15:57:05 -04:00
|
|
|
// Define a new frame type
|
|
|
|
class MyFrame: public wxFrame
|
1999-07-22 19:39:47 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyFrame(wxWindow *parent, const wxString& title,
|
|
|
|
const wxPoint& pos, const wxSize& size);
|
1998-05-22 15:57:05 -04:00
|
|
|
|
1999-07-03 12:40:54 -04:00
|
|
|
void ChooseColour(wxCommandEvent& event);
|
|
|
|
void ChooseFont(wxCommandEvent& event);
|
2000-01-20 21:31:49 -05:00
|
|
|
void LogDialog(wxCommandEvent& event);
|
1998-05-22 15:57:05 -04:00
|
|
|
void MessageBox(wxCommandEvent& event);
|
|
|
|
void SingleChoice(wxCommandEvent& event);
|
|
|
|
void TextEntry(wxCommandEvent& event);
|
2000-01-24 13:26:54 -05:00
|
|
|
void PasswordEntry(wxCommandEvent& event);
|
1999-07-22 19:39:47 -04:00
|
|
|
void NumericEntry(wxCommandEvent& event);
|
1998-05-22 15:57:05 -04:00
|
|
|
void FileOpen(wxCommandEvent& event);
|
1999-12-06 19:48:45 -05:00
|
|
|
void FilesOpen(wxCommandEvent& event);
|
1998-05-22 15:57:05 -04:00
|
|
|
void FileSave(wxCommandEvent& event);
|
|
|
|
void DirChoose(wxCommandEvent& event);
|
1999-06-28 17:39:49 -04:00
|
|
|
void ShowTip(wxCommandEvent& event);
|
2000-01-29 20:33:02 -05:00
|
|
|
void ModelessDlg(wxCommandEvent& event);
|
1998-05-22 15:57:05 -04:00
|
|
|
|
1998-10-02 08:50:01 -04:00
|
|
|
#if !defined(__WXMSW__) || wxTEST_GENERIC_DIALOGS_IN_MSW
|
1999-07-03 12:40:54 -04:00
|
|
|
void ChooseColourGeneric(wxCommandEvent& event);
|
|
|
|
void ChooseFontGeneric(wxCommandEvent& event);
|
1998-05-22 15:57:05 -04:00
|
|
|
#endif
|
1999-07-22 19:39:47 -04:00
|
|
|
|
1999-07-03 12:40:54 -04:00
|
|
|
void OnExit(wxCommandEvent& event);
|
1999-07-22 19:39:47 -04:00
|
|
|
|
2000-01-29 20:33:02 -05:00
|
|
|
void OnButton(wxCommandEvent& event);
|
|
|
|
|
|
|
|
private:
|
|
|
|
MyModelessDialog *m_dialog;
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-22 15:57:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class MyCanvas: public wxScrolledWindow
|
|
|
|
{
|
1999-07-22 19:39:47 -04:00
|
|
|
public:
|
|
|
|
MyCanvas(wxWindow *parent) : wxScrolledWindow(parent) { }
|
|
|
|
|
|
|
|
void OnPaint(wxPaintEvent& event);
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-22 15:57:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Menu IDs
|
2000-01-24 13:26:54 -05:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
DIALOGS_CHOOSE_COLOUR = 1,
|
|
|
|
DIALOGS_CHOOSE_COLOUR_GENERIC,
|
|
|
|
DIALOGS_CHOOSE_FONT,
|
|
|
|
DIALOGS_CHOOSE_FONT_GENERIC,
|
|
|
|
DIALOGS_MESSAGE_BOX,
|
|
|
|
DIALOGS_SINGLE_CHOICE,
|
|
|
|
DIALOGS_TEXT_ENTRY,
|
|
|
|
DIALOGS_PASSWORD_ENTRY,
|
|
|
|
DIALOGS_FILE_OPEN,
|
|
|
|
DIALOGS_FILES_OPEN,
|
|
|
|
DIALOGS_FILE_SAVE,
|
|
|
|
DIALOGS_DIR_CHOOSE,
|
|
|
|
DIALOGS_TIP,
|
|
|
|
DIALOGS_NUM_ENTRY,
|
2000-01-29 20:33:02 -05:00
|
|
|
DIALOGS_LOG_DIALOG,
|
|
|
|
DIALOGS_MODELESS,
|
|
|
|
DIALOGS_MODELESS_BTN
|
2000-01-24 13:26:54 -05:00
|
|
|
};
|
1998-05-22 15:57:05 -04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|