]>
git.saurik.com Git - wxWidgets.git/blob - samples/minifram/test.cpp
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(__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"
45 MyMainFrame
*main_frame
= (MyMainFrame
*) NULL
;
46 MyMiniFrame
*mini_frame
= (MyMiniFrame
*) NULL
;
47 bool mini_frame_exists
= FALSE
;
48 wxButton
*button
= (wxButton
*) NULL
;
50 // The `main program' equivalent, creating the windows and returning the
52 bool MyApp::OnInit(void)
54 // Create the mini frame window
55 mini_frame
= new MyMiniFrame((wxFrame
*) NULL
, -1, "wxMiniFrame sample",
56 wxPoint(100, 100), wxSize(205, 100));
57 mini_frame_exists
= TRUE
;
59 mini_frame
->CreateToolBar(wxNO_BORDER
|wxHORIZONTAL
|wxTB_FLAT
, ID_TOOLBAR
);
60 InitToolbar(mini_frame
->GetToolBar());
62 // Create the main frame window
63 main_frame
= new MyMainFrame((wxFrame
*) NULL
, -1, "wxFrame sample",
64 wxPoint(100, 100), wxSize(300, 200));
66 main_frame
->CreateToolBar(wxNO_BORDER
|wxHORIZONTAL
, ID_TOOLBAR
);
67 InitToolbar(main_frame
->GetToolBar());
69 button
= new wxButton( main_frame
, ID_REPARENT
, "Press to reparent!" );
72 main_frame
->SetIcon(wxIcon("mondrian"));
73 mini_frame
->SetIcon(wxIcon("mondrian"));
75 main_frame
->SetIcon( wxIcon(mondrian_xpm
) );
76 mini_frame
->SetIcon( wxIcon(mondrian_xpm
) );
79 SetTopWindow(main_frame
);
81 main_frame
->Show(TRUE
);
82 mini_frame
->Show(TRUE
);
87 bool MyApp::InitToolbar(wxToolBar
* toolBar
)
89 toolBar
->SetMargins(5, 5);
92 wxBitmap
* toolBarBitmaps
[8];
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");
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
);
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");
143 toolBar
->EnableTool( wxID_HELP
, FALSE
);
145 // Can delete the bitmaps since they're reference counted
147 for (i
= 0; i
< 8; i
++)
148 delete toolBarBitmaps
[i
];
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
)
161 MyMiniFrame::MyMiniFrame(wxFrame
* parent
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
,
162 const wxSize
& size
) :
163 wxMiniFrame(parent
, id
, title
, pos
, size
)
167 void MyMiniFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
169 // make it known that the miniframe is no more
170 mini_frame_exists
= FALSE
;
174 void MyMiniFrame::OnReparent(wxCommandEvent
& WXUNUSED(event
))
176 button
->Reparent( main_frame
);
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
)
187 MyMainFrame::MyMainFrame(wxFrame
* parent
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
,
188 const wxSize
& size
) :
189 wxFrame(parent
, id
, title
, pos
, size
)
193 void MyMainFrame::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
198 void MyMainFrame::OnReparent(wxCommandEvent
& WXUNUSED(event
))
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");
207 button
->Reparent( mini_frame
);