1 /////////////////////////////////////////////////////////////////////////////
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
11 // Copyright: (c) Julian Smart
12 // Licence: wxWindows licence
13 /////////////////////////////////////////////////////////////////////////////
15 #ifndef _WX_LAYWIN_H_G_
16 #define _WX_LAYWIN_H_G_
19 #pragma interface "laywin.h"
22 #include "wx/sashwin.h"
24 const wxEventType wxEVT_QUERY_LAYOUT_INFO
= wxEVT_FIRST
+ 1500;
25 const wxEventType wxEVT_CALCULATE_LAYOUT
= wxEVT_FIRST
+ 1501;
27 enum wxLayoutOrientation
{
32 enum wxLayoutAlignment
{
40 // Not sure this is necessary
41 // Tell window which dimension we're sizing on
42 #define wxLAYOUT_LENGTH_Y 0x0008
43 #define wxLAYOUT_LENGTH_X 0x0000
45 // Use most recently used length
46 #define wxLAYOUT_MRU_LENGTH 0x0010
48 // Only a query, so don't actually move it.
49 #define wxLAYOUT_QUERY 0x0100
52 * This event is used to get information about window alignment,
53 * orientation and size.
56 class wxQueryLayoutInfoEvent
: public wxEvent
58 DECLARE_DYNAMIC_CLASS(wxQueryLayoutInfoEvent
)
61 wxQueryLayoutInfoEvent(wxWindowID id
= 0)
63 SetEventType(wxEVT_QUERY_LAYOUT_INFO
);
64 m_requestedLength
= 0;
66 m_alignment
= wxLAYOUT_TOP
;
67 m_orientation
= wxLAYOUT_HORIZONTAL
;
70 inline void SetRequestedLength(int length
) { m_requestedLength
= length
; }
71 inline int GetRequestedLength() const { return m_requestedLength
; }
73 inline void SetFlags(int flags
) { m_flags
= flags
; }
74 inline int GetFlags() const { return m_flags
; }
77 inline void SetSize(const wxSize
& size
) { m_size
= size
; }
78 inline wxSize
GetSize() const { return m_size
; }
80 inline void SetOrientation(wxLayoutOrientation orient
) { m_orientation
= orient
; }
81 inline wxLayoutOrientation
GetOrientation() const { return m_orientation
; }
83 inline void SetAlignment(wxLayoutAlignment align
) { m_alignment
= align
; }
84 inline wxLayoutAlignment
GetAlignment() const { return m_alignment
; }
87 int m_requestedLength
;
89 wxLayoutOrientation m_orientation
;
90 wxLayoutAlignment m_alignment
;
94 typedef void (wxEvtHandler::*wxQueryLayoutInfoEventFunction
)(wxQueryLayoutInfoEvent
&);
96 #define EVT_QUERY_LAYOUT_INFO(func) { wxEVT_QUERY_LAYOUT_INFO, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxQueryLayoutInfoEventFunction) & func, NULL },
99 * This event is used to take a bite out of the available client area.
102 class wxCalculateLayoutEvent
: public wxEvent
104 DECLARE_DYNAMIC_CLASS(wxCalculateLayoutEvent
)
106 wxCalculateLayoutEvent(wxWindowID id
= 0)
108 SetEventType(wxEVT_CALCULATE_LAYOUT
);
112 inline void SetFlags(int flags
) { m_flags
= flags
; }
113 inline int GetFlags() const { return m_flags
; }
116 inline void SetRect(const wxRect
& rect
) { m_rect
= rect
; }
117 inline wxRect
GetRect() const { return m_rect
; }
123 typedef void (wxEvtHandler::*wxCalculateLayoutEventFunction
)(wxCalculateLayoutEvent
&);
125 #define EVT_CALCULATE_LAYOUT(func) { wxEVT_CALCULATE_LAYOUT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxCalculateLayoutEventFunction) & func, NULL },
127 // This is window that can remember alignment/orientation, does its own layout,
128 // and can provide sashes too. Useful for implementing docked windows with sashes in
129 // an IDE-style interface.
130 class wxSashLayoutWindow
: public wxSashWindow
132 DECLARE_CLASS(wxSashLayoutWindow
)
134 wxSashLayoutWindow(wxWindow
*parent
, wxWindowID id
= -1, const wxPoint
& pos
= wxDefaultPosition
,
135 const wxSize
& size
= wxDefaultSize
, long style
= wxSW_3D
|wxCLIP_CHILDREN
, const wxString
& name
= "layoutWindow");
138 inline wxLayoutAlignment
GetAlignment() const { return m_alignment
; };
139 inline wxLayoutOrientation
GetOrientation() const { return m_orientation
; };
141 inline void SetAlignment(wxLayoutAlignment align
) { m_alignment
= align
; };
142 inline void SetOrientation(wxLayoutOrientation orient
) { m_orientation
= orient
; };
144 // Give the window default dimensions
145 inline void SetDefaultSize(const wxSize
& size
) { m_defaultSize
= size
; }
148 // Called by layout algorithm to allow window to take a bit out of the
149 // client rectangle, and size itself if not in wxLAYOUT_QUERY mode.
150 void OnCalculateLayout(wxCalculateLayoutEvent
& event
);
152 // Called by layout algorithm to retrieve information about the window.
153 void OnQueryLayoutInfo(wxQueryLayoutInfoEvent
& event
);
155 wxLayoutAlignment m_alignment
;
156 wxLayoutOrientation m_orientation
;
157 wxSize m_defaultSize
;
159 DECLARE_EVENT_TABLE()
162 class WXDLLEXPORT wxMDIParentFrame
;
163 class WXDLLEXPORT wxFrame
;
165 // This class implements the layout algorithm
166 class wxLayoutAlgorithm
: public wxObject
169 wxLayoutAlgorithm() {}
171 // The MDI client window is sized to whatever's left over.
172 bool LayoutMDIFrame(wxMDIParentFrame
* frame
);
174 // mainWindow is sized to whatever's left over.
175 bool LayoutFrame(wxFrame
* frame
, wxWindow
* mainWindow
);