03647350fc
This commit is huge but there are no non-white-space changes in it. Some files containing third-party sources (src/msw/wince/time.cpp, src/x11/pango*.cpp) were left unchanged. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61724 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
36 lines
846 B
C++
36 lines
846 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: dcscreen.h
|
|
// Purpose: wxScreenDC class
|
|
// Author: Stefan Csomor
|
|
// Modified by:
|
|
// Created: 1998-01-01
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Stefan Csomor
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_DCSCREEN_H_
|
|
#define _WX_DCSCREEN_H_
|
|
|
|
#include "wx/dcclient.h"
|
|
#include "wx/osx/dcclient.h"
|
|
|
|
class WXDLLIMPEXP_CORE wxScreenDCImpl: public wxWindowDCImpl
|
|
{
|
|
public:
|
|
wxScreenDCImpl( wxDC *owner );
|
|
virtual ~wxScreenDCImpl();
|
|
|
|
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
|
|
private:
|
|
void* m_overlayWindow;
|
|
|
|
private:
|
|
DECLARE_CLASS(wxScreenDCImpl)
|
|
wxDECLARE_NO_COPY_CLASS(wxScreenDCImpl);
|
|
};
|
|
|
|
#endif
|
|
// _WX_DCSCREEN_H_
|
|
|