]> git.saurik.com Git - wxWidgets.git/blame_incremental - samples/resource/resource.cpp
added wxHTML i18n demonstration
[wxWidgets.git] / samples / resource / resource.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: resource.cpp
3// Purpose: Dialog resource sample
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13// #pragma implementation
14#endif
15
16// For compilers that support precompilation, includes "wx/wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
23#ifndef WX_PRECOMP
24#include "wx/wx.h"
25#endif
26
27#include "wx/resource.h"
28
29#include <ctype.h>
30#include "resource.h"
31
32// If we wanted to demonstrate total platform independence,
33// then we'd use the dynamic file loading form for all platforms.
34// But this shows how to embed the wxWindows resources
35// in the program code/executable for UNIX and Windows
36// platforms.
37
38// In order to get the ID of the controls defined in the
39// dialog, we include the header automatically generated
40// by DialogEd
41
42#include "dialog1.h"
43
44// If you have a Windows compiler that can cope with long strings,
45// then you can always use the #include form for simplicity.
46
47// NOTE: Borland's brc32.exe resource compiler doesn't recognize
48// the TEXT resource, for some reason, so either run-time file loading
49// or file inclusion should be used.
50
51#if defined(__WXMSW__)
52// Under Windows, some compilers can't include
53// a whole .wxr file. So we use a .rc user-defined resource
54// instead. dialog1 will point to the whole .wxr 'file'.
55static char *dialog1 = NULL;
56static char *menu1 = NULL;
57#else
58// Other platforms should have sensible compilers that
59// cope with long strings.
60#include "dialog1.wxr"
61#include "menu1.wxr"
62#endif
63
64// Declare two frames
65MyFrame *frame = (MyFrame *) NULL;
66
67IMPLEMENT_APP(MyApp)
68
69// Testing of ressources
70MyApp::MyApp()
71{
72}
73
74// The `main program' equivalent, creating the windows and returning the
75// main frame
76bool MyApp::OnInit(void)
77{
78#if defined(__WXMSW__)
79 // Load the .wxr 'file' from a .rc resource, under Windows.
80 dialog1 = wxLoadUserResource("dialog1", "WXRDATA");
81 menu1 = wxLoadUserResource("menu1", "WXRDATA");
82 // All resources in the file (only one in this case) get parsed
83 // by this call.
84 wxResourceParseString(dialog1);
85 wxResourceParseString(menu1);
86#else
87 // Simply parse the data pointed to by the variable dialog1.
88 // If there were several resources, there would be several
89 // variables, and this would need to be called several times.
90 wxResourceParseData(dialog1);
91 wxResourceParseData(menu1);
92#endif
93
94 // Create the main frame window
95 frame = new MyFrame((wxFrame *) NULL, -1, (char *) "wxWindows Resource Sample", wxPoint(-1, -1), wxSize(300, 250));
96
97 // Give it a status line
98 frame->CreateStatusBar(2);
99
100 wxMenuBar *menu_bar = wxResourceCreateMenuBar("menu1");
101
102 // Associate the menu bar with the frame
103 frame->SetMenuBar(menu_bar);
104
105 // Make a panel
106 frame->panel = new MyPanel(frame, -1, wxPoint(0, 0), wxSize(400, 400), 0, "MyMainFrame");
107 frame->Show(TRUE);
108
109 SetTopWindow(frame);
110
111 return TRUE;
112}
113
114MyApp::~MyApp()
115{
116 delete dialog1;
117 delete menu1;
118}
119
120BEGIN_EVENT_TABLE(MyPanel, wxPanel)
121 EVT_LEFT_DOWN( MyPanel::OnClick)
122END_EVENT_TABLE()
123
124MyPanel::MyPanel( wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& size,
125 int style, const wxString &name ) :
126 wxPanel( parent, id, pos, size, style, name )
127{
128}
129
130void MyPanel::OnClick( wxMouseEvent &WXUNUSED(event2) )
131{
132 MyFrame *frame = (MyFrame*)(wxTheApp->GetTopWindow());
133 wxCommandEvent event;
134 frame->OnTestDialog( event );
135}
136
137
138BEGIN_EVENT_TABLE(MyFrame, wxFrame)
139 EVT_MENU(RESOURCE_ABOUT, MyFrame::OnAbout)
140 EVT_MENU(RESOURCE_QUIT, MyFrame::OnQuit)
141 EVT_MENU(RESOURCE_TESTDIALOG, MyFrame::OnTestDialog)
142END_EVENT_TABLE()
143
144// Define my frame constructor
145MyFrame::MyFrame(wxWindow *parent, const wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size):
146 wxFrame(parent, id, title, pos, size)
147{
148 panel = (wxWindow *) NULL;
149}
150
151void MyFrame::OnAbout( wxCommandEvent& WXUNUSED(event) )
152{
153 wxMessageBox("wxWindows resource sample.\n"
154 "(c) Julian Smart", "About wxWindows sample",
155 wxICON_INFORMATION | wxOK);
156}
157
158void MyFrame::OnQuit( wxCommandEvent& WXUNUSED(event) )
159{
160 Close(TRUE);
161}
162
163void MyFrame::OnTestDialog(wxCommandEvent& WXUNUSED(event) )
164{
165 MyDialog *dialog = new MyDialog;
166 if (dialog->LoadFromResource(this, "dialog1"))
167 {
168 wxTextCtrl *text = (wxTextCtrl *)wxFindWindowByName("multitext3", dialog);
169 if (text)
170 text->SetValue("wxWindows resource demo");
171 dialog->ShowModal();
172 }
173 dialog->Close(TRUE);
174}
175
176BEGIN_EVENT_TABLE(MyDialog, wxDialog)
177 // EVT_BUTTON(RESOURCE_OK, MyDialog::OnOk)
178 EVT_BUTTON(ID_BUTTON109, MyDialog::OnCancel)
179END_EVENT_TABLE()
180
181
182void MyDialog::OnOk(wxCommandEvent& WXUNUSED(event) )
183{
184 // EndModal(RESOURCE_OK);
185}
186
187void MyDialog::OnCancel(wxCommandEvent& WXUNUSED(event) )
188{
189 EndModal(ID_BUTTON109);
190}
191
192