]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/palmos/dcscreen.h
Added event handler macro
[wxWidgets.git] / include / wx / palmos / dcscreen.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/dcscreen.h
3// Purpose: wxScreenDC class
4// Author: William Osborne - minimal working wxPalmOS port
5// Modified by:
6// Created: 10/13/04
7// RCS-ID: $Id$
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DCSCREEN_H_
13#define _WX_DCSCREEN_H_
14
15#include "wx/dcscreen.h"
16#include "wx/palmos/dc.h"
17
18class WXDLLEXPORT wxScreenDCImpl : public wxPalmDCImpl
19{
20public:
21 // Create a DC representing the whole screen
22 wxScreenDCImpl( wxScreenDC *owner );
23
24 virtual void DoGetSize(int *w, int *h) const;
25
26 DECLARE_CLASS(wxScreenDCImpl)
27 DECLARE_NO_COPY_CLASS(wxScreenDCImpl)
28};
29
30#endif
31 // _WX_DCSCREEN_H_
32