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