]>
git.saurik.com Git - wxWidgets.git/blob - samples/erase/erase.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Erase wxWidgets sample
4 // Author: Robert Roebling
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers (this file is usually all you
28 // need because it includes almost all "standard" wxWidgets headers)
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
36 // the application icon
37 #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
38 #include "mondrian.xpm"
41 // ----------------------------------------------------------------------------
43 // ----------------------------------------------------------------------------
45 class MyApp
: public wxApp
48 virtual bool OnInit();
52 class MyCanvas
: public wxScrolledWindow
55 MyCanvas( wxFrame
*parent
);
57 void UseBuffer(bool useBuffer
) { m_useBuffer
= useBuffer
; Refresh(); }
58 void EraseBg(bool eraseBg
) { m_eraseBg
= eraseBg
; Refresh(); }
61 void OnPaint( wxPaintEvent
&event
);
62 void OnChar( wxKeyEvent
&event
);
63 void OnEraseBackground( wxEraseEvent
&event
);
65 void DoPaint(wxDC
& dc
);
71 // use wxMemoryDC in OnPaint()?
74 // paint custom background in OnEraseBackground()?
81 class MyFrame
: public wxFrame
86 void OnUseBuffer(wxCommandEvent
& event
);
87 void OnEraseBg(wxCommandEvent
& event
);
88 void OnQuit(wxCommandEvent
& event
);
89 void OnAbout(wxCommandEvent
& event
);
98 // ----------------------------------------------------------------------------
100 // ----------------------------------------------------------------------------
105 Erase_Menu_UseBuffer
= 100,
107 Erase_Menu_Exit
= wxID_EXIT
,
108 Erase_Menu_About
= wxID_ABOUT
112 // ----------------------------------------------------------------------------
113 // the application class
114 // ----------------------------------------------------------------------------
120 MyFrame
*frame
= new MyFrame
;
127 // ----------------------------------------------------------------------------
129 // ----------------------------------------------------------------------------
131 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
132 EVT_MENU(Erase_Menu_UseBuffer
, MyFrame::OnUseBuffer
)
133 EVT_MENU(Erase_Menu_EraseBg
, MyFrame::OnEraseBg
)
134 EVT_MENU(Erase_Menu_Exit
, MyFrame::OnQuit
)
135 EVT_MENU(Erase_Menu_About
, MyFrame::OnAbout
)
140 : wxFrame(NULL
, wxID_ANY
, _T("Erase sample"),
141 wxPoint(50, 50), wxSize(450, 340))
143 SetIcon(wxICON(mondrian
));
145 wxMenu
*menuFile
= new wxMenu(_T(""), wxMENU_TEAROFF
);
146 menuFile
->AppendCheckItem(Erase_Menu_UseBuffer
, _T("&Use memory DC\tCtrl-M"));
147 menuFile
->AppendCheckItem(Erase_Menu_EraseBg
, _T("Custom &background\tCtrl-B"));
148 menuFile
->AppendSeparator();
149 menuFile
->Append(Erase_Menu_Exit
, _T("E&xit\tAlt-X"), _T("Quit this program"));
152 wxMenu
*helpMenu
= new wxMenu
;
153 helpMenu
->Append(Erase_Menu_About
, _T("&About...\tCtrl-A"), _T("Show about dialog"));
155 wxMenuBar
*menuBar
= new wxMenuBar();
156 menuBar
->Append(menuFile
, _T("&File"));
157 menuBar
->Append(helpMenu
, _T("&Help"));
162 // create a status bar just for fun (by default with 1 pane only)
164 SetStatusText(_T("Welcome to wxWidgets erase sample!"));
165 #endif // wxUSE_STATUSBAR
167 m_canvas
= new MyCanvas( this );
171 void MyFrame::OnUseBuffer(wxCommandEvent
& event
)
173 m_canvas
->UseBuffer(event
.IsChecked());
176 void MyFrame::OnEraseBg(wxCommandEvent
& event
)
178 m_canvas
->EraseBg(event
.IsChecked());
181 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
186 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
188 wxMessageBox(_T("This sample shows how you can draw custom background."),
189 _T("About Erase Sample"), wxOK
| wxICON_INFORMATION
, this);
193 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
194 EVT_PAINT( MyCanvas::OnPaint
)
195 EVT_CHAR( MyCanvas::OnChar
)
196 EVT_ERASE_BACKGROUND( MyCanvas::OnEraseBackground
)
199 MyCanvas::MyCanvas( wxFrame
*parent
)
200 : wxScrolledWindow( parent
, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
,
201 wxScrolledWindowStyle
| wxSUNKEN_BORDER
)
206 SetScrollbars( 10, 10, 40, 100, 0, 0 );
208 m_bitmap
= wxBitmap( wxICON(mondrian
) );
210 new wxStaticBitmap( this, wxID_ANY
, m_bitmap
, wxPoint(80,20) );
212 SetFocusIgnoringChildren();
215 void MyCanvas::OnChar( wxKeyEvent
&event
)
220 m_text
+= event
.m_uniChar
;
227 switch (event
.m_keyCode
)
229 case WXK_UP
: m_text
+= wxT( "<UP>" ); break;
230 case WXK_LEFT
: m_text
+= wxT( "<LEFT>" ); break;
231 case WXK_RIGHT
: m_text
+= wxT( "<RIGHT>" ); break;
232 case WXK_DOWN
: m_text
+= wxT( "<DOWN>" ); break;
233 case WXK_RETURN
: m_text
+= wxT( "<ENTER>" ); break;
234 default: m_text
+= (wxChar
)event
.m_keyCode
; break;
238 void MyCanvas::DoPaint(wxDC
& dc
)
240 dc
.SetBrush( *wxBLACK_BRUSH
);
241 dc
.DrawRectangle( 10,10,200,50 );
243 dc
.DrawBitmap( m_bitmap
, 10, 20, true );
245 dc
.SetTextForeground(*wxBLUE
);
246 dc
.DrawText(_T("This text is drawn from OnPaint"), 65, 65);
249 tmp
.Printf( _T("Hit any key to display more text: %s"), m_text
.c_str() );
251 dc
.GetTextExtent( tmp
, &w
, &h
);
252 dc
.SetBrush( *wxWHITE_BRUSH
);
253 dc
.DrawRectangle( 65, 85, w
, h
);
254 dc
.DrawText( tmp
, 65, 85 );
257 wxRegionIterator
upd( GetUpdateRegion() );
260 wxLogDebug( _T("Paint: %d %d %d %d"), upd
.GetX(), upd
.GetY(), upd
.GetWidth(), upd
.GetHeight() );
266 wxSize size
= GetSize();
267 wxSize client_size
= GetClientSize();
268 wxLogDebug( _T("size %d %d client_size %d %d"), size
.x
, size
.y
, client_size
.x
, client_size
.y
);
273 dc
.SetPen( *wxWHITE_PEN
);
274 for (i
= 0; i
< 20; i
+= 2)
275 dc
.DrawLine( i
,i
, i
+100,i
);
277 dc
.SetPen( *wxWHITE_PEN
);
278 for (i
= 200; i
< 220; i
+= 2)
279 dc
.DrawLine( i
-200,i
, i
-100,i
);
281 wxRegion
region( 110, 110, 80, 80 );
282 wxRegion
hole( 130, 130, 40, 1 );
283 region
.Intersect( hole
);
284 dc
.SetClippingRegion( region
);
286 dc
.SetBrush( *wxRED_BRUSH
);
287 dc
.DrawRectangle( 100, 100, 200, 200 );
289 dc
.DestroyClippingRegion();
291 dc
.SetPen( *wxTRANSPARENT_PEN
);
293 wxRegion
strip( 110, 200, 30, 1 );
294 wxRegionIterator
it( strip
);
297 dc
.DrawRectangle( it
.GetX(), it
.GetY(), it
.GetWidth(), it
.GetHeight() );
303 void MyCanvas::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
305 wxPaintDC
dcWin(this);
310 const wxSize size
= GetClientSize();
312 wxBitmap
bmp(size
.x
, size
.y
);
313 dc
.SelectObject(bmp
);
314 dc
.Blit(0, 0, size
.x
, size
.y
, &dcWin
, 0, 0);
315 dc
.DrawText(_T("(copy of background)"), 5, 120 );
319 dcWin
.Blit(0, 0, size
.x
, size
.y
, &dc
, 0, 0);
327 void MyCanvas::OnEraseBackground( wxEraseEvent
& event
)
335 wxDC
& dc
= *event
.GetDC();
336 dc
.SetPen(*wxGREEN_PEN
);
340 // clear any junk currently displayed
343 const wxSize size
= GetClientSize();
344 for ( int x
= 0; x
< size
.x
; x
+= 15 )
346 dc
.DrawLine(x
, 0, x
, size
.y
);
349 for ( int y
= 0; y
< size
.y
; y
+= 15 )
351 dc
.DrawLine(0, y
, size
.x
, y
);
354 dc
.SetTextForeground(*wxRED
);
355 dc
.DrawText(_T("This text is drawn from OnEraseBackground"), 60, 160);