]>
git.saurik.com Git - wxWidgets.git/blob - samples/minifram/minifram.cpp
1066f8eeb584e2e108a24468de3d2086ba8699bc
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMiniFrame sample
4 // Author: Robert Roebling
8 // Copyright: (c) Julian Smart and Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
23 #include "wx/toolbar.h"
26 #if !defined(__WXMSW__) && !defined(__WXPM__)
27 #include "mondrian.xpm"
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"
46 MyMainFrame
*main_frame
= (MyMainFrame
*) NULL
;
47 MyMiniFrame
*mini_frame
= (MyMiniFrame
*) NULL
;
48 bool mini_frame_exists
= false;
49 wxButton
*button
= (wxButton
*) NULL
;
51 // The `main program' equivalent, creating the windows and returning the
55 // Create the main frame window
56 main_frame
= new MyMainFrame((wxFrame
*) NULL
, wxID_ANY
, _T("wxFrame sample"),
57 wxPoint(100, 100), wxSize(300, 200));
59 // main_frame->SetMinSize( wxSize(100,100) );
60 // main_frame->SetMaxSize( wxSize(400,400) );
62 main_frame
->SetSizeHints( 100,100, 400,400 );
64 main_frame
->CreateToolBar(wxNO_BORDER
|wxTB_VERTICAL
, ID_TOOLBAR
);
65 InitToolbar(main_frame
->GetToolBar());
67 button
= new wxButton( main_frame
, ID_REPARENT
, _T("Press to reparent!") );
69 // Create the mini frame window
70 mini_frame
= new MyMiniFrame( main_frame
, wxID_ANY
, _T("wxMiniFrame sample"),
71 wxPoint(100, 100), wxSize(220, 100));
72 mini_frame_exists
= true;
74 mini_frame
->CreateToolBar(wxNO_BORDER
|wxTB_HORIZONTAL
|wxTB_FLAT
, ID_TOOLBAR
);
75 InitToolbar(mini_frame
->GetToolBar());
77 main_frame
->SetIcon(wxICON(mondrian
));
78 mini_frame
->SetIcon(wxICON(mondrian
));
80 SetTopWindow(main_frame
);
82 main_frame
->Show(true);
83 mini_frame
->Show(true);
88 bool MyApp::InitToolbar(wxToolBar
* toolBar
)
90 toolBar
->SetMargins(5, 5);
93 wxBitmap
* toolBarBitmaps
[8];
95 toolBarBitmaps
[0] = new wxBitmap( new_xpm
);
96 toolBarBitmaps
[1] = new wxBitmap( open_xpm
);
97 toolBarBitmaps
[2] = new wxBitmap( save_xpm
);
98 toolBarBitmaps
[3] = new wxBitmap( copy_xpm
);
99 toolBarBitmaps
[4] = new wxBitmap( cut_xpm
);
100 // toolBarBitmaps[5] = new wxBitmap( paste_xpm );
101 toolBarBitmaps
[5] = new wxBitmap( preview_xpm
);
102 toolBarBitmaps
[6] = new wxBitmap( print_xpm
);
103 toolBarBitmaps
[7] = new wxBitmap( help_xpm
);
108 toolBar
->AddTool(wxID_NEW
, *(toolBarBitmaps
[0]), wxNullBitmap
, false, currentX
, wxDefaultCoord
, (wxObject
*) NULL
, _T("New file"));
109 currentX
+= width
+ 5;
110 toolBar
->AddTool(wxID_OPEN
, *(toolBarBitmaps
[1]), wxNullBitmap
, false, currentX
, wxDefaultCoord
, (wxObject
*) NULL
, _T("Open file"));
111 currentX
+= width
+ 5;
112 toolBar
->AddTool(wxID_SAVE
, *(toolBarBitmaps
[2]), wxNullBitmap
, false, currentX
, wxDefaultCoord
, (wxObject
*) NULL
, _T("Save file"));
113 currentX
+= width
+ 5;
114 toolBar
->AddSeparator();
115 toolBar
->AddTool(wxID_COPY
, *(toolBarBitmaps
[3]), wxNullBitmap
, false, currentX
, wxDefaultCoord
, (wxObject
*) NULL
, _T("Copy"));
116 currentX
+= width
+ 5;
117 toolBar
->AddTool(wxID_CUT
, *(toolBarBitmaps
[4]), wxNullBitmap
, false, currentX
, wxDefaultCoord
, (wxObject
*) NULL
, _T("Cut"));
118 currentX
+= width
+ 5;
119 toolBar
->AddTool(wxID_PASTE
, *(toolBarBitmaps
[5]), wxNullBitmap
, false, currentX
, wxDefaultCoord
, (wxObject
*) NULL
, _T("Paste"));
120 currentX
+= width
+ 5;
121 toolBar
->AddSeparator();
122 toolBar
->AddTool(wxID_PRINT
, *(toolBarBitmaps
[6]), wxNullBitmap
, false, currentX
, wxDefaultCoord
, (wxObject
*) NULL
, _T("Reparent the button"));
123 currentX
+= width
+ 5;
124 toolBar
->AddSeparator();
125 toolBar
->AddTool(wxID_HELP
, *(toolBarBitmaps
[7]), wxNullBitmap
, false, currentX
, wxDefaultCoord
, (wxObject
*) NULL
, _T("Help"));
129 toolBar
->EnableTool( wxID_HELP
, false );
131 // Can delete the bitmaps since they're reference counted
133 for (i
= 0; i
< 8; i
++)
134 delete toolBarBitmaps
[i
];
141 BEGIN_EVENT_TABLE(MyMiniFrame
, wxMiniFrame
)
142 EVT_CLOSE ( MyMiniFrame::OnCloseWindow
)
143 EVT_BUTTON (ID_REPARENT
, MyMiniFrame::OnReparent
)
144 EVT_MENU (wxID_PRINT
, MyMiniFrame::OnReparent
)
147 MyMiniFrame::MyMiniFrame(wxFrame
* parent
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
,
148 const wxSize
& size
) :
149 wxMiniFrame(parent
, id
, title
, pos
, size
)
153 void MyMiniFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
155 // make it known that the miniframe is no more
156 mini_frame_exists
= false;
160 void MyMiniFrame::OnReparent(wxCommandEvent
& WXUNUSED(event
))
162 button
->Reparent( main_frame
);
164 // we need to force the frame to size its (new) child correctly
165 main_frame
->SendSizeEvent();
170 BEGIN_EVENT_TABLE(MyMainFrame
, wxFrame
)
171 EVT_CLOSE ( MyMainFrame::OnCloseWindow
)
172 EVT_BUTTON (ID_REPARENT
, MyMainFrame::OnReparent
)
173 EVT_MENU (wxID_PRINT
, MyMainFrame::OnReparent
)
176 MyMainFrame::MyMainFrame(wxFrame
* parent
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
,
177 const wxSize
& size
) :
178 wxFrame(parent
, id
, title
, pos
, size
)
182 void MyMainFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
187 void MyMainFrame::OnReparent(wxCommandEvent
& WXUNUSED(event
))
189 // practical jokers might find satisfaction in reparenting the button
190 // after closing the mini_frame. We'll have the last laugh.
191 if (! mini_frame_exists
)
192 wxMessageBox(_T("The miniframe no longer exists.\n")
193 _T("You don't want to make this button an orphan, do you?"),
194 _T("You got to be kidding"));
197 button
->Reparent( mini_frame
);
200 mini_frame
->SendSizeEvent();