]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/laywin.h
WXIMPORT must specify default visibility too, otherwise things like typeinfo may...
[wxWidgets.git] / include / wx / generic / laywin.h
CommitLineData
a6d70308
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: laywin.h
3// Purpose: Implements a simple layout algorithm, plus
4// wxSashLayoutWindow which is an example of a window with
5// layout-awareness (via event handlers). This is suited to
6// IDE-style window layout.
7// Author: Julian Smart
8// Modified by:
9// Created: 04/01/98
10// RCS-ID: $Id$
11// Copyright: (c) Julian Smart
65571936 12// Licence: wxWindows licence
a6d70308
JS
13/////////////////////////////////////////////////////////////////////////////
14
15#ifndef _WX_LAYWIN_H_G_
16#define _WX_LAYWIN_H_G_
17
88ac883a
VZ
18#if wxUSE_SASH
19 #include "wx/sashwin.h"
20#endif // wxUSE_SASH
a6d70308 21
a6956d86
MR
22#include "wx/event.h"
23
2e4df4bf 24BEGIN_DECLARE_EVENT_TYPES()
12f190b0
VS
25 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_QUERY_LAYOUT_INFO, 1500)
26 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_CALCULATE_LAYOUT, 1501)
2e4df4bf 27END_DECLARE_EVENT_TYPES()
a6d70308 28
88ac883a
VZ
29enum wxLayoutOrientation
30{
a6d70308
JS
31 wxLAYOUT_HORIZONTAL,
32 wxLAYOUT_VERTICAL
33};
34
88ac883a
VZ
35enum wxLayoutAlignment
36{
a6d70308
JS
37 wxLAYOUT_NONE,
38 wxLAYOUT_TOP,
39 wxLAYOUT_LEFT,
40 wxLAYOUT_RIGHT,
afce4c03 41 wxLAYOUT_BOTTOM
a6d70308
JS
42};
43
44// Not sure this is necessary
45// Tell window which dimension we're sizing on
46#define wxLAYOUT_LENGTH_Y 0x0008
47#define wxLAYOUT_LENGTH_X 0x0000
48
49// Use most recently used length
50#define wxLAYOUT_MRU_LENGTH 0x0010
51
52// Only a query, so don't actually move it.
53#define wxLAYOUT_QUERY 0x0100
54
55/*
56 * This event is used to get information about window alignment,
57 * orientation and size.
58 */
59
12f190b0 60class WXDLLIMPEXP_ADV wxQueryLayoutInfoEvent: public wxEvent
a6d70308 61{
a6d70308 62public:
a6d70308
JS
63 wxQueryLayoutInfoEvent(wxWindowID id = 0)
64 {
65 SetEventType(wxEVT_QUERY_LAYOUT_INFO);
66 m_requestedLength = 0;
67 m_flags = 0;
8cb50e4b 68 m_id = id;
a6d70308
JS
69 m_alignment = wxLAYOUT_TOP;
70 m_orientation = wxLAYOUT_HORIZONTAL;
71 }
a6d70308 72
bfc6fde4
VZ
73 // Read by the app
74 void SetRequestedLength(int length) { m_requestedLength = length; }
75 int GetRequestedLength() const { return m_requestedLength; }
a6d70308 76
bfc6fde4
VZ
77 void SetFlags(int flags) { m_flags = flags; }
78 int GetFlags() const { return m_flags; }
a6d70308 79
bfc6fde4
VZ
80 // Set by the app
81 void SetSize(const wxSize& size) { m_size = size; }
82 wxSize GetSize() const { return m_size; }
83
84 void SetOrientation(wxLayoutOrientation orient) { m_orientation = orient; }
85 wxLayoutOrientation GetOrientation() const { return m_orientation; }
86
87 void SetAlignment(wxLayoutAlignment align) { m_alignment = align; }
88 wxLayoutAlignment GetAlignment() const { return m_alignment; }
a6d70308 89
acd15a3f
VZ
90 virtual wxEvent *Clone() const { return new wxQueryLayoutInfoEvent(*this); }
91
a6d70308
JS
92protected:
93 int m_flags;
94 int m_requestedLength;
95 wxSize m_size;
96 wxLayoutOrientation m_orientation;
97 wxLayoutAlignment m_alignment;
ca65c044 98
2b5f62a0 99private:
a6cbc4db 100 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxQueryLayoutInfoEvent)
a6d70308
JS
101};
102
103typedef void (wxEvtHandler::*wxQueryLayoutInfoEventFunction)(wxQueryLayoutInfoEvent&);
104
82a5f02c 105#define EVT_QUERY_LAYOUT_INFO(func) \
ca65c044 106 DECLARE_EVENT_TABLE_ENTRY( wxEVT_QUERY_LAYOUT_INFO, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxQueryLayoutInfoEventFunction, & func ), NULL ),
a6d70308
JS
107
108/*
109 * This event is used to take a bite out of the available client area.
110 */
111
12f190b0 112class WXDLLIMPEXP_ADV wxCalculateLayoutEvent: public wxEvent
a6d70308 113{
a6d70308
JS
114public:
115 wxCalculateLayoutEvent(wxWindowID id = 0)
116 {
117 SetEventType(wxEVT_CALCULATE_LAYOUT);
118 m_flags = 0;
afce4c03 119 m_id = id;
a6d70308 120 }
a6d70308 121
acd15a3f
VZ
122 // Read by the app
123 void SetFlags(int flags) { m_flags = flags; }
124 int GetFlags() const { return m_flags; }
125
126 // Set by the app
127 void SetRect(const wxRect& rect) { m_rect = rect; }
128 wxRect GetRect() const { return m_rect; }
129
130 virtual wxEvent *Clone() const { return new wxCalculateLayoutEvent(*this); }
131
a6d70308
JS
132protected:
133 int m_flags;
134 wxRect m_rect;
ca65c044 135
2b5f62a0 136private:
a6cbc4db 137 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxCalculateLayoutEvent)
a6d70308
JS
138};
139
140typedef void (wxEvtHandler::*wxCalculateLayoutEventFunction)(wxCalculateLayoutEvent&);
141
82a5f02c 142#define EVT_CALCULATE_LAYOUT(func) \
ca65c044 143 DECLARE_EVENT_TABLE_ENTRY( wxEVT_CALCULATE_LAYOUT, wxID_ANY, wxID_ANY, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxCalculateLayoutEventFunction, & func ), NULL ),
a6d70308 144
88ac883a
VZ
145#if wxUSE_SASH
146
a6d70308
JS
147// This is window that can remember alignment/orientation, does its own layout,
148// and can provide sashes too. Useful for implementing docked windows with sashes in
149// an IDE-style interface.
12f190b0 150class WXDLLIMPEXP_ADV wxSashLayoutWindow: public wxSashWindow
a6d70308 151{
a6d70308 152public:
f6bcfd97
BP
153 wxSashLayoutWindow()
154 {
155 Init();
156 }
157
ca65c044 158 wxSashLayoutWindow(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
2b5f62a0 159 const wxSize& size = wxDefaultSize, long style = wxSW_3D|wxCLIP_CHILDREN, const wxString& name = wxT("layoutWindow"))
f6bcfd97
BP
160 {
161 Create(parent, id, pos, size, style, name);
162 }
163
ca65c044 164 bool Create(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
2b5f62a0 165 const wxSize& size = wxDefaultSize, long style = wxSW_3D|wxCLIP_CHILDREN, const wxString& name = wxT("layoutWindow"));
a6d70308
JS
166
167// Accessors
47b378bd
VS
168 inline wxLayoutAlignment GetAlignment() const { return m_alignment; }
169 inline wxLayoutOrientation GetOrientation() const { return m_orientation; }
a6d70308 170
47b378bd
VS
171 inline void SetAlignment(wxLayoutAlignment align) { m_alignment = align; }
172 inline void SetOrientation(wxLayoutOrientation orient) { m_orientation = orient; }
a6d70308
JS
173
174 // Give the window default dimensions
175 inline void SetDefaultSize(const wxSize& size) { m_defaultSize = size; }
176
177// Event handlers
178 // Called by layout algorithm to allow window to take a bit out of the
179 // client rectangle, and size itself if not in wxLAYOUT_QUERY mode.
180 void OnCalculateLayout(wxCalculateLayoutEvent& event);
181
182 // Called by layout algorithm to retrieve information about the window.
183 void OnQueryLayoutInfo(wxQueryLayoutInfoEvent& event);
f6bcfd97
BP
184
185private:
186 void Init();
187
a6d70308
JS
188 wxLayoutAlignment m_alignment;
189 wxLayoutOrientation m_orientation;
190 wxSize m_defaultSize;
191
2b5f62a0 192private:
2eb10e2a 193 DECLARE_DYNAMIC_CLASS_NO_COPY(wxSashLayoutWindow)
2b5f62a0 194 DECLARE_EVENT_TABLE()
a6d70308
JS
195};
196
88ac883a
VZ
197#endif // wxUSE_SASH
198
b5dbe15d
VS
199class WXDLLIMPEXP_FWD_CORE wxMDIParentFrame;
200class WXDLLIMPEXP_FWD_CORE wxFrame;
a6d70308
JS
201
202// This class implements the layout algorithm
12f190b0 203class WXDLLIMPEXP_ADV wxLayoutAlgorithm: public wxObject
a6d70308
JS
204{
205public:
206 wxLayoutAlgorithm() {}
207
1e6feb95 208#if wxUSE_MDI_ARCHITECTURE
a6d70308 209 // The MDI client window is sized to whatever's left over.
2243eed5 210 bool LayoutMDIFrame(wxMDIParentFrame* frame, wxRect* rect = (wxRect*) NULL);
1e6feb95 211#endif // wxUSE_MDI_ARCHITECTURE
a6d70308 212
f9b1708c
JS
213 // mainWindow is sized to whatever's left over. This function for backward
214 // compatibility; use LayoutWindow.
04dbb646 215 bool LayoutFrame(wxFrame* frame, wxWindow* mainWindow = (wxWindow*) NULL);
f9b1708c 216
f6bcfd97 217 // mainWindow is sized to whatever's left over.
f9b1708c 218 bool LayoutWindow(wxWindow* frame, wxWindow* mainWindow = (wxWindow*) NULL);
a6d70308
JS
219};
220
221#endif
222 // _WX_LAYWIN_H_G_