#include "wx/msw/private.h"
#include "wx/log.h"
+#ifndef SS_SUNKEN
+ #define SS_SUNKEN 0x00001000L
+#endif
+
+#ifndef SS_NOTIFY
+ #define SS_NOTIFY 0x00000100L
+#endif
+
// ============================================================================
// implementation
// ============================================================================
wxSize sizeReal = AdjustSize(size);
-#ifndef WIN32
-#define SS_SUNKEN 0
-#endif
-
m_hWnd = (WXHWND)::CreateWindow
(
wxT("STATIC"),
wxT(""),
- WS_VISIBLE | WS_CHILD |
- SS_GRAYRECT | SS_SUNKEN, // | SS_ETCHEDFRAME,
+ WS_VISIBLE | WS_CHILD /* | WS_CLIPSIBLINGS */ |
+ SS_GRAYRECT | SS_SUNKEN | SS_NOTIFY,
pos.x, pos.y, sizeReal.x, sizeReal.y,
GetWinHwnd(parent),
(HMENU)m_windowId,
if ( !m_hWnd )
{
-#ifdef __WXDEBUG__
wxLogDebug(wxT("Failed to create static control"));
-#endif
+
return FALSE;
}
return TRUE;
}
-#endif
+
+#endif // wxUSE_STATLINE