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
This commit is contained in:
Vadim Zeitlin
2014-03-23 00:57:14 +00:00
parent de22d0def4
commit b5f4eaf6bc

View File

@@ -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;
/**