]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/fontdlgg.h
replaced all int/size_t indices in wxControlWithItems API with unsigned int (committi...
[wxWidgets.git] / include / wx / generic / fontdlgg.h
index 9a2a38dfcfc4c5758eef4e973ae0a98bd94e52df..e1a81c3d1a4c8ff61f6fded10491ae3d93b9db20 100644 (file)
@@ -71,21 +71,26 @@ public:
 #endif
 
 protected:
+
+    virtual bool DoCreate(wxWindow *parent);
+
+private:
+
     // common part of all ctors
     void Init();
 
-    virtual bool DoCreate(wxWindow *parent);
+    void DoChangeFont();
 
-    wxFont dialogFont;
+    wxFont m_dialogFont;
 
-    wxChoice *familyChoice;
-    wxChoice *styleChoice;
-    wxChoice *weightChoice;
-    wxChoice *colourChoice;
-    wxCheckBox *underLineCheckBox;
+    wxChoice *m_familyChoice;
+    wxChoice *m_styleChoice;
+    wxChoice *m_weightChoice;
+    wxChoice *m_colourChoice;
+    wxCheckBox *m_underLineCheckBox;
 
 #if !USE_SPINCTRL_FOR_POINT_SIZE
-    wxChoice   *pointSizeChoice;
+    wxChoice   *m_pointSizeChoice;
 #endif
 
     wxFontPreviewer *m_previewer;