wxMGL update (no, it still doesn't work, I'm backuping it just in case my disk burns)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11250 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-08-01 22:57:11 +00:00
parent 57d677d15e
commit a4bbc9f720
14 changed files with 967 additions and 131 deletions

View File

@@ -15,7 +15,8 @@
#endif
#include "wx/dc.h"
#include "wx/window.h"
class WXDLLEXPORT wxWindowMGL;
//-----------------------------------------------------------------------------
// classes
@@ -29,12 +30,15 @@ class WXDLLEXPORT wxClientDC;
// wxWindowDC
//-----------------------------------------------------------------------------
//FIXME_MGL
class WXDLLEXPORT wxWindowDC : public wxDC
{
public:
wxWindowDC() {}
wxWindowDC( wxWindow *win ) {}
virtual ~wxWindowDC();
wxWindowDC(wxWindow *win);
protected:
wxWindow *m_wnd;
private:
DECLARE_DYNAMIC_CLASS(wxWindowDC)
@@ -47,10 +51,11 @@ private:
class WXDLLEXPORT wxClientDC : public wxWindowDC
{
public:
wxClientDC() {}
wxClientDC( wxWindow *win ) {}
wxClientDC() : wxWindowDC() {}
wxClientDC(wxWindow *win);
private:
wxWindowMGL *m_wnd;
DECLARE_DYNAMIC_CLASS(wxClientDC)
};
@@ -58,6 +63,7 @@ private:
// wxPaintDC
//-----------------------------------------------------------------------------
// FIXME_MGL
class WXDLLEXPORT wxPaintDC : public wxClientDC
{
public: