]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/frame.cpp
added stubs for wxTreeCtrl functions not yet implemented under MSW
[wxWidgets.git] / src / msw / frame.cpp
index 70feafee9398637fcca994fb916987d45b715d1e..8759c68272c8d6be89a074f2a4b85665c4314a58 100644 (file)
@@ -331,6 +331,12 @@ bool wxFrame::IsIconized(void) const
   return m_iconized;
 }
 
+// Is it maximized?
+bool wxFrame::IsMaximized(void) const
+{
+    return (::IsZoomed((HWND) GetHWND()) != 0) ;
+}
+
 void wxFrame::SetTitle(const wxString& title)
 {
   SetWindowText((HWND) GetHWND(), (const char *)title);