1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-07-25 14:31:55 +00:00
|
|
|
// Name: wx/motif/dcscreen.h
|
2007-12-15 00:06:08 +00:00
|
|
|
// Purpose: wxScreenDCImpl class
|
1998-09-18 10:19:10 +00:00
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart
|
2006-07-25 14:31:55 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 10:19:10 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DCSCREEN_H_
|
|
|
|
#define _WX_DCSCREEN_H_
|
|
|
|
|
2007-12-15 00:06:08 +00:00
|
|
|
#include "wx/motif/dcclient.h"
|
1998-09-18 10:19:10 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxWindowDCImpl
|
1998-09-18 10:19:10 +00:00
|
|
|
{
|
2002-02-05 16:34:33 +00:00
|
|
|
public:
|
|
|
|
// Create a DC representing the whole screen
|
2007-12-15 00:06:08 +00:00
|
|
|
wxScreenDCImpl(wxScreenDC *owner);
|
|
|
|
virtual ~wxScreenDCImpl();
|
2006-07-25 14:31:55 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
// Compatibility with X's requirements for
|
|
|
|
// drawing on top of all windows
|
|
|
|
static bool StartDrawingOnTop(wxWindow* window);
|
|
|
|
static bool StartDrawingOnTop(wxRect* rect = NULL);
|
|
|
|
static bool EndDrawingOnTop();
|
2006-07-25 14:31:55 +00:00
|
|
|
|
1998-10-17 09:38:15 +00:00
|
|
|
private:
|
2002-02-05 16:34:33 +00:00
|
|
|
static WXWindow sm_overlayWindow;
|
2006-07-25 14:31:55 +00:00
|
|
|
|
2002-02-05 16:34:33 +00:00
|
|
|
// If we have started transparent drawing at a non-(0,0) point
|
|
|
|
// then we will have to adjust the device origin in the
|
|
|
|
// constructor.
|
|
|
|
static int sm_overlayWindowX;
|
|
|
|
static int sm_overlayWindowY;
|
2007-12-15 00:06:08 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxScreenDCImpl)
|
1998-09-18 10:19:10 +00:00
|
|
|
};
|
|
|
|
|
2007-12-15 00:06:08 +00:00
|
|
|
#endif // _WX_DCSCREEN_H_
|