]> git.saurik.com Git - wxWidgets.git/blob - samples/minifram/test.cpp
Some more drawing things,
[wxWidgets.git] / samples / minifram / test.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: test.cpp
3 // Purpose: wxMiniFrame sample
4 // Author: Robert Roebling
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
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
23 #include "wx/toolbar.h"
24 #include "test.h"
25
26 #if defined(__WXGTK__) || defined(__WXMOTIF__)
27 #include "mondrian.xpm"
28 #include "bitmaps/new.xpm"
29 #include "bitmaps/open.xpm"
30 #include "bitmaps/save.xpm"
31 #include "bitmaps/copy.xpm"
32 #include "bitmaps/cut.xpm"
33 // #include "bitmaps/paste.xpm"
34 #include "bitmaps/print.xpm"
35 #include "bitmaps/preview.xpm"
36 #include "bitmaps/help.xpm"
37 #endif
38
39 // start wxWindows
40
41 IMPLEMENT_APP(MyApp)
42
43 // globas
44
45 MyMainFrame *main_frame = (MyMainFrame*) NULL;
46 MyMiniFrame *mini_frame = (MyMiniFrame*) NULL;
47 bool mini_frame_exists = FALSE;
48 wxButton *button = (wxButton*) NULL;
49
50 // The `main program' equivalent, creating the windows and returning the
51 // main frame
52 bool MyApp::OnInit()
53 {
54 // Create the main frame window
55 main_frame = new MyMainFrame((wxFrame *) NULL, -1, "wxFrame sample",
56 wxPoint(100, 100), wxSize(300, 200));
57
58 main_frame->CreateToolBar(wxNO_BORDER|wxTB_VERTICAL, ID_TOOLBAR);
59 InitToolbar(main_frame->GetToolBar());
60
61 button = new wxButton( main_frame, ID_REPARENT, "Press to reparent!" );
62
63 // Create the mini frame window
64 mini_frame = new MyMiniFrame( main_frame, -1, "wxMiniFrame sample",
65 wxPoint(100, 100), wxSize(220, 100));
66 mini_frame_exists = TRUE;
67
68 mini_frame->CreateToolBar(wxNO_BORDER|wxTB_HORIZONTAL|wxTB_FLAT, ID_TOOLBAR);
69 InitToolbar(mini_frame->GetToolBar());
70
71 #ifdef __WXMSW__
72 main_frame->SetIcon(wxIcon("mondrian"));
73 mini_frame->SetIcon(wxIcon("mondrian"));
74 #else
75 main_frame->SetIcon( wxIcon(mondrian_xpm) );
76 mini_frame->SetIcon( wxIcon(mondrian_xpm) );
77 #endif
78
79 SetTopWindow(main_frame);
80
81 main_frame->Show(TRUE);
82 mini_frame->Show(TRUE);
83
84 return TRUE;
85 }
86
87 bool MyApp::InitToolbar(wxToolBar* toolBar)
88 {
89 toolBar->SetMargins(5, 5);
90
91 // Set up toolbar
92 wxBitmap* toolBarBitmaps[8];
93
94 #ifdef __WXMSW__
95 toolBarBitmaps[0] = new wxBitmap("icon1");
96 toolBarBitmaps[1] = new wxBitmap("icon2");
97 toolBarBitmaps[2] = new wxBitmap("icon3");
98 toolBarBitmaps[3] = new wxBitmap("icon4");
99 toolBarBitmaps[4] = new wxBitmap("icon5");
100 toolBarBitmaps[5] = new wxBitmap("icon6");
101 toolBarBitmaps[6] = new wxBitmap("icon7");
102 toolBarBitmaps[7] = new wxBitmap("icon8");
103 #else
104 toolBarBitmaps[0] = new wxBitmap( new_xpm );
105 toolBarBitmaps[1] = new wxBitmap( open_xpm );
106 toolBarBitmaps[2] = new wxBitmap( save_xpm );
107 toolBarBitmaps[3] = new wxBitmap( copy_xpm );
108 toolBarBitmaps[4] = new wxBitmap( cut_xpm );
109 // toolBarBitmaps[5] = new wxBitmap( paste_xpm );
110 toolBarBitmaps[5] = new wxBitmap( preview_xpm );
111 toolBarBitmaps[6] = new wxBitmap( print_xpm );
112 toolBarBitmaps[7] = new wxBitmap( help_xpm );
113 #endif
114
115 #ifdef __WXMSW__
116 int width = 24;
117 #else
118 int width = 16;
119 #endif
120 int currentX = 5;
121
122 toolBar->AddTool(wxID_NEW, *(toolBarBitmaps[0]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "New file");
123 currentX += width + 5;
124 toolBar->AddTool(wxID_OPEN, *(toolBarBitmaps[1]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Open file");
125 currentX += width + 5;
126 toolBar->AddTool(wxID_SAVE, *(toolBarBitmaps[2]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Save file");
127 currentX += width + 5;
128 toolBar->AddSeparator();
129 toolBar->AddTool(wxID_COPY, *(toolBarBitmaps[3]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Copy");
130 currentX += width + 5;
131 toolBar->AddTool(wxID_CUT, *(toolBarBitmaps[4]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Cut");
132 currentX += width + 5;
133 toolBar->AddTool(wxID_PASTE, *(toolBarBitmaps[5]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Paste");
134 currentX += width + 5;
135 toolBar->AddSeparator();
136 toolBar->AddTool(wxID_PRINT, *(toolBarBitmaps[6]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Reparent the button");
137 currentX += width + 5;
138 toolBar->AddSeparator();
139 toolBar->AddTool(wxID_HELP, *(toolBarBitmaps[7]), wxNullBitmap, FALSE, currentX, -1, (wxObject *) NULL, "Help");
140
141 toolBar->Realize();
142
143 toolBar->EnableTool( wxID_HELP, FALSE );
144
145 // Can delete the bitmaps since they're reference counted
146 int i;
147 for (i = 0; i < 8; i++)
148 delete toolBarBitmaps[i];
149
150 return TRUE;
151 }
152
153 // MyMiniFrame
154
155 BEGIN_EVENT_TABLE(MyMiniFrame, wxMiniFrame)
156 EVT_CLOSE ( MyMiniFrame::OnCloseWindow)
157 EVT_BUTTON (ID_REPARENT, MyMiniFrame::OnReparent)
158 EVT_MENU (wxID_PRINT, MyMiniFrame::OnReparent)
159 END_EVENT_TABLE()
160
161 MyMiniFrame::MyMiniFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
162 const wxSize& size ) :
163 wxMiniFrame(parent, id, title, pos, size )
164 {
165 }
166
167 void MyMiniFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
168 {
169 // make it known that the miniframe is no more
170 mini_frame_exists = FALSE;
171 Destroy();
172 }
173
174 void MyMiniFrame::OnReparent(wxCommandEvent& WXUNUSED(event))
175 {
176 button->Reparent( main_frame );
177 }
178
179 // MyMainFrame
180
181 BEGIN_EVENT_TABLE(MyMainFrame, wxFrame)
182 EVT_CLOSE ( MyMainFrame::OnCloseWindow)
183 EVT_BUTTON (ID_REPARENT, MyMainFrame::OnReparent)
184 EVT_MENU (wxID_PRINT, MyMainFrame::OnReparent)
185 END_EVENT_TABLE()
186
187 MyMainFrame::MyMainFrame(wxFrame* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
188 const wxSize& size ) :
189 wxFrame(parent, id, title, pos, size )
190 {
191 }
192
193 void MyMainFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
194 {
195 Destroy();
196 }
197
198 void MyMainFrame::OnReparent(wxCommandEvent& WXUNUSED(event))
199 {
200 // practical jokers might find satisfaction in reparenting the button
201 // after closing the mini_frame. We'll have the last laugh.
202 if (! mini_frame_exists)
203 wxMessageBox("The miniframe no longer exists.\n"
204 "You don't want to make this button an orphan, do you?",
205 "You got to be kidding");
206 else
207 button->Reparent( mini_frame );
208 }
209
210