]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/frame.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFrame class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "frame.h"
19 #include "wx/window.h"
20 #include "wx/toolbar.h"
21 #include "wx/msw/accel.h"
23 WXDLLEXPORT_DATA(extern const char*) wxFrameNameStr
;
24 WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr
;
26 class WXDLLEXPORT wxMenuBar
;
27 class WXDLLEXPORT wxStatusBar
;
29 class WXDLLEXPORT wxFrame
: public wxWindow
{
31 DECLARE_DYNAMIC_CLASS(wxFrame
)
35 inline wxFrame(wxWindow
*parent
,
37 const wxString
& title
,
38 const wxPoint
& pos
= wxDefaultPosition
,
39 const wxSize
& size
= wxDefaultSize
,
40 long style
= wxDEFAULT_FRAME_STYLE
,
41 const wxString
& name
= wxFrameNameStr
)
43 Create(parent
, id
, title
, pos
, size
, style
, name
);
48 bool Create(wxWindow
*parent
,
50 const wxString
& title
,
51 const wxPoint
& pos
= wxDefaultPosition
,
52 const wxSize
& size
= wxDefaultSize
,
53 long style
= wxDEFAULT_FRAME_STYLE
,
54 const wxString
& name
= wxFrameNameStr
);
56 virtual bool Destroy(void);
57 void SetClientSize(int width
, int height
);
58 void GetClientSize(int *width
, int *height
) const;
60 void GetSize(int *width
, int *height
) const ;
61 void GetPosition(int *x
, int *y
) const ;
62 void SetSize(int x
, int y
, int width
, int height
, int sizeFlags
= wxSIZE_AUTO
);
64 virtual bool OnClose(void);
66 void OnSize(wxSizeEvent
& event
);
67 void OnMenuHighlight(wxMenuEvent
& event
);
68 void OnActivate(wxActivateEvent
& event
);
69 void OnIdle(wxIdleEvent
& event
);
70 void OnCloseWindow(wxCloseEvent
& event
);
75 void SetMenuBar(wxMenuBar
*menu_bar
);
76 virtual wxMenuBar
*GetMenuBar(void) const ;
79 void SetTitle(const wxString
& title
);
80 wxString
GetTitle(void) const ;
82 void Centre(int direction
= wxBOTH
);
84 // Call this to simulate a menu command
85 virtual void Command(int id
);
86 virtual void ProcessCommand(int id
);
89 virtual void SetIcon(const wxIcon
& icon
);
92 virtual wxStatusBar
* CreateStatusBar(int number
=1, long style
= wxST_SIZEGRIP
, wxWindowID id
= 0,
93 const wxString
& name
= "statusBar");
94 inline wxStatusBar
*GetStatusBar() const { return m_frameStatusBar
; }
95 virtual void PositionStatusBar(void);
96 virtual wxStatusBar
*OnCreateStatusBar(int number
, long style
, wxWindowID id
,
97 const wxString
& name
);
100 virtual wxToolBar
* CreateToolBar(long style
= wxNO_BORDER
|wxTB_HORIZONTAL
, wxWindowID id
= -1, const wxString
& name
= wxToolBarNameStr
);
101 virtual wxToolBar
*OnCreateToolBar(long style
, wxWindowID id
, const wxString
& name
);
102 // If made known to the frame, the frame will manage it automatically.
103 virtual inline void SetToolBar(wxToolBar
*toolbar
) { m_frameToolBar
= toolbar
; }
104 virtual inline wxToolBar
*GetToolBar(void) const { return m_frameToolBar
; }
105 virtual void PositionToolBar(void);
107 // Set status line text
108 virtual void SetStatusText(const wxString
& text
, int number
= 0);
110 // Set status line widths
111 virtual void SetStatusWidths(int n
, const int widths_field
[]);
113 // Hint to tell framework which status bar to use
114 // TODO: should this go into a wxFrameworkSettings class perhaps?
115 static void UseNativeStatusBar(bool useNative
) { m_useNativeStatusBar
= useNative
; };
116 static bool UsesNativeStatusBar(void) { return m_useNativeStatusBar
; };
118 // Fit frame around subwindows
119 virtual void Fit(void);
122 virtual void Iconize(bool iconize
);
124 virtual bool IsIconized(void) const ;
127 inline bool Iconized(void) const { return IsIconized(); }
129 virtual void Maximize(bool maximize
);
130 // virtual bool LoadAccelerators(const wxString& table);
132 // Responds to colour changes
133 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
135 // Query app for menu item updates (called from OnIdle)
136 void DoMenuUpdates(void);
137 void DoMenuUpdates(wxMenu
* menu
);
139 WXHMENU
GetWinMenu(void) const ;
141 // Checks if there is a toolbar, and returns the first free client position
142 virtual wxPoint
GetClientAreaOrigin() const;
145 bool MSWOnPaint(void);
146 WXHICON
MSWOnQueryDragIcon(void);
147 void MSWOnSize(int x
, int y
, WXUINT flag
);
148 bool MSWOnCommand(WXWORD id
, WXWORD cmd
, WXHWND control
);
149 bool MSWOnClose(void);
150 void MSWOnMenuHighlight(WXWORD item
, WXWORD flags
, WXHMENU sysmenu
);
151 bool MSWProcessMessage(WXMSG
*msg
);
152 bool MSWTranslateMessage(WXMSG
*msg
);
153 void MSWCreate(int id
, wxWindow
*parent
, const char *WXUNUSED(wclass
), wxWindow
*wx_win
, const char *title
,
154 int x
, int y
, int width
, int height
, long style
);
157 // propagate our state change to all child frames
158 void IconizeChildFrames(bool bIconize
);
160 wxMenuBar
* m_frameMenuBar
;
161 wxStatusBar
* m_frameStatusBar
;
164 WXHICON m_defaultIcon
;
165 static bool m_useNativeStatusBar
;
166 wxToolBar
* m_frameToolBar
;
168 DECLARE_EVENT_TABLE()