]> git.saurik.com Git - wxWidgets.git/blame - samples/nativdlg/nativdlg.cpp
compilation fix after wxLoadFileSelector() changes
[wxWidgets.git] / samples / nativdlg / nativdlg.cpp
CommitLineData
bbf1f0e5 1/////////////////////////////////////////////////////////////////////////////
cb7d7375 2// Name: samples/nativdlg/nativdlg.cpp
bbf1f0e5
KB
3// Purpose: Native Windows dialog sample
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6aa89a22 8// Copyright: (c) Julian Smart
2f6c54eb 9// Licence: wxWindows license
bbf1f0e5
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbf1f0e5
KB
12// For compilers that support precompilation, includes "wx/wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
20#include "wx/wx.h"
21#endif
22
acbd13a3
JS
23#ifndef __WXMSW__
24#error Sorry, this sample is only appropriate under Windows.
25#endif
26
41f02b9a
FM
27#ifndef __WXMSW__
28 #include "../sample.xpm"
29#endif
30
bbf1f0e5
KB
31#include <ctype.h>
32#include "nativdlg.h"
33#include "resource.h"
34
41f02b9a
FM
35
36
37
bbf1f0e5
KB
38IMPLEMENT_APP(MyApp)
39
bbf1f0e5
KB
40bool MyApp::OnInit(void)
41{
45e6e6f8
VZ
42 if ( !wxApp::OnInit() )
43 return false;
44
bbf1f0e5 45 // Create the main frame window
be5a51fb 46 MyFrame *frame = new MyFrame(NULL, wxID_ANY, _T("wxWidgets Native Dialog Sample"), wxPoint(0, 0), wxSize(300, 250));
bbf1f0e5 47
8520f137 48#if wxUSE_STATUSBAR
bbf1f0e5
KB
49 // Give it a status line
50 frame->CreateStatusBar(2);
8520f137 51#endif // wxUSE_STATUSBAR
bbf1f0e5
KB
52
53 // Make a menubar
54 wxMenu *file_menu = new wxMenu;
55
600683ca
MB
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"));
bbf1f0e5
KB
58
59 wxMenuBar *menu_bar = new wxMenuBar;
60
600683ca 61 menu_bar->Append(file_menu, _T("&File"));
bbf1f0e5
KB
62
63 // Associate the menu bar with the frame
64 frame->SetMenuBar(menu_bar);
65
66 // Make a panel
1e79049d
VZ
67 frame->panel = new wxWindow(frame, wxID_ANY, wxPoint(0, 0), wxSize(400, 400), 0, _T("MyMainFrame"));
68 frame->Show(true);
bbf1f0e5
KB
69
70 // Return the main frame window
71 SetTopWindow(frame);
72
1e79049d 73 return true;
bbf1f0e5
KB
74}
75
76BEGIN_EVENT_TABLE(MyFrame, wxFrame)
2f6c54eb
VZ
77 EVT_MENU(RESOURCE_QUIT, MyFrame::OnQuit)
78 EVT_MENU(RESOURCE_TEST1, MyFrame::OnTest1)
bbf1f0e5
KB
79END_EVENT_TABLE()
80
81// Define my frame constructor
82MyFrame::MyFrame(wxWindow *parent, const wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size):
83 wxFrame(parent, id, title, pos, size)
84{
41f02b9a
FM
85 SetIcon(wxICON(sample));
86
87 panel = NULL;
bbf1f0e5
KB
88}
89
1e79049d 90void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 91{
1e79049d 92 Close(true);
bbf1f0e5
KB
93}
94
1e79049d 95void MyFrame::OnTest1(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 96{
cb7d7375 97#if ( defined(__WXPM__) || defined(__WXMSW__) ) && !defined(__WXUNIVERSAL__)
a61fea41
WS
98 MyDialog dialog;
99 if (dialog.LoadNativeDialog(this, _T("dialog1")))
100 {
101 dialog.ShowModal();
102 }
1e79049d 103#else
a61fea41 104 wxMessageBox(_T("No native dialog support"),_T("Platform limitation"));
1e79049d 105#endif
bbf1f0e5
KB
106}
107
bbf1f0e5 108BEGIN_EVENT_TABLE(MyDialog, wxDialog)
2f6c54eb
VZ
109 EVT_BUTTON(wxID_OK, MyDialog::OnOk)
110 EVT_BUTTON(wxID_CANCEL, MyDialog::OnCancel)
bbf1f0e5
KB
111END_EVENT_TABLE()
112
113
1e79049d 114void MyDialog::OnOk(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 115{
41f02b9a 116 EndModal(wxID_OK);
bbf1f0e5
KB
117}
118
1e79049d 119void MyDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 120{
41f02b9a 121 EndModal(wxID_CANCEL);
bbf1f0e5 122}