Fixed commented names (path, filename, and extension) of files in include/ and src/. Prepended the names in src/ with "src/" everywhere, while starting those in include/wx/ with "wx/". git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			35 lines
		
	
	
		
			922 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			922 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/gtk/dcscreen.h
 | |
| // Purpose:
 | |
| // Author:      Robert Roebling
 | |
| // Id:          $Id$
 | |
| // Copyright:   (c) 1998 Robert Roebling
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_GTKDCSCREEN_H_
 | |
| #define _WX_GTKDCSCREEN_H_
 | |
| 
 | |
| #include "wx/dcscreen.h"
 | |
| #include "wx/gtk/dcclient.h"
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // wxScreenDCImpl
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
 | |
| {
 | |
| public:
 | |
|     wxScreenDCImpl( wxScreenDC *owner );
 | |
|     ~wxScreenDCImpl();
 | |
| 
 | |
|     virtual void DoGetSize(int *width, int *height) const;
 | |
| 
 | |
| protected:
 | |
|     void Init();
 | |
| 
 | |
|     DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
 | |
| };
 | |
| 
 | |
| #endif // _WX_GTKDCSCREEN_H_
 |