#ifndef _WX_FRAME_H_
#define _WX_FRAME_H_
+//
+// Get the default resource ID's for frames
+//
+#include "wx/os2/wxOs2.h"
+
class WXDLLEXPORT wxFrame : public wxFrameBase
{
public:
virtual bool ShowFullScreen( bool bShow
,long lStyle = wxFULLSCREEN_ALL
);
- virtual bool IsFullScreen(void) const { return m_fsIsShowing; };
+ virtual bool IsFullScreen(void) const { return m_bFsIsShowing; };
// implementation only from now on
// TODO: should this go into a wxFrameworkSettings class perhaps?
static void UseNativeStatusBar(bool bUseNative)
- { m_useNativeStatusBar = useNative; };
+ { m_bUseNativeStatusBar = bUseNative; };
static bool UsesNativeStatusBar()
- { return m_useNativeStatusBar; };
+ { return m_bUseNativeStatusBar; };
#endif // wxUSE_STATUSBAR
WXHMENU GetWinMenu() const { return m_hMenu; }
// tooltip management
#if wxUSE_TOOLTIPS
- WXHWND GetToolTipCtrl(void) const { return m_hwndToolTip; }
- void SetToolTipCtrl(WXHWND hHwndTT) { m_hwndToolTip = hwndTT; }
+ WXHWND GetToolTipCtrl(void) const { return m_hWndToolTip; }
+ void SetToolTipCtrl(WXHWND hHwndTT) { m_hWndToolTip = hHwndTT; }
#endif // tooltips
protected:
private:
#if wxUSE_TOOLTIPS
- WXHWND m_hHwndToolTip;
+ WXHWND m_hWndToolTip;
#endif // tooltips
DECLARE_EVENT_TABLE()