Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/dcprint.h
 | |
| // Purpose:     wxPrinterDC base header
 | |
| // Author:      Julian Smart
 | |
| // Modified by:
 | |
| // Created:
 | |
| // Copyright:   (c) Julian Smart
 | |
| // Licence:     wxWindows Licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_DCPRINT_H_BASE_
 | |
| #define _WX_DCPRINT_H_BASE_
 | |
| 
 | |
| #include "wx/defs.h"
 | |
| 
 | |
| #if wxUSE_PRINTING_ARCHITECTURE
 | |
| 
 | |
| #include "wx/dc.h"
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // wxPrinterDC
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_CORE wxPrinterDC : public wxDC
 | |
| {
 | |
| public:
 | |
|     wxPrinterDC();
 | |
|     wxPrinterDC(const wxPrintData& data);
 | |
| 
 | |
|     wxRect GetPaperRect() const;
 | |
|     int GetResolution() const wxOVERRIDE;
 | |
| 
 | |
| protected:
 | |
|     wxPrinterDC(wxDCImpl *impl) : wxDC(impl) { }
 | |
| 
 | |
| private:
 | |
|     wxDECLARE_DYNAMIC_CLASS(wxPrinterDC);
 | |
| };
 | |
| 
 | |
| #endif // wxUSE_PRINTING_ARCHITECTURE
 | |
| 
 | |
| #endif // _WX_DCPRINT_H_BASE_
 |