]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wince/missing.h
Added implementation of MDI using top level windows
[wxWidgets.git] / include / wx / msw / wince / missing.h
index d43caddfcbe8d95d1cd111014dde5b9650449e50..08fb428b8748c98c58bb942dac013e4abdcf9083 100644 (file)
@@ -6,14 +6,22 @@
 // Created:     16/11/2002
 // RCS-ID:      
 // Copyright:   (c) KOAN SAS ( www.koansoftware.com )
-// Licence:     wxWindows license
-/////////////////////////////////////////////////////////////////////////////// 
+// Licence:     wxWindows licence
+///////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_CE_MISSING_H_
 #define _WX_CE_MISSING_H_
 
+BOOL IsIconic( HWND hWnd )
+{
+    // Probably not right...
+#if 0
+    long style = GetWindowLong(hWnd, GWL_STYLE);
+    return ((style & WS_MINIMIZE) == 0);
+#endif
+    return FALSE;
+}
 
-#include "wx/msw/private.h"
 
 /*
 Most of these are in MSVC++6.0   <wx\wince\winuser.h>
@@ -21,6 +29,13 @@ see also                         <wx\msw\gnuwin32\winresrc.h>
 */
 ////////////////////////////////////////////////////////
 
+// JACS: I've commented these out in order to start from
+// scratch. I don't think we should simply add styles,
+// classes etc. when we don't know if they're supported
+// by WinCE libraries.
+
+#if 0
+
 /*
  * Extended Window Styles
  */
@@ -134,6 +149,8 @@ CallWindowProcW(
 #define CallWindowProc  CallWindowProcA
 #endif // !UNICODE
 
+#endif
+
 ////////////////////////////////////////////////////////
 
 #endif // _WX_CE_MISSING_H_