disallow creation of wxDC objects and made wxDC an ABC; use wxDCTemp instead of wxDC in wx code; fixed WinCE bug with deleting a DC which should be released in wxListBox::MSWOnMeasure()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-12-25 02:34:42 +00:00
parent f23d32554f
commit 7d09b97f53
7 changed files with 108 additions and 56 deletions

View File

@@ -9,29 +9,33 @@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_DCSCREEN_H_
#define _WX_DCSCREEN_H_
#ifndef _WX_MSW_DCSCREEN_H_
#define _WX_MSW_DCSCREEN_H_
#include "wx/dcclient.h"
#include "wx/dc.h"
class WXDLLEXPORT wxScreenDC : public wxWindowDC
class WXDLLEXPORT wxScreenDC : public wxDC
{
public:
// Create a DC representing the whole screen
wxScreenDC();
// these functions are obsolete and shouldn't be used
// Compatibility with X's requirements for drawing on top of all windows
static bool StartDrawingOnTop(wxWindow* WXUNUSED(window)) { return true; }
static bool StartDrawingOnTop(wxRect* WXUNUSED(rect) = NULL) { return true; }
static bool EndDrawingOnTop() { return true; }
wxDEPRECATED( static bool StartDrawingOnTop(wxWindow* window) );
wxDEPRECATED( static bool StartDrawingOnTop(wxRect* rect = NULL) );
wxDEPRECATED( static bool EndDrawingOnTop() );
protected:
virtual void DoGetSize(int *width, int *height) const;
virtual void DoGetSize(int *w, int *h) const
{
GetDeviceSize(w, h);
}
private:
DECLARE_DYNAMIC_CLASS_NO_COPY(wxScreenDC)
};
#endif
// _WX_DCSCREEN_H_
#endif // _WX_MSW_DCSCREEN_H_