]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/dc.h
automated virtual/const fixes by ifacecheck
[wxWidgets.git] / interface / wx / dc.h
index ab5adfc09ea9410534f379a10bae73b9bb19164a..aace4a77c20c9b4d718db0c3e6eaf7f8266a80f6 100644 (file)
@@ -159,27 +159,27 @@ public:
 
     /**
         Convert device X coordinate to logical coordinate, using the current
 
     /**
         Convert device X coordinate to logical coordinate, using the current
-        mapping mode.
+        mapping mode, user scale factor, device origin and axis orientation.
     */
     virtual wxCoord DeviceToLogicalX(wxCoord x);
 
     /**
         Convert device X coordinate to relative logical coordinate, using the
     */
     virtual wxCoord DeviceToLogicalX(wxCoord x);
 
     /**
         Convert device X coordinate to relative logical coordinate, using the
-        current mapping mode but ignoring the x axis orientation. Use this
-        function for converting a width, for example.
+        current mapping mode and user scale factor but ignoring the
+        axis orientation. Use this for converting a width, for example.
     */
     virtual wxCoord DeviceToLogicalXRel(wxCoord x);
 
     /**
         Converts device Y coordinate to logical coordinate, using the current
     */
     virtual wxCoord DeviceToLogicalXRel(wxCoord x);
 
     /**
         Converts device Y coordinate to logical coordinate, using the current
-        mapping mode.
+        mapping mode, user scale factor, device origin and axis orientation.
     */
     virtual wxCoord DeviceToLogicalY(wxCoord y);
 
     /**
         Convert device Y coordinate to relative logical coordinate, using the
     */
     virtual wxCoord DeviceToLogicalY(wxCoord y);
 
     /**
         Convert device Y coordinate to relative logical coordinate, using the
-        current mapping mode but ignoring the y axis orientation. Use this
-        function for converting a height, for example.
+        current mapping mode and user scale factor but ignoring the
+        axis orientation. Use this for converting a height, for example.
     */
     virtual wxCoord DeviceToLogicalYRel(wxCoord y);
 
     */
     virtual wxCoord DeviceToLogicalYRel(wxCoord y);
 
@@ -445,10 +445,8 @@ public:
         the string. See GetTextExtent() for how to get the dimensions of a text
         string, which can be used to position the text more precisely.
 
         the string. See GetTextExtent() for how to get the dimensions of a text
         string, which can be used to position the text more precisely.
 
-        @note Under wxGTK, the current
-              @ref GetLogicalFunction() "logical function" is used by this
-              function but it is ignored by wxMSW. Thus, you should avoid using
-              logical functions with this function in portable programs.
+        @note The current @ref GetLogicalFunction() "logical function" is 
+              ignored by this function.
     */
     void DrawText(const wxString& text, wxCoord x, wxCoord y);
 
     */
     void DrawText(const wxString& text, wxCoord x, wxCoord y);
 
@@ -766,27 +764,27 @@ public:
 
     /**
         Converts logical X coordinate to device coordinate, using the current
 
     /**
         Converts logical X coordinate to device coordinate, using the current
-        mapping mode.
+        mapping mode, user scale factor, device origin and axis orientation.
     */
     virtual wxCoord LogicalToDeviceX(wxCoord x);
 
     /**
         Converts logical X coordinate to relative device coordinate, using the
     */
     virtual wxCoord LogicalToDeviceX(wxCoord x);
 
     /**
         Converts logical X coordinate to relative device coordinate, using the
-        current mapping mode but ignoring the x axis orientation. Use this for
-        converting a width, for example.
+        current mapping mode and user scale factor but ignoring the
+        axis orientation. Use this for converting a width, for example.
     */
     virtual wxCoord LogicalToDeviceXRel(wxCoord x);
 
     /**
         Converts logical Y coordinate to device coordinate, using the current
     */
     virtual wxCoord LogicalToDeviceXRel(wxCoord x);
 
     /**
         Converts logical Y coordinate to device coordinate, using the current
-        mapping mode.
+        mapping mode, user scale factor, device origin and axis orientation.
     */
     virtual wxCoord LogicalToDeviceY(wxCoord y);
 
     /**
         Converts logical Y coordinate to relative device coordinate, using the
     */
     virtual wxCoord LogicalToDeviceY(wxCoord y);
 
     /**
         Converts logical Y coordinate to relative device coordinate, using the
-        current mapping mode but ignoring the y axis orientation. Use this for
-        converting a height, for example.
+        current mapping mode and user scale factor but ignoring the
+        axis orientation. Use this for converting a height, for example.
     */
     virtual wxCoord LogicalToDeviceYRel(wxCoord y);
 
     */
     virtual wxCoord LogicalToDeviceYRel(wxCoord y);
 
@@ -911,6 +909,7 @@ public:
         determines how a source pixel (from a pen or brush colour, or source
         device context if using Blit()) combines with a destination pixel in
         the current device context.
         determines how a source pixel (from a pen or brush colour, or source
         device context if using Blit()) combines with a destination pixel in
         the current device context.
+        Text drawing is not affected by this function.
 
         The possible values and their meaning in terms of source and
         destination pixel values are as follows:
 
         The possible values and their meaning in terms of source and
         destination pixel values are as follows: