]>
git.saurik.com Git - wxWidgets.git/blob - samples/minimal/minimal.cpp
cd34c36f20e811bb320584fde7b2eb27d2807b48
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Minimal wxWidgets sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers (this file is usually all you
28 // need because it includes almost all "standard" wxWidgets headers)
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 // the application icon (under Windows and OS/2 it is in resources and even
38 // though we could still include the XPM here it would be unused)
39 #if !defined(__WXMSW__) && !defined(__WXPM__)
40 #include "../sample.xpm"
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
47 // Define a new application type, each program should derive a class from wxApp
48 class MyApp
: public wxApp
51 // override base class virtuals
52 // ----------------------------
54 // this one is called on application startup and is a good place for the app
55 // initialization (doing it here and not in the ctor allows to have an error
56 // return: if OnInit() returns false, the application terminates)
57 virtual bool OnInit();
60 // Define a new frame type: this is going to be our main frame
61 class MyFrame
: public wxFrame
65 MyFrame(const wxString
& title
);
67 // event handlers (these functions should _not_ be virtual)
68 void OnQuit(wxCommandEvent
& event
);
69 void OnAbout(wxCommandEvent
& event
);
72 // any class wishing to process wxWidgets events must use this macro
76 // ----------------------------------------------------------------------------
78 // ----------------------------------------------------------------------------
80 // IDs for the controls and the menu commands
84 Minimal_Quit
= wxID_EXIT
,
86 // it is important for the id corresponding to the "About" command to have
87 // this standard value as otherwise it won't be handled properly under Mac
88 // (where it is special and put into the "Apple" menu)
89 Minimal_About
= wxID_ABOUT
92 // ----------------------------------------------------------------------------
93 // event tables and other macros for wxWidgets
94 // ----------------------------------------------------------------------------
96 // the event tables connect the wxWidgets events with the functions (event
97 // handlers) which process them. It can be also done at run-time, but for the
98 // simple menu events like this the static method is much simpler.
99 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
100 EVT_MENU(Minimal_Quit
, MyFrame::OnQuit
)
101 EVT_MENU(Minimal_About
, MyFrame::OnAbout
)
102 EVT_BUTTON(Minimal_About
, MyFrame::OnAbout
)
105 // Create a new application object: this macro will allow wxWidgets to create
106 // the application object during program execution (it's better than using a
107 // static object for many reasons) and also implements the accessor function
108 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
112 // ============================================================================
114 // ============================================================================
116 // ----------------------------------------------------------------------------
117 // the application class
118 // ----------------------------------------------------------------------------
120 // 'Main program' equivalent: the program execution "starts" here
123 // call the base class initialization method, currently it only parses a
124 // few common command-line options but it could be do more in the future
125 if ( !wxApp::OnInit() )
128 // create the main application window
129 MyFrame
*frame
= new MyFrame("Minimal wxWidgets App");
131 // and show it (the frames, unlike simple controls, are not shown when
132 // created initially)
135 // success: wxApp::OnRun() will be called which will enter the main message
136 // loop and the application will run. If we returned false here, the
137 // application would exit immediately.
141 // ----------------------------------------------------------------------------
143 // ----------------------------------------------------------------------------
146 MyFrame::MyFrame(const wxString
& title
)
147 : wxFrame(NULL
, wxID_ANY
, title
)
149 // set the frame icon
150 SetIcon(wxICON(sample
));
154 wxMenu
*fileMenu
= new wxMenu
;
156 // the "About" item should be in the help menu
157 wxMenu
*helpMenu
= new wxMenu
;
158 helpMenu
->Append(Minimal_About
, "&About...\tF1", "Show about dialog");
160 fileMenu
->Append(Minimal_Quit
, "E&xit\tAlt-X", "Quit this program");
162 // now append the freshly created menu to the menu bar...
163 wxMenuBar
*menuBar
= new wxMenuBar();
164 menuBar
->Append(fileMenu
, "&File");
165 menuBar
->Append(helpMenu
, "&Help");
167 // ... and attach this menu bar to the frame
169 #endif // wxUSE_MENUS
171 wxSizer
* const sizer
= new wxBoxSizer(wxVERTICAL
);
172 sizer
->Add(new wxButton(this, wxID_ABOUT
));
173 sizer
->Add(new wxButton(this, wxID_OPEN
));
177 // create a status bar just for fun (by default with 1 pane only)
179 SetStatusText("Welcome to wxWidgets!");
180 #endif // wxUSE_STATUSBAR
186 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
188 // true is to force the frame to close
192 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
194 wxGetTextFromUser("Your text?");
197 wxMessageBox(wxString::Format
201 "This is the minimal wxWidgets sample\n"
206 "About wxWidgets minimal sample",
207 wxOK
| wxICON_INFORMATION
,