]> git.saurik.com Git - wxWidgets.git/blame - include/wx/x11/dcscreen.h
Don't generate any events from wxSpinCtrl and wxSpinCtrlDouble methods.
[wxWidgets.git] / include / wx / x11 / dcscreen.h
CommitLineData
83df96d6 1/////////////////////////////////////////////////////////////////////////////
1b88201f 2// Name: wx/x11/dcscreen.h
83df96d6
JS
3// Purpose: wxScreenDC class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
83df96d6 7// Copyright: (c) Julian Smart
1b88201f 8// Licence: wxWindows licence
83df96d6
JS
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_DCSCREEN_H_
12#define _WX_DCSCREEN_H_
13
83df96d6 14#include "wx/dcclient.h"
e6514d0e 15#include "wx/x11/dcclient.h"
83df96d6 16
3cd0b8c5
RR
17//-----------------------------------------------------------------------------
18// wxScreenDC
19//-----------------------------------------------------------------------------
20
e6514d0e 21class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl
83df96d6 22{
83df96d6 23public:
e6514d0e
RR
24 wxScreenDCImpl( wxDC *owner);
25 virtual ~wxScreenDCImpl();
3cd0b8c5
RR
26
27protected:
28 virtual void DoGetSize(int *width, int *height) const;
29
83df96d6 30private:
e6514d0e 31 DECLARE_CLASS(wxScreenDCImpl)
83df96d6
JS
32};
33
3cd0b8c5 34
83df96d6 35#endif
1b88201f 36 // _WX_DCSCREEN_H_