]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
Added OLE automation sample, changed BC++ makefiles
[wxWidgets.git] / src / common / wincmn.cpp
index 3486f2b6bd06642fe5a1cf3f9e96e5206710bd67..4aebe4007efb18c807dc2e64e40f4b7c964cbc94 100644 (file)
@@ -64,3 +64,27 @@ void wxWindow::UpdateWindowUI()
     }
   }
 }
+
+// Dialog units translations. Implemented in wincmn.cpp.
+wxPoint wxWindow::ConvertPixelsToDialog(const wxPoint& pt)
+{
+    int charWidth = GetCharWidth();
+    int charHeight = GetCharHeight();
+    wxPoint pt2;
+    pt2.x = (int) ((pt.x * 4) / charWidth) ;
+    pt2.y = (int) ((pt.y * 8) / charHeight) ;
+
+    return pt2;
+}
+
+wxPoint wxWindow::ConvertDialogToPixels(const wxPoint& pt)
+{
+    int charWidth = GetCharWidth();
+    int charHeight = GetCharHeight();
+    wxPoint pt2;
+    pt2.x = (int) ((pt.x * charWidth) / 4) ;
+    pt2.y = (int) ((pt.y * charHeight) / 8) ;
+
+    return pt2;
+}
+