1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Dynamic events wxWindows sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dynamic.cpp"
14 #pragma interface "dynamic.cpp"
17 // For compilers that support precompilation, includes "wx/wx.h".
18 #include "wx/wxprec.h"
28 #if defined(__WXGTK__) || defined(__WXMOTIF__)
29 #include "mondrian.xpm"
32 // Define a new application type
33 class MyApp
: public wxApp
38 // Define a new frame type
39 class MyFrame
: public wxFrame
41 MyFrame(wxFrame
*frame
, char *title
, int x
, int y
, int w
, int h
);
44 void OnQuit(wxCommandEvent
& event
);
45 void OnAbout(wxCommandEvent
& event
);
46 bool OnClose(void) { return TRUE
; }
49 // ID for the menu commands
50 #define DYNAMIC_QUIT 1
51 #define DYNAMIC_TEXT 101
52 #define DYNAMIC_ABOUT 102
54 // Create a new application object
57 // `Main program' equivalent, creating windows and returning main app frame
58 bool MyApp::OnInit(void)
60 // Create the main frame window
61 MyFrame
*frame
= new MyFrame(NULL
, "Dynamic wxWindows App", 50, 50, 450, 340);
63 frame
->Connect( DYNAMIC_QUIT
, -1, wxEVT_COMMAND_MENU_SELECTED
,
64 (wxObjectEventFunction
) (wxEventFunction
) (wxCommandEventFunction
)
66 frame
->Connect( DYNAMIC_ABOUT
, -1, wxEVT_COMMAND_MENU_SELECTED
,
67 (wxObjectEventFunction
) (wxEventFunction
) (wxCommandEventFunction
)
72 frame
->SetIcon(wxIcon("mondrian"));
74 frame
->SetIcon(wxIcon(mondrian_xpm
));
78 wxMenu
*file_menu
= new wxMenu
;
80 file_menu
->Append(DYNAMIC_ABOUT
, "&About");
81 file_menu
->Append(DYNAMIC_QUIT
, "E&xit");
82 wxMenuBar
*menu_bar
= new wxMenuBar
;
83 menu_bar
->Append(file_menu
, "&File");
84 frame
->SetMenuBar(menu_bar
);
86 // Make a panel with a message
87 wxPanel
*panel
= new wxPanel(frame
, -1, wxPoint(0, 0), wxSize(400, 200), wxTAB_TRAVERSAL
);
89 (void)new wxStaticText(panel
, 311, "Hello!", wxPoint(10, 10), wxSize(-1, -1), 0);
99 // My frame constructor
100 MyFrame::MyFrame(wxFrame
*frame
, char *title
, int x
, int y
, int w
, int h
):
101 wxFrame(frame
, -1, title
, wxPoint(x
, y
), wxSize(w
, h
))
104 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
) )
109 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
) )
111 wxMessageDialog
dialog(this, "This demonstrates dynamic event handling",
112 "About Dynamic", wxYES_NO
|wxCANCEL
);