More wxFrame updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6130 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2000-02-17 23:31:03 +00:00
parent c692969f82
commit 80d83cbcc2
3 changed files with 202 additions and 141 deletions

View File

@@ -53,7 +53,7 @@ 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_bFfsIsShowing; };
// implementation only from now on
@@ -91,9 +91,9 @@ public:
// 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; }
@@ -131,8 +131,8 @@ public:
// 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_hHwndToolTip; }
void SetToolTipCtrl(WXHWND hHwndTT) { m_hHwndToolTip = hHwndTT; }
#endif // tooltips
protected:
@@ -194,7 +194,7 @@ protected:
private:
#if wxUSE_TOOLTIPS
WXHWND m_hHwndToolTip;
WXHWND m_hWndToolTip;
#endif // tooltips
DECLARE_EVENT_TABLE()