1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-11-16 21:31:40 +00:00
|
|
|
// Name: wx/gtk/frame.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKFRAMEH__
|
|
|
|
#define __GTKFRAMEH__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1999-11-16 21:31:40 +00:00
|
|
|
#pragma interface "frame.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1998-07-22 22:13:31 +00:00
|
|
|
class wxMDIChildFrame;
|
1998-07-29 13:21:22 +00:00
|
|
|
class wxMDIClientWindow;
|
|
|
|
class wxMenu;
|
|
|
|
class wxMenuBar;
|
|
|
|
class wxToolBar;
|
|
|
|
class wxStatusBar;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2001-10-19 20:35:05 +00:00
|
|
|
// wxFrame
|
1998-05-20 14:01:55 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2001-10-19 20:35:05 +00:00
|
|
|
class wxFrame : public wxFrameBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-02-22 11:01:13 +00:00
|
|
|
public:
|
1999-11-16 21:31:40 +00:00
|
|
|
// construction
|
2001-10-19 20:35:05 +00:00
|
|
|
wxFrame() { Init(); }
|
|
|
|
wxFrame(wxWindow *parent,
|
2001-06-26 20:59:19 +00:00
|
|
|
wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
|
|
|
const wxString& name = wxFrameNameStr)
|
1999-11-16 21:31:40 +00:00
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
Create(parent, id, title, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
|
|
|
const wxString& name = wxFrameNameStr);
|
|
|
|
|
2001-10-19 20:35:05 +00:00
|
|
|
virtual ~wxFrame();
|
1999-11-16 21:31:40 +00:00
|
|
|
|
1999-06-01 15:32:12 +00:00
|
|
|
#if wxUSE_STATUSBAR
|
2000-02-05 17:56:26 +00:00
|
|
|
virtual void PositionStatusBar();
|
|
|
|
|
1999-11-16 21:31:40 +00:00
|
|
|
virtual wxStatusBar* CreateStatusBar(int number = 1,
|
2004-03-07 17:28:36 +00:00
|
|
|
long style = wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
|
1999-11-16 21:31:40 +00:00
|
|
|
wxWindowID id = 0,
|
|
|
|
const wxString& name = wxStatusLineNameStr);
|
2004-04-18 10:27:11 +00:00
|
|
|
|
|
|
|
void SetStatusBar(wxStatusBar *statbar);
|
1999-06-01 15:32:12 +00:00
|
|
|
#endif // wxUSE_STATUSBAR
|
1999-02-22 11:01:13 +00:00
|
|
|
|
1999-06-01 15:32:12 +00:00
|
|
|
#if wxUSE_TOOLBAR
|
2003-07-10 10:53:00 +00:00
|
|
|
virtual wxToolBar* CreateToolBar(long style = -1,
|
1999-11-16 21:31:40 +00:00
|
|
|
wxWindowID id = -1,
|
|
|
|
const wxString& name = wxToolBarNameStr);
|
1999-10-09 09:06:35 +00:00
|
|
|
void SetToolBar(wxToolBar *toolbar);
|
1999-06-01 15:32:12 +00:00
|
|
|
#endif // wxUSE_TOOLBAR
|
2001-09-19 22:45:14 +00:00
|
|
|
|
|
|
|
wxPoint GetClientAreaOrigin() const { return wxPoint(0, 0); }
|
1999-02-22 11:01:13 +00:00
|
|
|
|
1999-11-16 21:31:40 +00:00
|
|
|
// implementation from now on
|
|
|
|
// --------------------------
|
1999-02-22 11:01:13 +00:00
|
|
|
|
1999-11-16 21:31:40 +00:00
|
|
|
// GTK callbacks
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void GtkOnSize( int x, int y, int width, int height );
|
|
|
|
virtual void OnInternalIdle();
|
|
|
|
|
1999-04-14 16:56:36 +00:00
|
|
|
bool m_menuBarDetached;
|
2002-12-04 14:11:26 +00:00
|
|
|
int m_menuBarHeight;
|
1999-04-14 16:56:36 +00:00
|
|
|
bool m_toolBarDetached;
|
2000-09-05 10:51:30 +00:00
|
|
|
|
1999-02-22 11:01:13 +00:00
|
|
|
protected:
|
1999-05-30 16:20:42 +00:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
1999-11-16 21:31:40 +00:00
|
|
|
|
1999-12-01 15:23:56 +00:00
|
|
|
// override wxWindow methods to take into account tool/menu/statusbars
|
1999-02-22 11:01:13 +00:00
|
|
|
virtual void DoSetClientSize(int width, int height);
|
1999-05-11 20:41:00 +00:00
|
|
|
virtual void DoGetClientSize( int *width, int *height ) const;
|
1999-02-22 11:01:13 +00:00
|
|
|
|
2001-07-10 12:25:46 +00:00
|
|
|
#if wxUSE_MENUS_NATIVE
|
2002-12-04 14:11:26 +00:00
|
|
|
|
2001-07-10 12:25:46 +00:00
|
|
|
virtual void DetachMenuBar();
|
|
|
|
virtual void AttachMenuBar(wxMenuBar *menubar);
|
2002-12-04 14:11:26 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
// Menu size is dynamic now, call this whenever it might change.
|
|
|
|
void UpdateMenuBarSize();
|
|
|
|
|
2001-07-10 12:25:46 +00:00
|
|
|
#endif // wxUSE_MENUS_NATIVE
|
2001-10-19 20:35:05 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxFrame)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKFRAMEH__
|