~brian-sidebotham/wxwidgets-cmake/wxpython-2.9.4

« back to all changes in this revision

Viewing changes to include/wx/x11/dcscreen.h

  • Committer: Brian Sidebotham
  • Date: 2013-08-03 14:30:08 UTC
  • Revision ID: brian.sidebotham@gmail.com-20130803143008-c7806tkych1tp6fc
Initial import into Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        wx/x11/dcscreen.h
 
3
// Purpose:     wxScreenDC class
 
4
// Author:      Julian Smart
 
5
// Modified by:
 
6
// Created:     17/09/98
 
7
// RCS-ID:      $Id: dcscreen.h 50365 2007-11-30 17:51:36Z RR $
 
8
// Copyright:   (c) Julian Smart
 
9
// Licence:     wxWindows licence
 
10
/////////////////////////////////////////////////////////////////////////////
 
11
 
 
12
#ifndef _WX_DCSCREEN_H_
 
13
#define _WX_DCSCREEN_H_
 
14
 
 
15
#include "wx/dcclient.h"
 
16
#include "wx/x11/dcclient.h"
 
17
 
 
18
//-----------------------------------------------------------------------------
 
19
// wxScreenDC
 
20
//-----------------------------------------------------------------------------
 
21
 
 
22
class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPaintDCImpl
 
23
{
 
24
public:
 
25
    wxScreenDCImpl( wxDC *owner);
 
26
    virtual ~wxScreenDCImpl();
 
27
 
 
28
protected:
 
29
    virtual void DoGetSize(int *width, int *height) const;
 
30
 
 
31
private:
 
32
    DECLARE_CLASS(wxScreenDCImpl)
 
33
};
 
34
 
 
35
 
 
36
#endif
 
37
    // _WX_DCSCREEN_H_