]>
git.saurik.com Git - wxWidgets.git/blob - samples/nativdlg/nativdlg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Native Windows dialog sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
16 // For compilers that support precompilation, includes "wx/wx.h".
17 #include "wx/wxprec.h"
28 #error Sorry, this sample is only appropriate under Windows.
36 MyFrame
*frame
= NULL
;
40 // Testing of ressources
45 bool MyApp::OnInit(void)
47 // Create the main frame window
48 frame
= new MyFrame(NULL
, -1, _T("wxWindows Native Dialog Sample"), wxPoint(0, 0), wxSize(300, 250));
50 // Give it a status line
51 frame
->CreateStatusBar(2);
54 wxMenu
*file_menu
= new wxMenu
;
56 file_menu
->Append(RESOURCE_TEST1
, _T("&Dialog box test"), _T("Test dialog box resource"));
57 file_menu
->Append(RESOURCE_QUIT
, _T("E&xit"), _T("Quit program"));
59 wxMenuBar
*menu_bar
= new wxMenuBar
;
61 menu_bar
->Append(file_menu
, _T("&File"));
63 // Associate the menu bar with the frame
64 frame
->SetMenuBar(menu_bar
);
67 frame
->panel
= new wxWindow(frame
, -1, wxPoint(0, 0), wxSize(400, 400), 0, _T("MyMainFrame"));
70 // Return the main frame window
76 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
77 EVT_MENU(RESOURCE_QUIT
, MyFrame::OnQuit
)
78 EVT_MENU(RESOURCE_TEST1
, MyFrame::OnTest1
)
81 // Define my frame constructor
82 MyFrame::MyFrame(wxWindow
*parent
, const wxWindowID id
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
83 wxFrame(parent
, id
, title
, pos
, size
)
88 void MyFrame::OnQuit(wxCommandEvent
& event
)
93 void MyFrame::OnTest1(wxCommandEvent
& event
)
95 MyDialog
*dialog
= new MyDialog
;
96 if (dialog
->LoadNativeDialog(this, _T("dialog1")))
98 dialog
->SetModal(TRUE
);
104 BEGIN_EVENT_TABLE(MyDialog
, wxDialog
)
105 EVT_BUTTON(wxID_OK
, MyDialog::OnOk
)
106 EVT_BUTTON(wxID_CANCEL
, MyDialog::OnCancel
)
110 void MyDialog::OnOk(wxCommandEvent
& event
)
115 void MyDialog::OnCancel(wxCommandEvent
& event
)
117 EndModal(wxID_CANCEL
);