projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Make the main message of wxGenericMessageDialog stand out.
[wxWidgets.git]
/
include
/
wx
/
dcprint.h
diff --git
a/include/wx/dcprint.h
b/include/wx/dcprint.h
index 7b46592385c38b653a13b22b449403bf4cf05426..95dbff8f7adc348a29cf7c2f9cabf40fcc1bab2d 100644
(file)
--- a/
include/wx/dcprint.h
+++ b/
include/wx/dcprint.h
@@
-16,43
+16,28
@@
#if wxUSE_PRINTING_ARCHITECTURE
#if wxUSE_PRINTING_ARCHITECTURE
-#if wxUSE_NEW_DC
-
#include "wx/dc.h"
//-----------------------------------------------------------------------------
// wxPrinterDC
//-----------------------------------------------------------------------------
#include "wx/dc.h"
//-----------------------------------------------------------------------------
// wxPrinterDC
//-----------------------------------------------------------------------------
-class WXDLLIMPEXP_CORE wxPrinterDC: public wxDC
+class WXDLLIMPEXP_CORE wxPrinterDC
: public wxDC
{
public:
wxPrinterDC();
{
public:
wxPrinterDC();
- wxPrinterDC( const wxPrintData& data );
-
- wxRect GetPaperRect();
- int GetResolution();
-
-private:
- DECLARE_DYNAMIC_CLASS()
-};
+ wxPrinterDC(const wxPrintData& data);
-#else
+ wxRect GetPaperRect() const;
+ int GetResolution() const;
+protected:
+ wxPrinterDC(wxDCImpl *impl) : wxDC(impl) { }
-#if defined(__WXPALMOS__)
-#include "wx/palmos/dcprint.h"
-#elif defined(__WXMSW__)
-#include "wx/msw/dcprint.h"
-#endif
-#if defined(__WXPM__)
-#include "wx/os2/dcprint.h"
-#endif
-#if defined(__WXMAC__)
-#include "wx/mac/dcprint.h"
-#endif
+private:
+ DECLARE_DYNAMIC_CLASS(wxPrinterDC)
+};
-#endif // wxUSE_NEW_DC
#endif // wxUSE_PRINTING_ARCHITECTURE
#endif // wxUSE_PRINTING_ARCHITECTURE
-#endif
-
// _WX_DCPRINT_H_BASE_
+
+
#endif
// _WX_DCPRINT_H_BASE_