]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/wincmn.cpp
no message
[wxWidgets.git] / src / common / wincmn.cpp
index 9783cb3ca330c2660d1099eea200aa068f859c57..4aebe4007efb18c807dc2e64e40f4b7c964cbc94 100644 (file)
@@ -9,6 +9,20 @@
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+
+#include "wx/frame.h"
+#include "wx/defs.h"
+#include "wx/window.h"
+
 // Do Update UI processing for child controls
 
 // TODO: should this be implemented for the child window rather
@@ -50,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;
+}
+