]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk1/frame.h
Partial Watcom C++ 10.6 support added (doesn't link for some reason)
[wxWidgets.git] / include / wx / gtk1 / frame.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.h
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling, Julian Smart
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __GTKFRAMEH__
12#define __GTKFRAMEH__
13
14#ifdef __GNUG__
15#pragma interface
16#endif
17
18#include "wx/defs.h"
19#include "wx/object.h"
20#include "wx/window.h"
21
22//-----------------------------------------------------------------------------
23// classes
24//-----------------------------------------------------------------------------
25
26class wxMDIChildFrame;
27class wxMDIClientWindow;
28class wxMenu;
29class wxMenuBar;
30class wxToolBar;
31class wxStatusBar;
32
33class wxFrame;
34
35//-----------------------------------------------------------------------------
36// global data
37//-----------------------------------------------------------------------------
38
39extern const char *wxFrameNameStr;
40extern const char *wxToolBarNameStr;
41
42//-----------------------------------------------------------------------------
43// wxFrame
44//-----------------------------------------------------------------------------
45
46class wxFrame: public wxWindow
47{
48 DECLARE_DYNAMIC_CLASS(wxFrame)
49public:
50
51 wxFrame();
52 wxFrame( wxWindow *parent, wxWindowID id, const wxString &title,
53 const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
54 long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
55 bool Create( wxWindow *parent, wxWindowID id, const wxString &title,
56 const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize,
57 long style = wxDEFAULT_FRAME_STYLE, const wxString &name = wxFrameNameStr );
58 ~wxFrame();
59 bool Destroy();
60
61 virtual bool Show( bool show );
62 virtual void Centre( int direction = wxHORIZONTAL );
63
64 virtual void GetClientSize( int *width, int *height ) const;
65 virtual void SetClientSize( int const width, int const height );
66
67 virtual void SetSize( int x, int y, int width, int height,
68 int sizeFlags = wxSIZE_AUTO );
69 virtual void SetSize( int width, int height );
70
71 virtual wxStatusBar* CreateStatusBar(int number=1, long style = wxST_SIZEGRIP, wxWindowID id = 0,
72 const wxString& name = "statusBar");
73 virtual wxStatusBar *OnCreateStatusBar( int number, long style, wxWindowID id,
74 const wxString& name );
75 virtual wxStatusBar *GetStatusBar() const;
76 inline void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; }
77 virtual void SetStatusText( const wxString &text, int number = 0 );
78 virtual void SetStatusWidths( int n, const int widths_field[] );
79
80 virtual wxToolBar* CreateToolBar( long style = wxNO_BORDER|wxTB_HORIZONTAL, wxWindowID id = -1,
81 const wxString& name = wxToolBarNameStr);
82 virtual wxToolBar *OnCreateToolBar( long style, wxWindowID id, const wxString& name );
83 virtual wxToolBar *GetToolBar(void) const;
84 inline void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; }
85
86 virtual void SetMenuBar( wxMenuBar *menuBar );
87 virtual wxMenuBar *GetMenuBar() const;
88
89 virtual void SetTitle( const wxString &title );
90 virtual wxString GetTitle() const { return m_title; }
91
92 virtual void SetIcon( const wxIcon &icon );
93 virtual void Iconize( bool WXUNUSED(iconize)) { }
94 virtual bool IsIconized(void) const { return FALSE; }
95 bool Iconized(void) const { return IsIconized(); }
96 virtual void Maximize(bool WXUNUSED(maximize)) {}
97 virtual void Restore(void) {}
98
99 void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
100 void OnSize( wxSizeEvent &event );
101 void OnCloseWindow( wxCloseEvent& event );
102 void OnIdle(wxIdleEvent& event );
103
104 // implementation
105
106 virtual void GtkOnSize( int x, int y, int width, int height );
107 virtual wxPoint GetClientAreaOrigin() const;
108 void DoMenuUpdates();
109 void DoMenuUpdates(wxMenu* menu);
110
111 wxMenuBar *m_frameMenuBar;
112 wxStatusBar *m_frameStatusBar;
113 wxToolBar *m_frameToolBar;
114 wxString m_title;
115 wxIcon m_icon;
116 int m_miniEdge,m_miniTitle;
117
118 DECLARE_EVENT_TABLE()
119};
120
121#endif // __GTKFRAMEH__