projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added separate SetFocusOnCanvas() function so that m_editorFocused will be more relia...
[wxWidgets.git]
/
include
/
wx
/
dcgraph.h
diff --git
a/include/wx/dcgraph.h
b/include/wx/dcgraph.h
index d51692eb4f457ae3e6fe10ca0ecf7c6d62f79a41..3e9614f239193e346b8563f997e8238b98b4eda8 100644
(file)
--- a/
include/wx/dcgraph.h
+++ b/
include/wx/dcgraph.h
@@
-21,11
+21,14
@@
class WXDLLIMPEXP_FWD_CORE wxWindowDC;
class WXDLLIMPEXP_FWD_CORE wxWindowDC;
-class WXDLL
EXPORT
wxGCDC: public wxDC
+class WXDLL
IMPEXP_CORE
wxGCDC: public wxDC
{
public:
wxGCDC( const wxWindowDC& dc );
wxGCDC( const wxMemoryDC& dc );
{
public:
wxGCDC( const wxWindowDC& dc );
wxGCDC( const wxMemoryDC& dc );
+#if wxUSE_PRINTING_ARCHITECTURE
+ wxGCDC( const wxPrinterDC& dc );
+#endif
wxGCDC();
virtual ~wxGCDC();
wxGCDC();
virtual ~wxGCDC();
@@
-37,11
+40,14
@@
public:
};
};
-class WXDLL
EXPORT
wxGCDCImpl: public wxDCImpl
+class WXDLL
IMPEXP_CORE
wxGCDCImpl: public wxDCImpl
{
public:
wxGCDCImpl( wxDC *owner, const wxWindowDC& dc );
wxGCDCImpl( wxDC *owner, const wxMemoryDC& dc );
{
public:
wxGCDCImpl( wxDC *owner, const wxWindowDC& dc );
wxGCDCImpl( wxDC *owner, const wxMemoryDC& dc );
+#if wxUSE_PRINTING_ARCHITECTURE
+ wxGCDCImpl( wxDC *owner, const wxPrinterDC& dc );
+#endif
wxGCDCImpl( wxDC *owner );
virtual ~wxGCDCImpl();
wxGCDCImpl( wxDC *owner );
virtual ~wxGCDCImpl();
@@
-166,7
+172,7
@@
public:
wxCoord xoffset, wxCoord yoffset,
int fillStyle);
wxCoord xoffset, wxCoord yoffset,
int fillStyle);
- virtual void DoSet
ClippingRegionAs
Region(const wxRegion& region);
+ virtual void DoSet
DeviceClipping
Region(const wxRegion& region);
virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
wxCoord width, wxCoord height);
virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
wxCoord width, wxCoord height);