projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Removed comma
[wxWidgets.git]
/
include
/
wx
/
gtk1
/
frame.h
diff --git
a/include/wx/gtk1/frame.h
b/include/wx/gtk1/frame.h
index 0a14bb20c3019aa4c66d5fce1981c0faac22a36c..49d68c88055b16bf918a417abda230ec70885470 100644
(file)
--- a/
include/wx/gtk1/frame.h
+++ b/
include/wx/gtk1/frame.h
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: wx/gtk/frame.h
+// Name: wx/gtk
1
/frame.h
// Purpose:
// Author: Robert Roebling
// Id: $Id$
// Purpose:
// Author: Robert Roebling
// Id: $Id$
@@
-7,30
+7,25
@@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-
#ifndef __GTKFRAMEH__
#define __GTKFRAMEH__
#ifndef __GTKFRAMEH__
#define __GTKFRAMEH__
-#if defined(__GNUG__) && !defined(__APPLE__)
- #pragma interface "frame.h"
-#endif
-
//-----------------------------------------------------------------------------
// classes
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// classes
//-----------------------------------------------------------------------------
-class wxMDIChildFrame;
-class wxMDIClientWindow;
-class wxMenu;
-class wxMenuBar;
-class wxToolBar;
-class wxStatusBar;
+class
WXDLLIMPEXP_CORE
wxMDIChildFrame;
+class
WXDLLIMPEXP_CORE
wxMDIClientWindow;
+class
WXDLLIMPEXP_CORE
wxMenu;
+class
WXDLLIMPEXP_CORE
wxMenuBar;
+class
WXDLLIMPEXP_CORE
wxToolBar;
+class
WXDLLIMPEXP_CORE
wxStatusBar;
//-----------------------------------------------------------------------------
// wxFrame
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxFrame
//-----------------------------------------------------------------------------
-class wxFrame : public wxFrameBase
+class
WXDLLIMPEXP_CORE
wxFrame : public wxFrameBase
{
public:
// construction
{
public:
// construction
@@
-62,18
+57,20
@@
public:
virtual void PositionStatusBar();
virtual wxStatusBar* CreateStatusBar(int number = 1,
virtual void PositionStatusBar();
virtual wxStatusBar* CreateStatusBar(int number = 1,
- long style = wxST_SIZEGRIP,
+ long style = wxST_SIZEGRIP
|wxFULL_REPAINT_ON_RESIZE
,
wxWindowID id = 0,
const wxString& name = wxStatusLineNameStr);
wxWindowID id = 0,
const wxString& name = wxStatusLineNameStr);
+
+ void SetStatusBar(wxStatusBar *statbar);
#endif // wxUSE_STATUSBAR
#if wxUSE_TOOLBAR
#endif // wxUSE_STATUSBAR
#if wxUSE_TOOLBAR
- virtual wxToolBar* CreateToolBar(long style =
wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT
,
+ virtual wxToolBar* CreateToolBar(long style =
-1
,
wxWindowID id = -1,
const wxString& name = wxToolBarNameStr);
void SetToolBar(wxToolBar *toolbar);
#endif // wxUSE_TOOLBAR
wxWindowID id = -1,
const wxString& name = wxToolBarNameStr);
void SetToolBar(wxToolBar *toolbar);
#endif // wxUSE_TOOLBAR
-
+
wxPoint GetClientAreaOrigin() const { return wxPoint(0, 0); }
// implementation from now on
wxPoint GetClientAreaOrigin() const { return wxPoint(0, 0); }
// implementation from now on
@@
-84,6
+81,7
@@
public:
virtual void OnInternalIdle();
bool m_menuBarDetached;
virtual void OnInternalIdle();
bool m_menuBarDetached;
+ int m_menuBarHeight;
bool m_toolBarDetached;
protected:
bool m_toolBarDetached;
protected:
@@
-95,8
+93,14
@@
protected:
virtual void DoGetClientSize( int *width, int *height ) const;
#if wxUSE_MENUS_NATIVE
virtual void DoGetClientSize( int *width, int *height ) const;
#if wxUSE_MENUS_NATIVE
+
virtual void DetachMenuBar();
virtual void AttachMenuBar(wxMenuBar *menubar);
virtual void DetachMenuBar();
virtual void AttachMenuBar(wxMenuBar *menubar);
+
+public:
+ // Menu size is dynamic now, call this whenever it might change.
+ void UpdateMenuBarSize();
+
#endif // wxUSE_MENUS_NATIVE
DECLARE_DYNAMIC_CLASS(wxFrame)
#endif // wxUSE_MENUS_NATIVE
DECLARE_DYNAMIC_CLASS(wxFrame)