1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-11-16 16:31:40 -05:00
|
|
|
// Name: wx/gtk/frame.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 13:03:18 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart
|
1998-07-23 12:06:23 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKFRAMEH__
|
|
|
|
#define __GTKFRAMEH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-11-16 16:31:40 -05:00
|
|
|
#pragma interface "frame.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1998-07-22 18:13:31 -04:00
|
|
|
class wxMDIChildFrame;
|
1998-07-29 09:21:22 -04:00
|
|
|
class wxMDIClientWindow;
|
|
|
|
class wxMenu;
|
|
|
|
class wxMenuBar;
|
|
|
|
class wxToolBar;
|
|
|
|
class wxStatusBar;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
class wxFrame;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxFrame
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-11-16 16:31:40 -05:00
|
|
|
class wxFrame : public wxFrameBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-02-22 06:01:13 -05:00
|
|
|
public:
|
1999-11-16 16:31:40 -05:00
|
|
|
// construction
|
1999-05-30 12:20:42 -04:00
|
|
|
wxFrame() { Init(); }
|
1999-11-16 16:31:40 -05:00
|
|
|
wxFrame(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
|
|
|
const wxString& name = wxFrameNameStr)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
virtual ~wxFrame();
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual void Maximize(bool maximize = TRUE);
|
|
|
|
virtual bool IsMaximized() const;
|
|
|
|
virtual void Iconize(bool iconize = TRUE);
|
|
|
|
virtual bool IsIconized() const;
|
|
|
|
virtual void SetIcon(const wxIcon& icon);
|
|
|
|
virtual void MakeModal(bool modal = TRUE);
|
|
|
|
virtual void Restore();
|
|
|
|
|
|
|
|
virtual void SetMenuBar( wxMenuBar *menuBar );
|
1999-02-22 06:01:13 -05:00
|
|
|
|
1999-06-01 11:32:12 -04:00
|
|
|
#if wxUSE_STATUSBAR
|
1999-11-16 16:31:40 -05:00
|
|
|
virtual wxStatusBar* CreateStatusBar(int number = 1,
|
|
|
|
long style = wxST_SIZEGRIP,
|
|
|
|
wxWindowID id = 0,
|
|
|
|
const wxString& name = wxStatusLineNameStr);
|
1999-06-01 11:32:12 -04:00
|
|
|
#endif // wxUSE_STATUSBAR
|
1999-02-22 06:01:13 -05:00
|
|
|
|
1999-06-01 11:32:12 -04:00
|
|
|
#if wxUSE_TOOLBAR
|
1999-11-16 16:31:40 -05:00
|
|
|
virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT,
|
|
|
|
wxWindowID id = -1,
|
|
|
|
const wxString& name = wxToolBarNameStr);
|
1999-10-09 05:06:35 -04:00
|
|
|
void SetToolBar(wxToolBar *toolbar);
|
1999-06-01 11:32:12 -04:00
|
|
|
#endif // wxUSE_TOOLBAR
|
1999-02-22 06:01:13 -05:00
|
|
|
|
1999-11-16 16:31:40 -05:00
|
|
|
virtual bool Show(bool show);
|
1999-02-22 06:01:13 -05:00
|
|
|
|
|
|
|
virtual void SetTitle( const wxString &title );
|
|
|
|
virtual wxString GetTitle() const { return m_title; }
|
|
|
|
|
1999-11-16 16:31:40 -05:00
|
|
|
// implementation from now on
|
|
|
|
// --------------------------
|
1999-02-22 06:01:13 -05:00
|
|
|
|
1999-11-16 16:31:40 -05:00
|
|
|
// GTK callbacks
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void GtkOnSize( int x, int y, int width, int height );
|
|
|
|
virtual void OnInternalIdle();
|
|
|
|
|
|
|
|
wxString m_title;
|
1999-11-16 16:31:40 -05:00
|
|
|
int m_miniEdge,
|
|
|
|
m_miniTitle;
|
1999-04-09 16:26:29 -04:00
|
|
|
GtkWidget *m_mainWidget;
|
1999-04-14 12:56:36 -04:00
|
|
|
bool m_menuBarDetached;
|
|
|
|
bool m_toolBarDetached;
|
1999-05-22 11:13:18 -04:00
|
|
|
bool m_insertInClientArea; /* not from within OnCreateXXX */
|
1999-02-22 06:01:13 -05:00
|
|
|
|
|
|
|
protected:
|
1999-05-30 12:20:42 -04:00
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
1999-11-16 16:31:40 -05:00
|
|
|
|
|
|
|
// override wxWindow methods to take into account tool/menu/statusbars
|
1999-02-22 06:01:13 -05:00
|
|
|
virtual void DoSetSize(int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int sizeFlags = wxSIZE_AUTO);
|
|
|
|
|
|
|
|
virtual void DoSetClientSize(int width, int height);
|
1999-05-11 16:41:00 -04:00
|
|
|
virtual void DoGetClientSize( int *width, int *height ) const;
|
1999-02-22 06:01:13 -05:00
|
|
|
|
|
|
|
private:
|
1999-11-16 16:31:40 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxFrame)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKFRAMEH__
|