2004-10-19 13:40:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/palmos/dcscreen.h
|
|
|
|
// Purpose: wxScreenDC class
|
2005-01-18 21:14:27 +00:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
2004-10-19 13:40:30 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created: 10/13/04
|
2005-01-18 21:14:27 +00:00
|
|
|
// RCS-ID: $Id$
|
2004-10-19 13:40:30 +00:00
|
|
|
// Copyright: (c) William Osborne
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DCSCREEN_H_
|
|
|
|
#define _WX_DCSCREEN_H_
|
|
|
|
|
2007-12-15 01:25:56 +00:00
|
|
|
#include "wx/dcscreen.h"
|
|
|
|
#include "wx/palmos/dc.h"
|
2004-10-19 13:40:30 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxScreenDCImpl : public wxPalmDCImpl
|
2004-10-19 13:40:30 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Create a DC representing the whole screen
|
2007-12-15 01:25:56 +00:00
|
|
|
wxScreenDCImpl( wxScreenDC *owner );
|
2004-10-19 13:40:30 +00:00
|
|
|
|
2007-12-15 01:25:56 +00:00
|
|
|
virtual void DoGetSize(int *w, int *h) const;
|
2004-10-19 13:40:30 +00:00
|
|
|
|
2007-12-15 01:25:56 +00:00
|
|
|
DECLARE_CLASS(wxScreenDCImpl)
|
|
|
|
DECLARE_NO_COPY_CLASS(wxScreenDCImpl)
|
2004-10-19 13:40:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_DCSCREEN_H_
|
|
|
|
|