From b5f4eaf6bce20469745b8f37ee8759f7f16988f7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 23 Mar 2014 00:57:14 +0000 Subject: [PATCH] Document what wxPrintQuality really is. Mention that it can be either a predefined constant or a number expressing the resolution. See #14085. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/defs.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/interface/wx/defs.h b/interface/wx/defs.h index 586bd84773..6828c75a30 100644 --- a/interface/wx/defs.h +++ b/interface/wx/defs.h @@ -1219,13 +1219,24 @@ enum wxDuplexMode }; /** - Print quality. -*/ + Predefined print quality constants. + + @see ::wxPrintQuality + */ #define wxPRINT_QUALITY_HIGH -1 #define wxPRINT_QUALITY_MEDIUM -2 #define wxPRINT_QUALITY_LOW -3 #define wxPRINT_QUALITY_DRAFT -4 +/** + Specifies the print quality as either a predefined level or explicit + resolution. + + The print quality may be one of ::wxPRINT_QUALITY_HIGH, + ::wxPRINT_QUALITY_MEDIUM, ::wxPRINT_QUALITY_LOW or ::wxPRINT_QUALITY_DRAFT + (which are all negative) or express the desired resolution, in DPI, e.g. + 600. + */ typedef int wxPrintQuality; /**