make access for virtuals match base
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
#include "wx/dc.h"
|
#include "wx/dc.h"
|
||||||
#include "wx/geometry.h"
|
#include "wx/geometry.h"
|
||||||
#include "wx/dynarray.h"
|
|
||||||
#include "wx/graphics.h"
|
#include "wx/graphics.h"
|
||||||
|
|
||||||
class WXDLLIMPEXP_FWD_CORE wxWindowDC;
|
class WXDLLIMPEXP_FWD_CORE wxWindowDC;
|
||||||
@@ -33,13 +32,11 @@ public:
|
|||||||
wxGraphicsContext* GetGraphicsContext();
|
wxGraphicsContext* GetGraphicsContext();
|
||||||
void SetGraphicsContext( wxGraphicsContext* ctx );
|
void SetGraphicsContext( wxGraphicsContext* ctx );
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_DYNAMIC_CLASS(wxGCDC)
|
DECLARE_DYNAMIC_CLASS(wxGCDC)
|
||||||
DECLARE_NO_COPY_CLASS(wxGCDC)
|
DECLARE_NO_COPY_CLASS(wxGCDC)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class WXDLLEXPORT wxGCDCImpl: public wxDCImpl
|
class WXDLLEXPORT wxGCDCImpl: public wxDCImpl
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@@ -95,7 +92,6 @@ public:
|
|||||||
wxGraphicsContext* GetGraphicsContext() { return m_graphicContext; }
|
wxGraphicsContext* GetGraphicsContext() { return m_graphicContext; }
|
||||||
virtual void SetGraphicsContext( wxGraphicsContext* ctx );
|
virtual void SetGraphicsContext( wxGraphicsContext* ctx );
|
||||||
|
|
||||||
protected:
|
|
||||||
// the true implementations
|
// the true implementations
|
||||||
virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
|
virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
|
||||||
int style = wxFLOOD_SURFACE);
|
int style = wxFLOOD_SURFACE);
|
||||||
@@ -193,11 +189,9 @@ protected:
|
|||||||
|
|
||||||
wxGraphicsContext* m_graphicContext;
|
wxGraphicsContext* m_graphicContext;
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxGCDCImpl)
|
DECLARE_CLASS(wxGCDCImpl)
|
||||||
DECLARE_NO_COPY_CLASS(wxGCDCImpl)
|
DECLARE_NO_COPY_CLASS(wxGCDCImpl)
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // wxUSE_GRAPHICS_CONTEXT
|
||||||
|
|
||||||
#endif // _WX_GRAPHICS_DC_H_
|
#endif // _WX_GRAPHICS_DC_H_
|
||||||
|
@@ -36,12 +36,10 @@ public:
|
|||||||
|
|
||||||
virtual GdkWindow* GetGDKWindow() const { return NULL; }
|
virtual GdkWindow* GetGDKWindow() const { return NULL; }
|
||||||
|
|
||||||
protected:
|
|
||||||
// base class pure virtuals implemented here
|
// base class pure virtuals implemented here
|
||||||
virtual void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
|
virtual void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
|
||||||
virtual void DoGetSizeMM(int* width, int* height) const;
|
virtual void DoGetSizeMM(int* width, int* height) const;
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_ABSTRACT_CLASS(wxGTKDCImpl)
|
DECLARE_ABSTRACT_CLASS(wxGTKDCImpl)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -7,10 +7,9 @@
|
|||||||
// Licence: wxWindows licence
|
// Licence: wxWindows licence
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#ifndef __GTKDCCLIENTH__
|
#ifndef _WX_GTKDCCLIENT_H_
|
||||||
#define __GTKDCCLIENTH__
|
#define _WX_GTKDCCLIENT_H_
|
||||||
|
|
||||||
#include "wx/dc.h"
|
|
||||||
#include "wx/gtk/dc.h"
|
#include "wx/gtk/dc.h"
|
||||||
#include "wx/dcclient.h"
|
#include "wx/dcclient.h"
|
||||||
#include "wx/region.h"
|
#include "wx/region.h"
|
||||||
@@ -32,7 +31,6 @@ public:
|
|||||||
virtual bool CanDrawBitmap() const { return true; }
|
virtual bool CanDrawBitmap() const { return true; }
|
||||||
virtual bool CanGetTextExtent() const { return true; }
|
virtual bool CanGetTextExtent() const { return true; }
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void DoGetSize(int *width, int *height) const;
|
virtual void DoGetSize(int *width, int *height) const;
|
||||||
virtual bool DoFloodFill( wxCoord x, wxCoord y, const wxColour& col, int style=wxFLOOD_SURFACE );
|
virtual bool DoFloodFill( wxCoord x, wxCoord y, const wxColour& col, int style=wxFLOOD_SURFACE );
|
||||||
virtual bool DoGetPixel( wxCoord x1, wxCoord y1, wxColour *col ) const;
|
virtual bool DoGetPixel( wxCoord x1, wxCoord y1, wxColour *col ) const;
|
||||||
@@ -75,8 +73,6 @@ protected:
|
|||||||
virtual void DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height );
|
virtual void DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height );
|
||||||
virtual void DoSetClippingRegionAsRegion( const wxRegion ®ion );
|
virtual void DoSetClippingRegionAsRegion( const wxRegion ®ion );
|
||||||
|
|
||||||
|
|
||||||
public:
|
|
||||||
virtual wxCoord GetCharWidth() const;
|
virtual wxCoord GetCharWidth() const;
|
||||||
virtual wxCoord GetCharHeight() const;
|
virtual wxCoord GetCharHeight() const;
|
||||||
|
|
||||||
@@ -128,7 +124,6 @@ public:
|
|||||||
|
|
||||||
virtual GdkWindow *GetGDKWindow() const { return m_gdkwindow; }
|
virtual GdkWindow *GetGDKWindow() const { return m_gdkwindow; }
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_ABSTRACT_CLASS(wxWindowDCImpl)
|
DECLARE_ABSTRACT_CLASS(wxWindowDCImpl)
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -142,10 +137,8 @@ public:
|
|||||||
wxClientDCImpl( wxDC *owner );
|
wxClientDCImpl( wxDC *owner );
|
||||||
wxClientDCImpl( wxDC *owner, wxWindow *win );
|
wxClientDCImpl( wxDC *owner, wxWindow *win );
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void DoGetSize(int *width, int *height) const;
|
virtual void DoGetSize(int *width, int *height) const;
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_ABSTRACT_CLASS(wxClientDCImpl)
|
DECLARE_ABSTRACT_CLASS(wxClientDCImpl)
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -159,10 +152,7 @@ public:
|
|||||||
wxPaintDCImpl( wxDC *owner );
|
wxPaintDCImpl( wxDC *owner );
|
||||||
wxPaintDCImpl( wxDC *owner, wxWindow *win );
|
wxPaintDCImpl( wxDC *owner, wxWindow *win );
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_ABSTRACT_CLASS(wxPaintDCImpl)
|
DECLARE_ABSTRACT_CLASS(wxPaintDCImpl)
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // _WX_GTKDCCLIENT_H_
|
||||||
// __GTKDCCLIENTH__
|
|
||||||
|
|
||||||
|
@@ -36,7 +36,6 @@ public:
|
|||||||
virtual void SetTextForeground( const wxColour &col );
|
virtual void SetTextForeground( const wxColour &col );
|
||||||
virtual void SetTextBackground( const wxColour &col );
|
virtual void SetTextBackground( const wxColour &col );
|
||||||
|
|
||||||
protected:
|
|
||||||
// overridden from wxDCImpl
|
// overridden from wxDCImpl
|
||||||
virtual void DoGetSize( int *width, int *height ) const;
|
virtual void DoGetSize( int *width, int *height ) const;
|
||||||
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
|
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
|
||||||
@@ -44,14 +43,12 @@ protected:
|
|||||||
// overridden for wxMemoryDC Impl
|
// overridden for wxMemoryDC Impl
|
||||||
virtual void DoSelect(const wxBitmap& bitmap);
|
virtual void DoSelect(const wxBitmap& bitmap);
|
||||||
|
|
||||||
public:
|
|
||||||
virtual const wxBitmap& GetSelectedBitmap() const;
|
virtual const wxBitmap& GetSelectedBitmap() const;
|
||||||
virtual wxBitmap& GetSelectedBitmap();
|
virtual wxBitmap& GetSelectedBitmap();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
wxBitmap m_selected;
|
wxBitmap m_selected;
|
||||||
|
|
||||||
private:
|
|
||||||
void Init();
|
void Init();
|
||||||
|
|
||||||
DECLARE_ABSTRACT_CLASS(wxMemoryDCImpl)
|
DECLARE_ABSTRACT_CLASS(wxMemoryDCImpl)
|
||||||
|
@@ -7,8 +7,8 @@
|
|||||||
// Licence: wxWindows licence
|
// Licence: wxWindows licence
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#ifndef __GTKDCSCREENH__
|
#ifndef _WX_GTKDCSCREEN_H_
|
||||||
#define __GTKDCSCREENH__
|
#define _WX_GTKDCSCREEN_H_
|
||||||
|
|
||||||
#include "wx/dcscreen.h"
|
#include "wx/dcscreen.h"
|
||||||
#include "wx/gtk/dcclient.h"
|
#include "wx/gtk/dcclient.h"
|
||||||
@@ -23,14 +23,12 @@ public:
|
|||||||
wxScreenDCImpl( wxScreenDC *owner );
|
wxScreenDCImpl( wxScreenDC *owner );
|
||||||
~wxScreenDCImpl();
|
~wxScreenDCImpl();
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void DoGetSize(int *width, int *height) const;
|
virtual void DoGetSize(int *width, int *height) const;
|
||||||
|
|
||||||
|
protected:
|
||||||
void Init();
|
void Init();
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
|
DECLARE_ABSTRACT_CLASS(wxScreenDCImpl)
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // __GTKDCSCREENH__
|
#endif // _WX_GTKDCSCREEN_H_
|
||||||
|
|
||||||
|
@@ -29,15 +29,14 @@ public:
|
|||||||
wxWindowDCImpl( wxDC *owner, wxWindow *window );
|
wxWindowDCImpl( wxDC *owner, wxWindow *window );
|
||||||
virtual ~wxWindowDCImpl();
|
virtual ~wxWindowDCImpl();
|
||||||
|
|
||||||
protected :
|
|
||||||
virtual void DoGetSize( int *width, int *height ) const;
|
virtual void DoGetSize( int *width, int *height ) const;
|
||||||
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
|
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const;
|
||||||
|
|
||||||
|
protected:
|
||||||
bool m_release;
|
bool m_release;
|
||||||
int m_width;
|
int m_width;
|
||||||
int m_height;
|
int m_height;
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxWindowDCImpl)
|
DECLARE_CLASS(wxWindowDCImpl)
|
||||||
DECLARE_NO_COPY_CLASS(wxWindowDCImpl)
|
DECLARE_NO_COPY_CLASS(wxWindowDCImpl)
|
||||||
};
|
};
|
||||||
|
@@ -23,7 +23,6 @@ public:
|
|||||||
|
|
||||||
virtual ~wxMemoryDCImpl();
|
virtual ~wxMemoryDCImpl();
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void DoGetSize( int *width, int *height ) const;
|
virtual void DoGetSize( int *width, int *height ) const;
|
||||||
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const
|
virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const
|
||||||
{ return subrect == NULL ? GetSelectedBitmap() : GetSelectedBitmap().GetSubBitmap(*subrect); }
|
{ return subrect == NULL ? GetSelectedBitmap() : GetSelectedBitmap().GetSubBitmap(*subrect); }
|
||||||
@@ -34,7 +33,6 @@ private:
|
|||||||
|
|
||||||
wxBitmap m_selected;
|
wxBitmap m_selected;
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxMemoryDCImpl)
|
DECLARE_CLASS(wxMemoryDCImpl)
|
||||||
DECLARE_NO_COPY_CLASS(wxMemoryDCImpl)
|
DECLARE_NO_COPY_CLASS(wxMemoryDCImpl)
|
||||||
};
|
};
|
||||||
|
@@ -164,6 +164,7 @@ protected:
|
|||||||
|
|
||||||
void RealizeScaleAndOrigin();
|
void RealizeScaleAndOrigin();
|
||||||
|
|
||||||
|
public:
|
||||||
virtual void DoGetTextExtent(const wxString& string,
|
virtual void DoGetTextExtent(const wxString& string,
|
||||||
wxCoord *x, wxCoord *y,
|
wxCoord *x, wxCoord *y,
|
||||||
wxCoord *descent = NULL,
|
wxCoord *descent = NULL,
|
||||||
@@ -260,6 +261,7 @@ protected:
|
|||||||
void InitializePalette();
|
void InitializePalette();
|
||||||
#endif // wxUSE_PALETTE
|
#endif // wxUSE_PALETTE
|
||||||
|
|
||||||
|
protected:
|
||||||
// common part of DoDrawText() and DoDrawRotatedText()
|
// common part of DoDrawText() and DoDrawRotatedText()
|
||||||
void DrawAnyText(const wxString& text, wxCoord x, wxCoord y);
|
void DrawAnyText(const wxString& text, wxCoord x, wxCoord y);
|
||||||
|
|
||||||
@@ -334,7 +336,6 @@ public:
|
|||||||
SetHDC((WXHDC)NULL);
|
SetHDC((WXHDC)NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void DoGetSize(int *w, int *h) const
|
virtual void DoGetSize(int *w, int *h) const
|
||||||
{
|
{
|
||||||
wxASSERT_MSG( m_size.IsFullySpecified(),
|
wxASSERT_MSG( m_size.IsFullySpecified(),
|
||||||
|
@@ -43,14 +43,12 @@ public:
|
|||||||
// Create a DC corresponding to the whole window
|
// Create a DC corresponding to the whole window
|
||||||
wxWindowDCImpl( wxDC *owner, wxWindow *win );
|
wxWindowDCImpl( wxDC *owner, wxWindow *win );
|
||||||
|
|
||||||
|
virtual void DoGetSize(int *width, int *height) const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// initialize the newly created DC
|
// initialize the newly created DC
|
||||||
void InitDC();
|
void InitDC();
|
||||||
|
|
||||||
// override some base class virtuals
|
|
||||||
virtual void DoGetSize(int *width, int *height) const;
|
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxWindowDCImpl)
|
DECLARE_CLASS(wxWindowDCImpl)
|
||||||
DECLARE_NO_COPY_CLASS(wxWindowDCImpl)
|
DECLARE_NO_COPY_CLASS(wxWindowDCImpl)
|
||||||
};
|
};
|
||||||
@@ -66,13 +64,11 @@ public:
|
|||||||
|
|
||||||
virtual ~wxClientDCImpl();
|
virtual ~wxClientDCImpl();
|
||||||
|
|
||||||
|
virtual void DoGetSize(int *width, int *height) const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void InitDC();
|
void InitDC();
|
||||||
|
|
||||||
// override some base class virtuals
|
|
||||||
virtual void DoGetSize(int *width, int *height) const;
|
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxClientDCImpl)
|
DECLARE_CLASS(wxClientDCImpl)
|
||||||
DECLARE_NO_COPY_CLASS(wxClientDCImpl)
|
DECLARE_NO_COPY_CLASS(wxClientDCImpl)
|
||||||
};
|
};
|
||||||
@@ -96,7 +92,6 @@ protected:
|
|||||||
// find the entry for this DC in the cache (keyed by the window)
|
// find the entry for this DC in the cache (keyed by the window)
|
||||||
wxPaintDCInfo *FindInCache(size_t *index = NULL) const;
|
wxPaintDCInfo *FindInCache(size_t *index = NULL) const;
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxPaintDCImpl)
|
DECLARE_CLASS(wxPaintDCImpl)
|
||||||
DECLARE_NO_COPY_CLASS(wxPaintDCImpl)
|
DECLARE_NO_COPY_CLASS(wxPaintDCImpl)
|
||||||
};
|
};
|
||||||
@@ -112,7 +107,6 @@ class WXDLLEXPORT wxPaintDCEx : public wxPaintDC
|
|||||||
public:
|
public:
|
||||||
wxPaintDCEx(wxWindow *canvas, WXHDC dc);
|
wxPaintDCEx(wxWindow *canvas, WXHDC dc);
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxPaintDCEx)
|
DECLARE_CLASS(wxPaintDCEx)
|
||||||
DECLARE_NO_COPY_CLASS(wxPaintDCEx)
|
DECLARE_NO_COPY_CLASS(wxPaintDCEx)
|
||||||
};
|
};
|
||||||
|
@@ -22,8 +22,6 @@ public:
|
|||||||
wxMemoryDCImpl( wxMemoryDC *owner, wxBitmap& bitmap );
|
wxMemoryDCImpl( wxMemoryDC *owner, wxBitmap& bitmap );
|
||||||
wxMemoryDCImpl( wxMemoryDC *owner, wxDC *dc ); // Create compatible DC
|
wxMemoryDCImpl( wxMemoryDC *owner, wxDC *dc ); // Create compatible DC
|
||||||
|
|
||||||
|
|
||||||
protected:
|
|
||||||
// override some base class virtuals
|
// override some base class virtuals
|
||||||
virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
|
virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
|
||||||
virtual void DoGetSize(int* width, int* height) const;
|
virtual void DoGetSize(int* width, int* height) const;
|
||||||
@@ -32,13 +30,13 @@ protected:
|
|||||||
virtual wxBitmap DoGetAsBitmap(const wxRect* subrect) const
|
virtual wxBitmap DoGetAsBitmap(const wxRect* subrect) const
|
||||||
{ return subrect == NULL ? GetSelectedBitmap() : GetSelectedBitmap().GetSubBitmapOfHDC(*subrect, GetHDC() );}
|
{ return subrect == NULL ? GetSelectedBitmap() : GetSelectedBitmap().GetSubBitmapOfHDC(*subrect, GetHDC() );}
|
||||||
|
|
||||||
|
protected:
|
||||||
// create DC compatible with the given one or screen if dc == NULL
|
// create DC compatible with the given one or screen if dc == NULL
|
||||||
bool CreateCompatible(wxDC *dc);
|
bool CreateCompatible(wxDC *dc);
|
||||||
|
|
||||||
// initialize the newly created DC
|
// initialize the newly created DC
|
||||||
void Init();
|
void Init();
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxMemoryDCImpl)
|
DECLARE_CLASS(wxMemoryDCImpl)
|
||||||
DECLARE_NO_COPY_CLASS(wxMemoryDCImpl)
|
DECLARE_NO_COPY_CLASS(wxMemoryDCImpl)
|
||||||
};
|
};
|
||||||
|
@@ -21,13 +21,11 @@ public:
|
|||||||
// Create a DC representing the whole screen
|
// Create a DC representing the whole screen
|
||||||
wxScreenDCImpl( wxScreenDC *owner );
|
wxScreenDCImpl( wxScreenDC *owner );
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual void DoGetSize(int *w, int *h) const
|
virtual void DoGetSize(int *w, int *h) const
|
||||||
{
|
{
|
||||||
GetDeviceSize(w, h);
|
GetDeviceSize(w, h);
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
|
||||||
DECLARE_CLASS(wxScreenDCImpl)
|
DECLARE_CLASS(wxScreenDCImpl)
|
||||||
DECLARE_NO_COPY_CLASS(wxScreenDCImpl)
|
DECLARE_NO_COPY_CLASS(wxScreenDCImpl)
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user