]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/frame.h
corrected a bug in dc which resetted the port , exchanged the wxchoice implementation
[wxWidgets.git] / include / wx / msw / frame.h
index 325f0acc510b96a4772cc5df38a7d6a830a022b4..5e161cd3ab1d06267e2af3971870471278a482be 100644 (file)
@@ -112,6 +112,10 @@ public:
     void SetToolTipCtrl(WXHWND hwndTT) { m_hwndToolTip = hwndTT; }
 #endif // tooltips
 
+    // a MSW only function which sends a size event to the window using its
+    // current size - this has an effect of refreshing the window layout
+    void SendSizeEvent();
+
 protected:
     // common part of all ctors
     void Init();
@@ -141,10 +145,16 @@ protected:
 
     // window proc for the frames
     long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
-    
+
     virtual bool IsMDIChild() const { return FALSE; }
 
-    bool                  m_iconized;
+    // is the frame currently iconized?
+    bool m_iconized;
+
+    // should the frame be maximized when it will be shown? set by Maximize()
+    // when it is called while the frame is hidden
+    bool m_maximizeOnShow;
+
     WXHICON               m_defaultIcon;
 
 #if wxUSE_STATUSBAR