]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/os2/dcscreen.h
Fix keyboard navigation in wxGrid with reordered columns.
[wxWidgets.git] / include / wx / os2 / dcscreen.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/os2/dcscreen.h
3// Purpose: wxScreenDC class
4// Author: David Webster
5// Modified by:
6// Created: 10/14/99
7// RCS-ID: $Id$
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_OS2_DCSCREEN_H_
13#define _WX_OS2_DCSCREEN_H_
14
15#include "wx/dcscreen.h"
16#include "wx/os2/dc.h"
17
18class WXDLLIMPEXP_CORE wxScreenDCImpl: public wxPMDCImpl
19{
20 public:
21 // Create a DC representing the whole screen
22 wxScreenDCImpl( wxScreenDC *owner );
23
24 virtual void DoGetSize( int* pnWidth
25 ,int* pnHeight
26 ) const;
27
28private:
29 DECLARE_CLASS(wxScreenDCImpl)
30 wxDECLARE_NO_COPY_CLASS(wxScreenDCImpl);
31}; // end of CLASS wxScreenDC
32
33#endif
34 // _WX_DCSCREEN_H_