Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1020 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1020 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/////////////////////////////////////////////////////////////////////////////
 | 
						|
// Name:        wx/gtk1/dcscreen.h
 | 
						|
// Purpose:
 | 
						|
// Author:      Robert Roebling
 | 
						|
// Copyright:   (c) 1998 Robert Roebling
 | 
						|
// Licence:     wxWindows licence
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#ifndef __GTKDCSCREENH__
 | 
						|
#define __GTKDCSCREENH__
 | 
						|
 | 
						|
#include "wx/gtk1/dcclient.h"
 | 
						|
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
// wxScreenDCImpl
 | 
						|
//-----------------------------------------------------------------------------
 | 
						|
 | 
						|
class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl
 | 
						|
{
 | 
						|
public:
 | 
						|
    wxScreenDCImpl(wxScreenDC *owner);
 | 
						|
    virtual ~wxScreenDCImpl();
 | 
						|
 | 
						|
    // implementation
 | 
						|
 | 
						|
    static GdkWindow  *sm_overlayWindow;
 | 
						|
    static int         sm_overlayWindowX;
 | 
						|
    static int         sm_overlayWindowY;
 | 
						|
 | 
						|
protected:
 | 
						|
    virtual void DoGetSize(int *width, int *height) const;
 | 
						|
 | 
						|
private:
 | 
						|
    wxDECLARE_DYNAMIC_CLASS(wxScreenDCImpl);
 | 
						|
};
 | 
						|
 | 
						|
#endif // __GTKDCSCREENH__
 | 
						|
 |