Added PushEventHandler, Pop...
Corrected spelling of SetEventhandler Fixed two bugs in wxGenericPrintDlg Tried in vain to make printing of icons work. It now prints black on black, mostly. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -94,7 +94,9 @@ class wxDC: public wxObject
|
||||
virtual void DrawSpline( int n, wxPoint points[] );
|
||||
|
||||
virtual bool CanDrawBitmap(void) const = 0;
|
||||
virtual void DrawIcon( const wxIcon &icon, long x, long y, bool useMask=FALSE );
|
||||
virtual void DrawIcon( const wxIcon &icon, long x, long y )
|
||||
{ DrawIcon( icon, x, y, TRUE ); }
|
||||
virtual void DrawIcon( const wxIcon &icon, long x, long y, bool useMask );
|
||||
void DrawBitmap( const wxBitmap &bmp, long x, long y, bool useMask=FALSE )
|
||||
{ DrawIcon( *((wxIcon*)(&bmp)), x, y, useMask ); }
|
||||
virtual bool Blit( long xdest, long ydest, long width, long height,
|
||||
|
Reference in New Issue
Block a user