]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: frame.h | |
3 | // Purpose: wxFrame class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __FRAMEH__ | |
13 | #define __FRAMEH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "frame.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/window.h" | |
20 | ||
21 | WXDLLEXPORT_DATA(extern const char*) wxFrameNameStr; | |
22 | ||
23 | class WXDLLEXPORT wxMenuBar; | |
24 | class WXDLLEXPORT wxStatusBar; | |
25 | ||
26 | class WXDLLEXPORT wxFrame: public wxWindow { | |
27 | ||
28 | DECLARE_DYNAMIC_CLASS(wxFrame) | |
29 | ||
30 | public: | |
31 | wxFrame(void); | |
32 | inline wxFrame(wxWindow *parent, | |
33 | wxWindowID id, | |
34 | const wxString& title, | |
35 | const wxPoint& pos = wxDefaultPosition, | |
36 | const wxSize& size = wxDefaultSize, | |
37 | long style = wxDEFAULT_FRAME_STYLE, | |
38 | const wxString& name = wxFrameNameStr) | |
39 | { | |
40 | Create(parent, id, title, pos, size, style, name); | |
41 | } | |
42 | ||
43 | ~wxFrame(void); | |
44 | ||
45 | bool Create(wxWindow *parent, | |
46 | wxWindowID id, | |
47 | const wxString& title, | |
48 | const wxPoint& pos = wxDefaultPosition, | |
49 | const wxSize& size = wxDefaultSize, | |
50 | long style = wxDEFAULT_FRAME_STYLE, | |
51 | const wxString& name = wxFrameNameStr); | |
52 | ||
53 | virtual bool Destroy(void); | |
54 | void SetClientSize(int width, int height); | |
55 | void GetClientSize(int *width, int *height) const; | |
56 | ||
57 | void GetSize(int *width, int *height) const ; | |
58 | void GetPosition(int *x, int *y) const ; | |
59 | void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); | |
60 | ||
61 | void OnSize(wxSizeEvent& event); | |
62 | void OnMenuHighlight(wxMenuEvent& event); | |
63 | void OnActivate(wxActivateEvent& event); | |
64 | void OnIdle(wxIdleEvent& event); | |
65 | void OnCloseWindow(wxCloseEvent& event); | |
66 | ||
67 | bool Show(bool show); | |
68 | ||
69 | // Set menu bar | |
70 | void SetMenuBar(wxMenuBar *menu_bar); | |
71 | virtual wxMenuBar *GetMenuBar(void) const ; | |
72 | ||
73 | // Set title | |
74 | void SetTitle(const wxString& title); | |
75 | wxString GetTitle(void) const ; | |
76 | ||
77 | void Centre(int direction = wxBOTH); | |
78 | ||
79 | // Call this to simulate a menu command | |
80 | virtual void Command(int id); | |
81 | virtual void ProcessCommand(int id); | |
82 | ||
83 | // Set icon | |
84 | virtual void SetIcon(const wxIcon& icon); | |
85 | ||
86 | // Create status line | |
87 | virtual bool CreateStatusBar(int number=1); | |
88 | inline wxStatusBar *GetStatusBar() const { return m_frameStatusBar; } | |
89 | ||
90 | // Set status line text | |
91 | virtual void SetStatusText(const wxString& text, int number = 0); | |
92 | ||
93 | // Set status line widths | |
94 | virtual void SetStatusWidths(int n, const int widths_field[]); | |
95 | ||
96 | // Hint to tell framework which status bar to use | |
97 | // TODO: should this go into a wxFrameworkSettings class perhaps? | |
98 | static void UseNativeStatusBar(bool useNative) { m_useNativeStatusBar = useNative; }; | |
99 | static bool UsesNativeStatusBar(void) { return m_useNativeStatusBar; }; | |
100 | ||
101 | // Fit frame around subwindows | |
102 | virtual void Fit(void); | |
103 | ||
104 | // Iconize | |
105 | virtual void Iconize(bool iconize); | |
106 | ||
107 | virtual bool IsIconized(void) const ; | |
108 | ||
109 | // Compatibility | |
110 | inline bool Iconized(void) const { return IsIconized(); } | |
111 | ||
112 | virtual void Maximize(bool maximize); | |
113 | virtual bool LoadAccelerators(const wxString& table); | |
114 | ||
115 | virtual void PositionStatusBar(void); | |
116 | virtual wxStatusBar *OnCreateStatusBar(int number); | |
117 | ||
118 | // Query app for menu item updates (called from OnIdle) | |
119 | void DoMenuUpdates(void); | |
120 | void DoMenuUpdates(wxMenu* menu); | |
121 | ||
122 | WXHMENU GetWinMenu(void) const ; | |
123 | ||
124 | // Responds to colour changes | |
125 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
126 | ||
127 | // Handlers | |
128 | bool MSWOnPaint(void); | |
129 | WXHICON MSWOnQueryDragIcon(void); | |
130 | void MSWOnSize(int x, int y, WXUINT flag); | |
131 | bool MSWOnCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
132 | bool MSWOnClose(void); | |
133 | void MSWOnMenuHighlight(WXWORD item, WXWORD flags, WXHMENU sysmenu); | |
134 | bool MSWProcessMessage(WXMSG *msg); | |
135 | void MSWCreate(int id, wxWindow *parent, const char *WXUNUSED(wclass), wxWindow *wx_win, const char *title, | |
136 | int x, int y, int width, int height, long style); | |
137 | ||
138 | protected: | |
139 | wxMenuBar * m_frameMenuBar; | |
140 | wxStatusBar * m_frameStatusBar; | |
141 | wxIcon m_icon; | |
142 | bool m_iconized; | |
143 | WXHICON m_defaultIcon; | |
144 | static bool m_useNativeStatusBar; | |
145 | ||
146 | DECLARE_EVENT_TABLE() | |
147 | }; | |
148 | ||
149 | #endif | |
150 | // __FRAMEH__ |