Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/dcmemory.h
 | |
| // Purpose:     wxMemoryDC base header
 | |
| // Author:      Julian Smart
 | |
| // Modified by:
 | |
| // Created:
 | |
| // Copyright:   (c) Julian Smart
 | |
| // Licence:     wxWindows Licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_DCMEMORY_H_BASE_
 | |
| #define _WX_DCMEMORY_H_BASE_
 | |
| 
 | |
| #include "wx/dc.h"
 | |
| #include "wx/bitmap.h"
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // wxMemoryDC
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_CORE wxMemoryDC: public wxDC
 | |
| {
 | |
| public:
 | |
|     wxMemoryDC();
 | |
|     wxMemoryDC( wxBitmap& bitmap );
 | |
|     wxMemoryDC( wxDC *dc );
 | |
| 
 | |
|     // select the given bitmap to draw on it
 | |
|     void SelectObject(wxBitmap& bmp);
 | |
| 
 | |
|     // select the given bitmap for read-only
 | |
|     void SelectObjectAsSource(const wxBitmap& bmp);
 | |
| 
 | |
|     // get selected bitmap
 | |
|     const wxBitmap& GetSelectedBitmap() const;
 | |
|     wxBitmap& GetSelectedBitmap();
 | |
| 
 | |
| private:
 | |
|     wxDECLARE_DYNAMIC_CLASS(wxMemoryDC);
 | |
| };
 | |
| 
 | |
| 
 | |
| #endif
 | |
|     // _WX_DCMEMORY_H_BASE_
 |