1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Central header file for control-bar related classes
5 // Author: Aleksandras Gluchovas <mailto:alex@soften.ktu.lt>
9 // Copyright: (c) Aleksandras Gluchovas
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef __CONTROLBAR_G__
14 #define __CONTROLBAR_G__
17 #pragma interface "controlbar.h"
21 #include "wx/string.h"
22 #include "wx/window.h"
23 #include "wx/dynarray.h"
25 #define WXCONTROLBAR_VERSION 1.3
27 // forward declarations
32 class cbUpdatesManagerBase
;
33 class cbBarDimHandlerBase
;
36 class cbPaneDrawPlugin
;
41 class cbCommonPaneProperties
;
43 typedef cbBarInfo
* BarInfoPtrT
;
44 typedef cbRowInfo
* RowInfoPtrT
;
46 WX_DEFINE_ARRAY( BarInfoPtrT
, BarArrayT
);
47 WX_DEFINE_ARRAY( RowInfoPtrT
, RowArrayT
);
51 #define wxCBAR_DOCKED_HORIZONTALLY 0
52 #define wxCBAR_DOCKED_VERTICALLY 1
53 #define wxCBAR_FLOATING 2
54 #define wxCBAR_HIDDEN 3
56 // the states are enumerated above
57 #define MAX_BAR_STATES 4
59 // control bar alignments
61 #if !defined(FL_ALIGN_TOP)
63 #define FL_ALIGN_TOP 0
64 #define FL_ALIGN_BOTTOM 1
65 #define FL_ALIGN_LEFT 2
66 #define FL_ALIGN_RIGHT 3
70 // one pane for each alignment
73 // masks for each pane
75 #define FL_ALIGN_TOP_PANE 0x0001
76 #define FL_ALIGN_BOTTOM_PANE 0x0002
77 #define FL_ALIGN_LEFT_PANE 0x0004
78 #define FL_ALIGN_RIGHT_PANE 0x0008
80 #define wxALL_PANES 0x000F
82 // enumeration of hittest results, see cbDockPane::HitTestPaneItems(..)
84 enum CB_HITTEST_RESULT
88 CB_UPPER_ROW_HANDLE_HITTED
,
89 CB_LOWER_ROW_HANDLE_HITTED
,
90 CB_LEFT_BAR_HANDLE_HITTED
,
91 CB_RIGHT_BAR_HANDLE_HITTED
,
96 Helper class, used for spying for unhandled mouse events on control bars
97 and forwarding them to the frame layout.
100 class cbBarSpy
: public wxEvtHandler
103 DECLARE_DYNAMIC_CLASS( cbBarSpy
)
105 wxFrameLayout
* mpLayout
;
109 // Default constructor.
113 // Constructor, taking a parent pane.
115 cbBarSpy( wxFrameLayout
* pPanel
);
117 // Sets the bar window.
119 void SetBarWindow( wxWindow
* pWnd
);
121 // Performs special event processing.
123 virtual bool ProcessEvent(wxEvent
& event
);
127 wxFrameLayout manages containment and docking of control bars,
128 which can be docked along the top, bottom, right, or left side of the
132 class wxFrameLayout
: public wxEvtHandler
135 // Default constructor, used only for serialization.
139 // Constructor, taking parent window, the (MDI) client of the parent if there
140 // is one, and flag specifying whether to activate the layout.
142 wxFrameLayout( wxWindow
* pParentFrame
,
143 wxWindow
* pFrameClient
= NULL
,
144 bool activateNow
= TRUE
);
146 // Destructor. It does not destroy the bar windows.
148 virtual ~wxFrameLayout();
150 // Enables floating behaviour. By default floating of control bars is on.
152 virtual void EnableFloating( bool enable
= TRUE
);
154 // Activate can be called after some other layout has been deactivated,
155 // and this one must take over the current contents of the frame window.
157 // Effectively hooks itself to the frame window, re-displays all non-hidden
158 // bar windows and repaints the decorations.
160 virtual void Activate();
162 // Deactivate unhooks itself from frame window, and hides all non-hidden windows.
164 // Note: two frame layouts should not be active at the same time in the
165 // same frame window, since it would cause messy overlapping of bar windows
166 // from both layouts.
168 virtual void Deactivate();
170 // Hides the bar windows, and also the client window if present.
172 void HideBarWindows();
174 // Destroys the bar windows.
176 virtual void DestroyBarWindows();
178 // Passes the client window (e.g. MDI client window) to be controlled by
179 // frame layout, the size and position of which should be adjusted to be
180 // surrounded by controlbar panes, whenever the frame is resized or the dimensions
181 // of control panes change.
183 void SetFrameClient( wxWindow
* pFrameClient
);
185 // Returns the frame client, or NULL if not present.
187 wxWindow
* GetFrameClient();
189 // Returns the parent frame.
191 wxWindow
& GetParentFrame() { return *mpFrame
; }
193 // Returns an array of panes. Used by update managers.
195 cbDockPane
** GetPanesArray() { return mPanes
; }
197 // Returns a pane for the given alignment. See pane alignment types.
199 cbDockPane
* GetPane( int alignment
)
201 { return mPanes
[alignment
]; }
203 // Adds bar information to the frame layout. The appearance of the layout is not refreshed
204 // immediately; RefreshNow() can be called if necessary.
206 // Notes: the argument pBarWnd can by NULL, resulting in bar decorations to be drawn
207 // around the empty rectangle (filled with default background colour).
208 // Argument dimInfo can be reused for adding any number of bars, since
209 // it is not used directly - instead its members are copied. If the dimensions
210 // handler is present, its instance is shared (reference counted). The dimension
211 // handler should always be allocated on the heap.
213 // pBarWnd is the window to be managed.
215 // dimInfo contains dimension information.
217 // alignment is a value such as FL_ALIGN_TOP.
219 // rowNo is the vertical position or row in the pane (if in docked state).
221 // columnPos is the horizontal position within the row in pixels (if in docked state).
223 // name is a name by which the bar can be referred in layout customization dialogs.
225 // If spyEvents is TRUE, input events for the bar should be "spyed" in order
226 // to forward unhandled mouse clicks to the frame layout, for example to enable
227 // easy draggablity of toolbars just by clicking on their interior regions.
228 // For widgets like text/tree control this value should be FALSE,
229 // since there's no certain way to detect whether the event was actually handled.
231 // state is the initial state, such as wxCBAR_DOCKED_HORIZONTALLY,
232 // wxCBAR_FLOATING, wxCBAR_HIDDEN.
234 virtual void AddBar( wxWindow
* pBarWnd
,
235 const cbDimInfo
& dimInfo
,
238 int alignment
= FL_ALIGN_TOP
,
241 const wxString
& name
="bar",
242 bool spyEvents
= FALSE
,
243 int state
= wxCBAR_DOCKED_HORIZONTALLY
246 // ReddockBar can be used for repositioning existing bars. The given bar is first removed
247 // from the pane it currently belongs to, and inserted into the pane, which "matches"
248 // the given rectangular area. If pToPane is not NULL, the bar is docked to this given pane.
249 // To dock a bar which is floating, use the wxFrameLayout::DockBar method.
251 virtual bool RedockBar( cbBarInfo
* pBar
, const wxRect
& shapeInParent
,
252 cbDockPane
* pToPane
= NULL
, bool updateNow
= TRUE
);
254 // Finds the bar in the framelayout, by name.
256 cbBarInfo
* FindBarByName( const wxString
& name
);
258 // Finds the bar in the framelayout, by window.
260 cbBarInfo
* FindBarByWindow( const wxWindow
* pWnd
);
262 // Gets an array of bars.
264 BarArrayT
& GetBars();
266 // Changes the bar's docking state (see possible control bar states).
268 void SetBarState( cbBarInfo
* pBar
, int newStatem
, bool updateNow
);
270 // Toggles the bar between visible and hidden.
272 void InverseVisibility( cbBarInfo
* pBar
);
274 // Reflects changes in bar information structure visually.
275 // For example, moves the bar, changes its dimension information,
276 // or changes the pane to which it is docked.
278 void ApplyBarProperties( cbBarInfo
* pBar
);
280 // Removes the bar from the layout permanently, and hides its corresponding window if present.
282 void RemoveBar( cbBarInfo
* pBar
);
284 // Recalculates the layout of panes, and all bars/rows in each pane.
286 virtual void RecalcLayout( bool repositionBarsNow
= FALSE
);
288 // Returns the client height.
290 int GetClientHeight();
292 // Returns the client width.
294 int GetClientWidth();
296 // Returns the client's rectangle.
298 wxRect
& GetClientRect() { return mClntWndBounds
; }
300 // Returns a reference to the updates manager.
301 // Note: in future, the updates manager will become a normal plugin.
303 cbUpdatesManagerBase
& GetUpdatesManager();
305 // Destroys the previous manager if any, and sets the new one.
307 void SetUpdatesManager( cbUpdatesManagerBase
* pUMgr
);
309 // Gets the pane properties for the given alignment.
311 virtual void GetPaneProperties( cbCommonPaneProperties
& props
, int alignment
= FL_ALIGN_TOP
);
313 // Sets the pane properties for the given alignment.
314 // Note: changing properties of panes does not result immediate on-screen update.
316 virtual void SetPaneProperties( const cbCommonPaneProperties
& props
,
317 int paneMask
= wxALL_PANES
);
319 // Sets the margins for the given panes.
320 // The margins should go into cbCommonPaneProperties in the future.
322 // Note: this method should be called before any custom plugins are attached.
324 virtual void SetMargins( int top
, int bottom
, int left
, int right
,
325 int paneMask
= wxALL_PANES
);
327 // Sets the pane background colour.
329 virtual void SetPaneBackground( const wxColour
& colour
);
331 // Recalculates layout and performs on-screen update of all panes.
333 void RefreshNow( bool recalcLayout
= TRUE
);
335 // Event handler for a size event.
337 void OnSize ( wxSizeEvent
& event
);
339 // Event handler for a left down button event.
341 void OnLButtonDown( wxMouseEvent
& event
);
343 // Event handler for a left doubleclick button event.
345 void OnLDblClick ( wxMouseEvent
& event
);
347 // Event handler for a left button up event.
349 void OnLButtonUp ( wxMouseEvent
& event
);
351 // Event handler for a right button down event.
353 void OnRButtonDown( wxMouseEvent
& event
);
355 // Event handler for a right button up event.
357 void OnRButtonUp ( wxMouseEvent
& event
);
359 // Event handler for a mouse move event.
361 void OnMouseMove ( wxMouseEvent
& event
);
363 // This function should be used instead of passing the event to the ProcessEvent method
364 // of the top-level plugin directly. This method checks if events are currently
365 // captured and ensures that plugin-event is routed correctly.
367 virtual void FirePluginEvent( cbPluginEvent
& event
);
369 // Captures user input events for the given plugin.
370 // Input events are: mouse movement, mouse clicks, keyboard input.
372 virtual void CaptureEventsForPlugin ( cbPluginBase
* pPlugin
);
374 // Releases user input events for the given plugin.
375 // Input events are: mouse movement, mouse clicks, keyboard input
377 virtual void ReleaseEventsFromPlugin( cbPluginBase
* pPlugin
);
379 // Called by plugins; also captures the mouse in the parent frame.
381 void CaptureEventsForPane( cbDockPane
* toPane
);
383 // Called by plugins; also releases mouse in the parent frame.
385 void ReleaseEventsFromPane( cbDockPane
* fromPane
);
387 // Returns the current top-level plugin (the one that receives events first,
388 // except if input events are currently captured by some other plugin).
390 virtual cbPluginBase
& GetTopPlugin();
392 // Hooking custom plugins to frame layout.
394 // Note: when hooking one plugin on top of the other,
395 // use SetNextHandler or similar methods
396 // of wxEvtHandler class to compose the chain of plugins,
397 // than pass the left-most handler in this chain to
398 // the above methods (assuming that events are delegated
399 // from left-most towards right-most handler).
401 // This secenario is very inconvenient and "low-level",
402 // so use the Add/Push/PopPlugin methods instead.
404 virtual void SetTopPlugin( cbPluginBase
* pPlugin
);
406 // Similar to wxWindow's "push/pop-event-handler" methods, execept
407 // that the plugin is deleted upon "popping".
409 virtual void PushPlugin( cbPluginBase
* pPugin
);
411 // Similar to wxWindow's "push/pop-event-handler" methods, execept
412 // that the plugin is deleted upon "popping".
414 virtual void PopPlugin();
417 virtual void PopAllPlugins();
419 // Adds the default plugins. These are cbPaneDrawPlugin, cbRowLayoutPlugin, cbBarDragPlugin,
420 // cbAntiflickerPlugin, cbSimpleCustomizePlugin.
422 // This method is automatically invoked if no plugins were found upon
423 // firing of the first plugin-event, i.e. when wxFrameLayout configures itself.
425 virtual void PushDefaultPlugins();
427 // An advanced methods for plugin configuration using their
428 // dynamic class information, for example CLASSINFO(pluginClass).
430 // First checks if the plugin of the given class is already "hooked up".
431 // If not, adds it to the top of the plugins chain.
433 virtual void AddPlugin( wxClassInfo
* pPlInfo
, int paneMask
= wxALL_PANES
);
435 // First checks if the plugin of the given class is already hooked.
436 // If so, removes it, and then inserts it into the chain
437 // before the plugin of the class given by pNextPlInfo.
439 // Note: this method is handy in some cases where the order
440 // of the plugin-chain could be important, for example when one plugin overrides
441 // some functionality of another already-hooked plugin,
442 // so that the former plugin should be hooked before the one
443 // whose functionality is being overridden.
445 virtual void AddPluginBefore( wxClassInfo
* pNextPlInfo
, wxClassInfo
* pPlInfo
,
446 int paneMask
= wxALL_PANES
);
448 // Checks if the plugin of the given class is hooked, and removes
451 virtual void RemovePlugin( wxClassInfo
* pPlInfo
);
453 // Finds a plugin with the given class, or returns NULL if a plugin of the given
454 // class is not hooked.
456 virtual cbPluginBase
* FindPlugin( wxClassInfo
* pPlInfo
);
458 // Returns true if there is a top plugin.
462 DECLARE_EVENT_TABLE()
463 DECLARE_DYNAMIC_CLASS( wxFrameLayout
)
465 public: /* protected really, acessed only by plugins and serializers */
467 friend class cbDockPane
;
468 friend class wxBarHandler
;
470 wxWindow
* mpFrame
; // parent frame
471 wxWindow
* mpFrameClient
; // client window
472 cbDockPane
* mPanes
[MAX_PANES
]; // panes in the panel
475 wxCursor
* mpHorizCursor
;
476 wxCursor
* mpVertCursor
;
477 wxCursor
* mpNormalCursor
;
478 wxCursor
* mpDragCursor
;
479 wxCursor
* mpNECursor
; // no-entry cursor
481 // pens for decoration and shades
483 wxPen mDarkPen
; // default wxSYS_COLOUR_3DSHADOW
484 wxPen mLightPen
; // default wxSYS_COLOUR_3DHILIGHT
485 wxPen mGrayPen
; // default wxSYS_COLOUR_3DFACE
486 wxPen mBlackPen
; // default wxColour( 0, 0, 0)
487 wxPen mBorderPen
; // default wxSYS_COLOUR_3DFACE
489 wxPen mNullPen
; // transparent pen
491 // pane to which the all mouse input is currently directed (caputred)
493 cbDockPane
* mpPaneInFocus
;
495 // pane, from which mouse pointer had just left
497 cbDockPane
* mpLRUPane
;
499 // bounds of client window in parent frame's coordinates
501 wxRect mClntWndBounds
;
502 wxRect mPrevClntWndBounds
;
505 wxPoint mNextFloatedWndPos
;
506 wxSize mFloatingPosStep
;
508 // current plugin (right-most) plugin which receives events first
510 cbPluginBase
* mpTopPlugin
;
512 // plugin, which currently has captured all input events, otherwise NULL
514 cbPluginBase
* mpCaputesInput
;
516 // list of event handlers which are "pushed" onto each bar, to catch
517 // mouse events which are not handled by bars, and froward them to the ,
518 // frome-layout and further to plugins
522 // list of top-most frames which contain floated bars
524 wxList mFloatedFrames
;
526 // linked list of references to all bars (docked/floated/hidden)
530 // FOR NOW:: dirty stuff...
531 bool mClientWndRefreshPending
;
533 bool mCheckFocusWhenIdle
;
535 public: /* protected really (accessed only by plugins) */
537 // refrence to custom updates manager
538 cbUpdatesManagerBase
* mpUpdatesMgr
;
540 // Called to apply the calculated layout to window objects.
542 void PositionClientWindow();
544 // Called to apply the calculated layout to window objects.
546 void PositionPanes();
548 // Creates the cursors.
550 void CreateCursors();
552 // Applies the calculated layout to a floating bar.
554 void RepositionFloatedBar( cbBarInfo
* pBar
);
556 // Applies the state to the window objects.
558 void DoSetBarState( cbBarInfo
* pBar
);
560 // The purpose of this function is unknown.
562 bool LocateBar( cbBarInfo
* pBarInfo
,
564 cbDockPane
** ppPane
);
567 // Returns TRUE if the position is within the given pane.
569 bool HitTestPane( cbDockPane
* pPane
, int x
, int y
);
571 // Returns the pane for which the rectangle hit test succeeds, giving
572 // preference to the given pane if supplied.
574 cbDockPane
* HitTestPanes( const wxRect
& rect
, cbDockPane
* pCurPane
);
576 // Returns the pane to which the given bar belongs.
578 cbDockPane
* GetBarPane( cbBarInfo
* pBar
);
580 // Delegated from "bar-spy".
581 void ForwardMouseEvent( wxMouseEvent
& event
,
585 // Routes the mouse event to the appropriate pane.
587 void RouteMouseEvent( wxMouseEvent
& event
, int pluginEvtType
);
589 // Shows all floated windows.
591 void ShowFloatedWindows( bool show
);
593 // Unhooks the layout from the frame.
595 void UnhookFromFrame();
597 // Hooks the layout up to the frame (pushes the layout onto the
598 // frame's event handler stack).
600 void HookUpToFrame();
602 // Returns TRUE if the platform allows reparenting. This may not return TRUE
603 // for all platforms. Reparenting allows control bars to be floated.
607 // Reparents pChild to have parent pNewParent.
609 void ReparentWindow( wxWindow
* pChild
, wxWindow
* pNewParent
);
611 // Returns the previous client window rectangle.
613 wxRect
& GetPrevClientRect() { return mPrevClntWndBounds
; }
615 // Handles paint events, calling PaintPane for each pane.
617 void OnPaint( wxPaintEvent
& event
);
619 // Handles background erase events. Currently does nothing.
621 void OnEraseBackground( wxEraseEvent
& event
);
623 // Handles focus kill events. Currently does nothing.
625 void OnKillFocus( wxFocusEvent
& event
);
627 // Handles focus set events. Currently does nothing.
629 void OnSetFocus( wxFocusEvent
& event
);
631 // Handles activation events. Currently does nothing.
633 void OnActivate( wxActivateEvent
& event
);
635 // Handles idle events.
637 void OnIdle( wxIdleEvent
& event
);
639 // Returns a new cbGCUpdatesMgr object.
641 virtual cbUpdatesManagerBase
* CreateUpdatesManager();
645 A structure that is present in each item of layout,
646 used by any particular updates-manager to store
647 auxiliary information to be used by its updating algorithm.
650 class cbUpdateMgrData
: public wxObject
652 DECLARE_DYNAMIC_CLASS( cbUpdateMgrData
)
654 wxRect mPrevBounds
; // previous state of layout item (in parent frame's coordinates)
656 bool mIsDirty
; // overrides result of current-against-previous bounds comparison,
657 // i.e. requires item to be updated, regardless of it's current area
659 wxObject
* mpCustomData
; // any custom data stored by specific updates mgr.
661 // Default constructor. Is-dirty flag is set TRUE initially.
665 // Store the item state.
667 void StoreItemState( const wxRect
& boundsInParent
);
669 // Set the dirty flag.
671 void SetDirty( bool isDirty
= TRUE
);
675 void SetCustomData( wxObject
* pCustomData
);
677 // Returns the is-dirty flag.
679 inline bool IsDirty() { return mIsDirty
; }
683 Abstract interface for bar-size handler classes.
684 These objects receive notifications whenever the docking
685 state of the bar is changed, thus they provide the possibility
686 to adjust the values in cbDimInfo::mSizes accordingly.
687 Specific handlers can be hooked up to specific types of bar.
690 class cbBarDimHandlerBase
: public wxObject
692 DECLARE_ABSTRACT_CLASS( cbBarDimHandlerBase
)
695 int mRefCount
; // since one dim-handler can be assigned
696 // to multiple bars, it's instance is
700 // Default constructor. The initial reference count is 0, since
701 // the handler is not used until the first invocation of AddRef().
703 cbBarDimHandlerBase();
705 // Increments the reference count.
709 // Decrements the reference count, and if the count is at zero,
714 // Responds to "bar-state-changes" notifications.
716 virtual void OnChangeBarState(cbBarInfo
* pBar
, int newState
) = 0;
718 // Responds to bar resize notifications.
720 virtual void OnResizeBar( cbBarInfo
* pBar
, const wxSize
& given
, wxSize
& preferred
) = 0;
724 Helper class used internally by the wxFrameLayout class.
725 Holds and manages information about bar dimensions.
728 class cbDimInfo
: public wxObject
730 DECLARE_DYNAMIC_CLASS( cbDimInfo
)
732 wxSize mSizes
[MAX_BAR_STATES
]; // preferred sizes for each possible bar state
734 wxRect mBounds
[MAX_BAR_STATES
]; // saved positions and sizes for each
735 // possible state, values contain (-1)s if
736 // not initialized yet
738 int mLRUPane
; // pane to which this bar was docked before it was floated
739 // (FL_ALIGN_TOP,FL_ALIGN_BOTTOM,..)
741 // top/bottom gap, separates decorations
742 // from the bar's actual window, filled
743 // with frame's beckground color, default: 0
747 // left/right gap, separates decorations
748 // from the bar's actual wndow, filled
749 // with frame's beckground colour, default: 0
751 int mHorizGap
; // NOTE:: gaps are given in frame's coord. orientation
753 // TRUE, if vertical/horizontal dimensions cannot be mannualy adjusted
754 // by user using resizing handles. If FALSE, the frame-layout
755 // *automatically* places resizing handles among not-fixed bars
759 cbBarDimHandlerBase
* mpHandler
; // NULL, if no handler present
763 // Default constructor.
768 // isFixed is TRUE if vertical/horizontal dimensions cannot be manually adjusted
769 // by the user using resizing handles. If FALSE, the frame-layout
770 // automatically places resizing handles among bars that do are not fixed.
772 cbDimInfo( cbBarDimHandlerBase
* pDimHandler
,
773 bool isFixed
// (see comments on mIsFixed member)
776 // Constructor taking dimenstion information.
778 // dh_x, dh_y are the dimensions when docked horizontally.
780 // dv_x, dv_y are the dimensions when docked vertically.
782 // f_x, f_y are the dimensions when floating.
784 // For information on isFixed, see comments above.
786 // horizGap is the left/right gap, separating decorations
787 // from the bar's actual wndow, filled with the frame's background colour.
788 // The dimension is given in the frame's coordinates.
790 // vertGap is the top/bottom gap, separating decorations
791 // from the bar's actual wndow, filled with the frame's background colour.
792 // The dimension is given in the frame's coordinates.
794 cbDimInfo( int dh_x
, int dh_y
,
802 cbBarDimHandlerBase
* pDimHandler
= NULL
807 cbDimInfo( int x
, int y
,
810 cbBarDimHandlerBase
* pDimHandler
= NULL
813 // Destructor. Destroys handler automatically, if present.
817 // Assignment operator.
819 const cbDimInfo
& operator=( const cbDimInfo
& other
);
821 // Returns the handler, if any.
823 inline cbBarDimHandlerBase
* GetDimHandler() { return mpHandler
; }
826 WX_DEFINE_ARRAY(float, cbArrayFloat
);
829 Helper class used internally by the wxFrameLayout class.
830 Holds and manages information about bar rows.
833 class cbRowInfo
: public wxObject
835 DECLARE_DYNAMIC_CLASS( cbRowInfo
)
838 BarArrayT mBars
; // row content
840 // row flags (set up according to row-relations)
842 bool mHasUpperHandle
;
843 bool mHasLowerHandle
;
844 bool mHasOnlyFixedBars
;
845 int mNotFixedBarsCnt
;
851 // stores precalculated row's bounds in parent frame's coordinates
852 wxRect mBoundsInParent
;
854 // info stored for updates-manager
855 cbUpdateMgrData mUMgrData
;
860 cbBarInfo
* mpExpandedBar
; // NULL, if non of the bars is currently expanded
862 cbArrayFloat mSavedRatios
; // length-ratios bofore some of the bars was expanded
873 // Returns the first bar.
875 inline cbBarInfo
* GetFirstBar()
877 { return mBars
.GetCount() ? mBars
[0] : NULL
; }
881 Helper class used internally by the wxFrameLayout class.
882 Holds and manages bar information.
885 class cbBarInfo
: public wxObject
887 DECLARE_DYNAMIC_CLASS( cbBarInfo
)
889 // textual name, by which this bar is refered in layout-customization dialogs
892 // stores bar's bounds in pane's coordinates
895 // stores precalculated bar's bounds in parent frame's coordinates
896 wxRect mBoundsInParent
;
898 // back-ref to the row, which contains this bar
901 // are set up according to the types of the surrounding bars in the row
903 bool mHasRightHandle
;
905 cbDimInfo mDimInfo
; // preferred sizes for each, control bar state
907 int mState
; // (see definition of controlbar states)
909 int mAlignment
; // alignment of the pane to which this
910 // bar is currently placed
912 int mRowNo
; // row, into which this bar would be placed,
913 // when in the docking state
915 wxWindow
* mpBarWnd
; // the actual window object, NULL if no window
916 // is attached to the control bar (possible!)
918 double mLenRatio
; // length ratio among not-fixed-size bars
920 wxPoint mPosIfFloated
; // stored last position when bar was in "floated" state
921 // poistion is stored in parent-window's coordinates
923 cbUpdateMgrData mUMgrData
; // info stored for updates-manager
925 cbBarInfo
* mpNext
; // next. bar in the row
926 cbBarInfo
* mpPrev
; // prev. bar in the row
937 // Returns TRUE if this bar is fixed.
939 inline bool IsFixed() const { return mDimInfo
.mIsFixed
; }
941 // Returns TRUE if this bar is expanded.
943 inline bool IsExpanded() const { return this == mpRow
->mpExpandedBar
; }
947 Used for storing the original bar's positions in the row, when the 'non-destructive-friction'
951 class cbBarShapeData
: public wxObject
959 Used for traversing through all bars of all rows in the pane.
969 // Constructor, taking row array.
971 wxBarIterator( RowArrayT
& rows
);
973 // Resets the iterator to the start of the first row.
977 // Advances the iterator and returns TRUE if a bar is available.
981 // Gets the current bar information.
983 cbBarInfo
& BarInfo();
985 // Returns a reference to the currently traversed row.
987 cbRowInfo
& RowInfo();
991 A structure holding configuration options,
992 which are usually the same for all panes in
996 class cbCommonPaneProperties
: public wxObject
998 DECLARE_DYNAMIC_CLASS( cbCommonPaneProperties
)
1000 // look-and-feel configuration
1002 bool mRealTimeUpdatesOn
; // default: ON
1003 bool mOutOfPaneDragOn
; // default: ON
1004 bool mExactDockPredictionOn
; // default: OFF
1005 bool mNonDestructFirctionOn
; // default: OFF
1007 bool mShow3DPaneBorderOn
; // default: ON
1009 // FOR NOW:: the below properties are reserved for the "future"
1011 bool mBarFloatingOn
; // default: OFF
1012 bool mRowProportionsOn
; // default: OFF
1013 bool mColProportionsOn
; // default: ON
1014 bool mBarCollapseIconsOn
; // default: OFF
1015 bool mBarDragHintsOn
; // default: OFF
1017 // minimal dimensions for not-fixed bars in this pane (16x16 default)
1021 // width/height of resizing sash
1023 int mResizeHandleSize
;
1025 // Default constructor.
1027 cbCommonPaneProperties(void);
1031 This class manages containment and control of control bars
1032 along one of the four edges of the parent frame.
1035 class cbDockPane
: public wxObject
1038 DECLARE_DYNAMIC_CLASS( cbDockPane
)
1040 // look-and-feel configuration for this pane
1041 cbCommonPaneProperties mProps
;
1043 // pane margins (in frame's coordinate-syst. orientation)
1045 int mLeftMargin
; // default: 2 pixels
1046 int mRightMargin
; // default: 2 pixels
1047 int mTopMargin
; // default: 2 pixels
1048 int mBottomMargin
; // default: 2 pixels
1051 // position of the pane in frame's coordinates
1052 wxRect mBoundsInParent
;
1054 // pane width and height in pane's coordinates
1060 // info stored for updates-manager
1061 cbUpdateMgrData mUMgrData
;
1063 public: /* protected really */
1066 wxFrameLayout
* mpLayout
; // back-ref
1068 // transient properties
1070 wxList mRowShapeData
; // shapes of bars of recently modified row,
1071 // stored when in "non-destructive-firction" mode
1072 cbRowInfo
* mpStoredRow
; // row-info for which the shapes are stored
1074 friend class wxFrameLayout
;
1076 public: /* protected really (accessed only by plugins) */
1078 // Returns the row info for a row index. Internal function called by plugins.
1080 cbRowInfo
* GetRow( int row
);
1082 // Returns the row index for the given row info. Internal function called by plugins.
1084 int GetRowIndex( cbRowInfo
* pRow
);
1086 // Returns the row at the given vertical position.
1087 // Returns -1 if the row is not present at given vertical position.
1088 // Internal function called by plugins.
1090 int GetRowAt( int paneY
);
1092 // Returns the row between the given vertical positions.
1093 // Returns -1 if the row is not present.
1094 // Internal function called by plugins.
1096 int GetRowAt( int upperY
, int lowerY
);
1098 // Sets up flags in the row information structure, so that
1099 // they match the changed state of row items correctly.
1100 // Internal function called by plugins.
1102 void SyncRowFlags( cbRowInfo
* pRow
);
1104 // Returns TRUE if the bar's dimension information indicates a fixed size.
1105 // Internal function called by plugins.
1107 bool IsFixedSize( cbBarInfo
* pInfo
);
1109 // Returns the number of bars whose size is not fixed.
1110 // Internal function called by plugins.
1112 int GetNotFixedBarsCount( cbRowInfo
* pRow
);
1114 // Gets the vertical position at the given row.
1115 // Internal function called by plugins.
1117 int GetRowY( cbRowInfo
* pRow
);
1119 // Returns TRUE if there are any variable-sized rows above this one.
1120 // Internal function called by plugins.
1122 bool HasNotFixedRowsAbove( cbRowInfo
* pRow
);
1124 // Returns TRUE if there are any variable-sized rows below this one.
1125 // Internal function called by plugins.
1127 bool HasNotFixedRowsBelow( cbRowInfo
* pRow
);
1129 // Returns TRUE if there are any variable-sized rows to the left of this one.
1130 // Internal function called by plugins.
1132 bool HasNotFixedBarsLeft ( cbBarInfo
* pBar
);
1134 // Returns TRUE if there are any variable-sized rows to the right of this one.
1135 // Internal function called by plugins.
1137 bool HasNotFixedBarsRight( cbBarInfo
* pBar
);
1139 // Calculate lengths.
1140 // Internal function called by plugins.
1142 virtual void CalcLengthRatios( cbRowInfo
* pInRow
);
1144 // Generates a cbLayoutRowEvent event to recalculate row layouts.
1145 // Internal function called by plugins.
1147 virtual void RecalcRowLayout( cbRowInfo
* pRow
);
1150 // Internal function called by plugins.
1152 virtual void ExpandBar( cbBarInfo
* pBar
);
1154 // Contracts the bar.
1155 // Internal function called by plugins.
1157 virtual void ContractBar( cbBarInfo
* pBar
);
1159 // Sets up links between bars.
1160 // Internal function called by plugins.
1162 void InitLinksForRow( cbRowInfo
* pRow
);
1164 // Sets up links between bars.
1165 // Internal function called by plugins.
1167 void InitLinksForRows();
1169 // Coordinate translation between parent's frame and this pane.
1170 // Internal function called by plugins.
1172 void FrameToPane( int* x
, int* y
);
1174 // Coordinate translation between parent's frame and this pane.
1175 // Internal function called by plugins.
1177 void PaneToFrame( int* x
, int* y
);
1179 // Coordinate translation between parent's frame and this pane.
1180 // Internal function called by plugins.
1182 void FrameToPane( wxRect
* pRect
);
1184 // Coordinate translation between parent's frame and this pane.
1185 // Internal function called by plugins.
1187 void PaneToFrame( wxRect
* pRect
);
1189 // Returns TRUE if pos is within the given rectangle.
1190 // Internal function called by plugins.
1192 inline bool HasPoint( const wxPoint
& pos
, int x
, int y
, int width
, int height
);
1194 // Returns the minimal row height for the given row.
1195 // Internal function called by plugins.
1197 int GetMinimalRowHeight( cbRowInfo
* pRow
);
1199 // Sets the row height for the given height. newHeight includes the height of row handles, if present.
1200 // Internal function called by plugins.
1202 void SetRowHeight( cbRowInfo
* pRow
, int newHeight
);
1204 // Inserts the bar at the given row number.
1205 // Internal function called by plugins.
1207 void DoInsertBar( cbBarInfo
* pBar
, int rowNo
);
1209 public: /* protected really (accessed only by plugins) */
1211 // Generates a cbDrawBarDecorEvent and sends it to the layout to paint the bar decorations.
1212 // Internal function called by plugins.
1214 virtual void PaintBarDecorations( cbBarInfo
* pBar
, wxDC
& dc
);
1216 // Generates a cbDrawBarHandlesEvent and sends it to the layout to paint the bar handles.
1217 // Internal function called by plugins.
1219 virtual void PaintBarHandles( cbBarInfo
* pBar
, wxDC
& dc
);
1221 // Calls PaintBarDecorations and PaintBarHandles.
1222 // Internal function called by plugins.
1224 virtual void PaintBar( cbBarInfo
* pBar
, wxDC
& dc
);
1226 // Generates cbDrawRowHandlesEvent and cbDrawRowDecorEvent and sends them to the layout.
1227 // Internal function called by plugins.
1229 virtual void PaintRowHandles( cbRowInfo
* pRow
, wxDC
& dc
);
1231 // Generates cbDrawRowBkGroundEvent and sends it to the layout.
1232 // Internal function called by plugins.
1234 virtual void PaintRowBackground ( cbRowInfo
* pRow
, wxDC
& dc
);
1236 // Calls PaintBarDecorations for each row.
1237 // Internal function called by plugins.
1239 virtual void PaintRowDecorations( cbRowInfo
* pRow
, wxDC
& dc
);
1241 // Calls PaintRowBackground, PaintRowDecorations, PaintRowHandles.
1242 // Internal function called by plugins.
1244 virtual void PaintRow( cbRowInfo
* pRow
, wxDC
& dc
);
1246 // Generates cbDrawPaneBkGroundEvent and sends it to the layout.
1247 // Internal function called by plugins.
1249 virtual void PaintPaneBackground( wxDC
& dc
);
1251 // Generates cbDrawPaneDecorEvent and sends it to the layout.
1252 // Internal function called by plugins.
1254 virtual void PaintPaneDecorations( wxDC
& dc
);
1256 // Paints the pane background, the row background and decorations,
1257 // and finally the pane decorations.
1258 // Internal function called by plugins.
1260 virtual void PaintPane( wxDC
& dc
);
1262 // Generates a cbSizeBarWndEvent and sends it to the layout.
1263 // Internal function called by plugins.
1265 virtual void SizeBar( cbBarInfo
* pBar
);
1267 // Calls SizeBar for each bar in the row.
1268 // Internal function called by plugins.
1270 virtual void SizeRowObjects( cbRowInfo
* pRow
);
1272 // Calls SizeRowObjects for each row.
1273 // Internal function called by plugins.
1275 virtual void SizePaneObjects();
1277 // Generates cbStartDrawInAreaEvent and sends it to the layout.
1278 // Internal function called by plugins.
1280 virtual wxDC
* StartDrawInArea ( const wxRect
& area
);
1282 // Generates cbFinishDrawInAreaEvent and sends it to the layout.
1283 // Internal function called by plugins.
1285 virtual void FinishDrawInArea( const wxRect
& area
);
1287 public: /* public members */
1289 // Default constructor.
1293 // Constructor, taking alignment and layout panel.
1295 cbDockPane( int alignment
, wxFrameLayout
* pPanel
);
1297 // Sets pane's margins in frame's coordinate orientations.
1299 void SetMargins( int top
, int bottom
, int left
, int right
);
1303 virtual ~cbDockPane();
1305 // Removes the bar from this pane. Does not destroy the bar.
1307 virtual void RemoveBar( cbBarInfo
* pBar
);
1309 // Inserts the bar into this pane. rect is given in the parent frame's coordinates.
1311 virtual void InsertBar( cbBarInfo
* pBar
, const wxRect
& rect
);
1313 // Inserts the bar into the given row, with dimensions and position
1314 // stored in pBarInfo->mBounds. Returns the node of inserted bar.
1316 virtual void InsertBar( cbBarInfo
* pBar
, cbRowInfo
* pIntoRow
);
1318 // Inserts bar and sets its position according to the preferred settings
1319 // given in pBarInfo.
1321 virtual void InsertBar( cbBarInfo
* pBarInfo
);
1323 // Removes the row from this pane. Does not destroy the row object.
1325 virtual void RemoveRow( cbRowInfo
* pRow
);
1327 // Inserts a row. Does not refresh the inserted row immediately.
1328 // If pBeforeRowNode is NULL, the row is appended to the end of pane's row list.
1330 virtual void InsertRow( cbRowInfo
* pRow
, cbRowInfo
* pBeforeRow
);
1332 // Sets pane's width in the pane's coordinates (including margins).
1334 void SetPaneWidth(int width
);
1336 // Set the position and dimensions of the pane in the parent frame's coordinates.
1338 void SetBoundsInParent( const wxRect
& rect
);
1340 // Returns the bounds of the pane, in parent coordinates.
1342 inline wxRect
& GetRealRect() { return mBoundsInParent
; }
1344 // Returns an array of rows. Used by updates-managers.
1346 inline RowArrayT
& GetRowList() { return mRows
; }
1348 // Returns the first row.
1350 inline cbRowInfo
* GetFirstRow()
1352 { return mRows
.GetCount() ? mRows
[0] : NULL
; }
1354 // Returns TRUE if the given bar is present in this pane.
1356 bool BarPresent( cbBarInfo
* pBar
);
1358 // Returns the height in the pane's coordinates.
1360 int GetPaneHeight();
1362 // Returns the alignment for this pane. The value is one of
1363 // FL_ALIGN_TOP, FL_ALIGN_BOTTOM, FL_ALIGN_LEFT, FL_ALIGN_RIGHT.
1367 // Returns TRUE if the given mask matches the pane's mask.
1369 bool MatchesMask( int paneMask
);
1371 // Returns TRUE if the pane is aligned to the top or bottom.
1373 inline bool IsHorizontal()
1375 return (mAlignment
== FL_ALIGN_TOP
||
1376 mAlignment
== FL_ALIGN_BOTTOM
);
1379 // Generates events to perform layout calculations.
1381 virtual void RecalcLayout();
1383 // Returns wxCBAR_DOCKED_HORIZONTALLY if the alignment is top or bottom,
1384 // or wxCBAR_DOCKED_VERTICALLY otherwise.
1386 virtual int GetDockingState();
1388 // Returns the result of hit-testing items in the pane.
1389 // See CB_HITTEST_RESULT enumerated type.
1390 // pos is the position in this pane's coordinates.
1392 virtual int HitTestPaneItems( const wxPoint
& pos
,
1397 // Returns the bar's resize range.
1399 void GetBarResizeRange( cbBarInfo
* pBar
, int* from
, int *till
, bool forLeftHandle
);
1401 // Returns the row's resize range.
1403 void GetRowResizeRange( cbRowInfo
* pRow
, int* from
, int* till
, bool forUpperHandle
);
1405 // Finds the bar information by corresponding window.
1407 cbBarInfo
* GetBarInfoByWindow( wxWindow
* pBarWnd
);
1409 public: /* protected really (accessed only by plugins) */
1411 // Row/bar resizing related helper-method.
1413 void DrawVertHandle ( wxDC
& dc
, int x
, int y
, int height
);
1415 // Row/bar resizing related helper-method.
1417 void DrawHorizHandle( wxDC
& dc
, int x
, int y
, int width
);
1419 // Row/bar resizing related helper-method.
1421 void ResizeRow( cbRowInfo
* pRow
, int ofs
, bool forUpperHandle
);
1423 // Row/bar resizing related helper-method.
1425 void ResizeBar( cbBarInfo
* pBar
, int ofs
, bool forLeftHandle
);
1427 // Returns row shape data.
1428 // cbBarShapeData objects will be added to the given pLst.
1429 // cbBarShapeData is used for storing the original bar's positions in the row,
1430 // when the 'non-destructive-friction' option is turned on.
1432 void GetRowShapeData( cbRowInfo
* pRow
, wxList
* pLst
);
1434 // Sets the shape data for the given row, using the data provided in pLst.
1435 // cbBarShapeData is used for storing the original bar's positions in the row,
1436 // when the 'non-destructive-friction' option is turned on.
1438 void SetRowShapeData( cbRowInfo
* pRowNode
, wxList
* pLst
);
1442 This class declares an abstract interface for optimized logic that should refresh
1443 areas of frame layout that actually need to be updated. This should be extended in future
1444 to implement a custom updating strategy.
1447 class cbUpdatesManagerBase
: public wxObject
1449 DECLARE_ABSTRACT_CLASS( cbUpdatesManagerBase
)
1451 public: /* protected really, accessed by serializer (if any) */
1453 wxFrameLayout
* mpLayout
;
1456 // Default constructor
1458 cbUpdatesManagerBase(void)
1461 // Constructor taking layout panel.
1463 cbUpdatesManagerBase( wxFrameLayout
* pPanel
)
1464 : mpLayout( pPanel
) {}
1468 virtual ~cbUpdatesManagerBase() {}
1470 // Sets the associated layout.
1472 void SetLayout( wxFrameLayout
* pLayout
) { mpLayout
= pLayout
; }
1474 // This function receives a notification from the frame layout (in the order in which
1475 // they would usually be invoked). Custom updates-managers may utilize
1476 // these notifications to implement a more fine-grained updating strategy.
1478 virtual void OnStartChanges() = 0;
1480 // This function receives a notification from the frame layout (in the order in which
1481 // they would usually be invoked). Custom updates-managers may utilize
1482 // these notifications to implement a more fine-grained updating strategy.
1484 virtual void OnRowWillChange( cbRowInfo
* pRow
, cbDockPane
* pInPane
) {}
1486 // This function receives a notification from the frame layout (in the order in which
1487 // they would usually be invoked). Custom updates-managers may utilize
1488 // these notifications to implement a more fine-grained updating strategy.
1490 virtual void OnBarWillChange( cbBarInfo
* pBar
, cbRowInfo
* pInRow
, cbDockPane
* pInPane
) {}
1492 // This function receives a notification from the frame layout (in the order in which
1493 // they would usually be invoked). Custom updates-managers may utilize
1494 // these notifications to implement a more fine-grained updating strategy.
1496 virtual void OnPaneMarginsWillChange( cbDockPane
* pPane
) {}
1498 // This function receives a notification from the frame layout (in the order in which
1499 // they would usually be invoked). Custom updates-managers may utilize
1500 // these notifications to implement a more fine-grained updating strategy.
1502 virtual void OnPaneWillChange( cbDockPane
* pPane
) {}
1504 // This function receives a notification from the frame layout (in the order in which
1505 // they would usually be invoked). Custom updates-managers may utilize
1506 // these notifications to implement a more fine-grained updating strategy.
1508 virtual void OnFinishChanges() {}
1510 // Refreshes parts of the frame layout that need an update.
1512 virtual void UpdateNow() = 0;
1516 Base class for all control-bar plugin events.
1517 This is not a dynamically-creatable class.
1520 class cbPluginEvent
: public wxEvent
1523 // NULL if event is not addressed to any specific pane.
1527 // Not used, but required.
1529 virtual wxEvent
* Clone() const { return NULL
; }
1531 // Constructor, taking event type and pane.
1533 cbPluginEvent( wxEventType eventType
, cbDockPane
* pPane
)
1536 { m_eventType
= eventType
; }
1539 // event types handled by plugins
1541 extern wxEventType cbEVT_PL_LEFT_DOWN
;
1542 extern wxEventType cbEVT_PL_LEFT_UP
;
1543 extern wxEventType cbEVT_PL_RIGHT_DOWN
;
1544 extern wxEventType cbEVT_PL_RIGHT_UP
;
1545 extern wxEventType cbEVT_PL_MOTION
;
1547 extern wxEventType cbEVT_PL_LEFT_DCLICK
;
1549 extern wxEventType cbEVT_PL_LAYOUT_ROW
;
1550 extern wxEventType cbEVT_PL_RESIZE_ROW
;
1551 extern wxEventType cbEVT_PL_LAYOUT_ROWS
;
1552 extern wxEventType cbEVT_PL_INSERT_BAR
;
1553 extern wxEventType cbEVT_PL_RESIZE_BAR
;
1554 extern wxEventType cbEVT_PL_REMOVE_BAR
;
1555 extern wxEventType cbEVT_PL_SIZE_BAR_WND
;
1557 extern wxEventType cbEVT_PL_DRAW_BAR_DECOR
;
1558 extern wxEventType cbEVT_PL_DRAW_ROW_DECOR
;
1559 extern wxEventType cbEVT_PL_DRAW_PANE_DECOR
;
1560 extern wxEventType cbEVT_PL_DRAW_BAR_HANDLES
;
1561 extern wxEventType cbEVT_PL_DRAW_ROW_HANDLES
;
1562 extern wxEventType cbEVT_PL_DRAW_ROW_BKGROUND
;
1563 extern wxEventType cbEVT_PL_DRAW_PANE_BKGROUND
;
1565 extern wxEventType cbEVT_PL_START_BAR_DRAGGING
;
1566 extern wxEventType cbEVT_PL_DRAW_HINT_RECT
;
1568 extern wxEventType cbEVT_PL_START_DRAW_IN_AREA
;
1569 extern wxEventType cbEVT_PL_FINISH_DRAW_IN_AREA
;
1571 extern wxEventType cbEVT_PL_CUSTOMIZE_BAR
;
1572 extern wxEventType cbEVT_PL_CUSTOMIZE_LAYOUT
;
1574 extern wxEventType wxCUSTOM_CB_PLUGIN_EVENTS_START_AT
;
1576 // Forward declarations, separated by categories.
1578 class cbLeftDownEvent
;
1579 class cbLeftUpEvent
;
1580 class cbRightDownEvent
;
1581 class cbRightUpEvent
;
1582 class cbMotionEvent
;
1583 class cbLeftDClickEvent
;
1585 class cbLayoutRowEvent
;
1586 class cbResizeRowEvent
;
1587 class cbLayoutRowsEvent
;
1588 class cbInsertBarEvent
;
1589 class cbResizeBarEvent
;
1590 class cbRemoveBarEvent
;
1591 class cbSizeBarWndEvent
;
1593 class cbDrawBarDecorEvent
;
1594 class cbDrawRowDecorEvent
;
1595 class cbDrawPaneDecorEvent
;
1596 class cbDrawBarHandlesEvent
;
1597 class cbDrawRowHandlesEvent
;
1598 class cbDrawRowBkGroundEvent
;
1599 class cbDrawPaneBkGroundEvent
;
1601 class cbStartBarDraggingEvent
;
1602 class cbDrawHintRectEvent
;
1604 class cbStartDrawInAreaEvent
;
1605 class cbFinishDrawInAreaEvent
;
1607 class cbCustomizeBarEvent
;
1608 class cbCustomizeLayoutEvent
;
1610 // Definitions for for handler-methods.
1612 typedef void (wxEvtHandler::*cbLeftDownHandler
)(cbLeftDownEvent
&);
1613 typedef void (wxEvtHandler::*cbLeftUpHandler
)(cbLeftUpEvent
&);
1614 typedef void (wxEvtHandler::*cbRightDownHandler
)(cbRightDownEvent
&);
1615 typedef void (wxEvtHandler::*cbRightUpHandler
)(cbRightUpEvent
&);
1616 typedef void (wxEvtHandler::*cbMotionHandler
)(cbMotionEvent
&);
1617 typedef void (wxEvtHandler::*cbLeftDClickHandler
)(cbLeftDClickEvent
&);
1619 typedef void (wxEvtHandler::*cbLayoutRowHandler
)(cbLayoutRowEvent
&);
1620 typedef void (wxEvtHandler::*cbResizeRowHandler
)(cbResizeRowEvent
&);
1621 typedef void (wxEvtHandler::*cbLayoutRowsHandler
)(cbLayoutRowsEvent
&);
1622 typedef void (wxEvtHandler::*cbInsertBarHandler
)(cbInsertBarEvent
&);
1623 typedef void (wxEvtHandler::*cbResizeBarHandler
)(cbResizeBarEvent
&);
1624 typedef void (wxEvtHandler::*cbRemoveBarHandler
)(cbRemoveBarEvent
&);
1625 typedef void (wxEvtHandler::*cbSizeBarWndHandler
)(cbSizeBarWndEvent
&);
1627 typedef void (wxEvtHandler::*cbDrawBarDecorHandler
)(cbDrawBarDecorEvent
&);
1628 typedef void (wxEvtHandler::*cbDrawRowDecorHandler
)(cbDrawRowDecorEvent
&);
1629 typedef void (wxEvtHandler::*cbDrawPaneDecorHandler
)(cbDrawPaneDecorEvent
&);
1630 typedef void (wxEvtHandler::*cbDrawBarHandlesHandler
)(cbDrawBarHandlesEvent
&);
1631 typedef void (wxEvtHandler::*cbDrawRowHandlesHandler
)(cbDrawRowHandlesEvent
&);
1632 typedef void (wxEvtHandler::*cbDrawRowBkGroundHandler
)(cbDrawRowBkGroundEvent
&);
1633 typedef void (wxEvtHandler::*cbDrawPaneBkGroundHandler
)(cbDrawPaneBkGroundEvent
&);
1635 typedef void (wxEvtHandler::*cbStartBarDraggingHandler
)(cbStartBarDraggingEvent
&);
1636 typedef void (wxEvtHandler::*cbDrawHintRectHandler
)(cbDrawHintRectEvent
&);
1638 typedef void (wxEvtHandler::*cbStartDrawInAreaHandler
)(cbStartDrawInAreaEvent
&);
1639 typedef void (wxEvtHandler::*cbFinishDrawInAreaHandler
)(cbFinishDrawInAreaEvent
&);
1641 typedef void (wxEvtHandler::*cbCustomizeBarHandler
)(cbCustomizeBarEvent
&);
1642 typedef void (wxEvtHandler::*cbCustomizeLayoutHandler
)(cbCustomizeLayoutEvent
&);
1644 // Macros for creating event table entries for plugin-events.
1646 #define EVT_PL_LEFT_DOWN(func) wxEventTableEntry( cbEVT_PL_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbLeftDownHandler ) & func, (wxObject *) NULL ),
1647 #define EVT_PL_LEFT_UP(func) wxEventTableEntry( cbEVT_PL_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbLeftUpHandler ) & func, (wxObject *) NULL ),
1648 #define EVT_PL_RIGHT_DOWN(func) wxEventTableEntry( cbEVT_PL_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbRightDownHandler ) & func, (wxObject *) NULL ),
1649 #define EVT_PL_RIGHT_UP(func) wxEventTableEntry( cbEVT_PL_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbRightUpHandler ) & func, (wxObject *) NULL ),
1650 #define EVT_PL_MOTION(func) wxEventTableEntry( cbEVT_PL_MOTION, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbMotionHandler ) & func, (wxObject *) NULL ),
1651 #define EVT_PL_LEFT_DCLICK(func) wxEventTableEntry( cbEVT_PL_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbLeftDClickHandler ) & func, (wxObject *) NULL ),
1653 #define EVT_PL_LAYOUT_ROW(func) wxEventTableEntry( cbEVT_PL_LAYOUT_ROW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbLayoutRowHandler ) & func, (wxObject *) NULL ),
1654 #define EVT_PL_RESIZE_ROW(func) wxEventTableEntry( cbEVT_PL_RESIZE_ROW, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbResizeRowHandler ) & func, (wxObject *) NULL ),
1655 #define EVT_PL_LAYOUT_ROWS(func) wxEventTableEntry( cbEVT_PL_LAYOUT_ROWS, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbLayoutRowsHandler ) & func, (wxObject *) NULL ),
1656 #define EVT_PL_INSERT_BAR(func) wxEventTableEntry( cbEVT_PL_INSERT_BAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbInsertBarHandler ) & func, (wxObject *) NULL ),
1657 #define EVT_PL_RESIZE_BAR(func) wxEventTableEntry( cbEVT_PL_RESIZE_BAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbResizeBarHandler ) & func, (wxObject *) NULL ),
1658 #define EVT_PL_REMOVE_BAR(func) wxEventTableEntry( cbEVT_PL_REMOVE_BAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbRemoveBarHandler ) & func, (wxObject *) NULL ),
1659 #define EVT_PL_SIZE_BAR_WND(func) wxEventTableEntry( cbEVT_PL_SIZE_BAR_WND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbSizeBarWndHandler ) & func, (wxObject *) NULL ),
1661 #define EVT_PL_DRAW_BAR_DECOR(func) wxEventTableEntry( cbEVT_PL_DRAW_BAR_DECOR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbDrawBarDecorHandler ) & func, (wxObject *) NULL ),
1662 #define EVT_PL_DRAW_ROW_DECOR(func) wxEventTableEntry( cbEVT_PL_DRAW_ROW_DECOR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbDrawRowDecorHandler ) & func, (wxObject *) NULL ),
1663 #define EVT_PL_DRAW_PANE_DECOR(func) wxEventTableEntry( cbEVT_PL_DRAW_PANE_DECOR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbDrawPaneDecorHandler ) & func, (wxObject *) NULL ),
1664 #define EVT_PL_DRAW_BAR_HANDLES(func) wxEventTableEntry( cbEVT_PL_DRAW_BAR_HANDLES, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbDrawBarHandlesHandler ) & func, (wxObject *) NULL ),
1665 #define EVT_PL_DRAW_ROW_HANDLES(func) wxEventTableEntry( cbEVT_PL_DRAW_ROW_HANDLES, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbDrawRowHandlesHandler ) & func, (wxObject *) NULL ),
1666 #define EVT_PL_DRAW_ROW_BKGROUND(func) wxEventTableEntry( cbEVT_PL_DRAW_ROW_BKGROUND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbDrawRowBkGroundHandler ) & func, (wxObject *) NULL ),
1667 #define EVT_PL_DRAW_PANE_BKGROUND(func) wxEventTableEntry( cbEVT_PL_DRAW_PANE_BKGROUND, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbDrawPaneBkGroundHandler) & func, (wxObject *) NULL ),
1669 #define EVT_PL_START_BAR_DRAGGING(func) wxEventTableEntry( cbEVT_PL_START_BAR_DRAGGING, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbStartBarDraggingHandler) & func, (wxObject *) NULL ),
1670 #define EVT_PL_DRAW_HINT_RECT(func) wxEventTableEntry( cbEVT_PL_DRAW_HINT_RECT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbDrawHintRectHandler ) & func, (wxObject *) NULL ),
1673 #define EVT_PL_START_DRAW_IN_AREA(func) wxEventTableEntry( cbEVT_PL_START_DRAW_IN_AREA, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbStartDrawInAreaHandler) & func, (wxObject *) NULL ),
1674 #define EVT_PL_FINISH_DRAW_IN_AREA(func) wxEventTableEntry( cbEVT_PL_FINISH_DRAW_IN_AREA, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbFinishDrawInAreaHandler) & func, (wxObject *) NULL ),
1676 #define EVT_PL_CUSTOMIZE_BAR(func) wxEventTableEntry( cbEVT_PL_CUSTOMIZE_BAR, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbCustomizeBarHandler) & func, (wxObject *) NULL ),
1677 #define EVT_PL_CUSTOMIZE_LAYOUT(func) wxEventTableEntry( cbEVT_PL_CUSTOMIZE_LAYOUT, -1, -1, (wxObjectEventFunction) (wxEventFunction) (cbCustomizeLayoutHandler) & func, (wxObject *) NULL ),
1680 Abstract base class for all control-bar related plugins.
1681 Note: pointer positions of mouse events sent to plugins
1682 are always in the pane's coordinates (the pane to which
1683 this plugin is hooked).
1686 class cbPluginBase
: public wxEvtHandler
1688 DECLARE_ABSTRACT_CLASS( cbPluginBase
)
1690 // Back-reference to the frame layout.
1692 wxFrameLayout
* mpLayout
;
1694 // Specifies panes for which this plugin receives events
1695 // (see pane masks definitions).
1699 // Is TRUE when plugin is ready to handle events.
1704 // Default constructor.
1709 mPaneMask( wxALL_PANES
),
1713 // Constructor taking layout panel and a mask.
1715 cbPluginBase( wxFrameLayout
* pPanel
, int paneMask
= wxALL_PANES
)
1717 : mpLayout ( pPanel
),
1718 mPaneMask( paneMask
),
1722 // Returns the pane mask.
1724 inline int GetPaneMask() { return mPaneMask
; }
1726 // Destructor. Destroys the whole plugin chain of connected plugins.
1728 virtual ~cbPluginBase();
1730 // Override this method to do plugin-specific initialization.
1731 // At this point plugin is already attached to the frame layout,
1732 // and pane masks are set.
1734 virtual void OnInitPlugin() { mIsReady
= TRUE
; }
1736 // Returns TRUE if the plugin is ready to receive events.
1738 bool IsReady() { return mIsReady
; }
1740 // Overridden to determine whether the target pane specified in the
1741 // event matches the pane mask of this plugin (specific plugins
1742 // do not override this method).
1744 virtual bool ProcessEvent(wxEvent
& event
);
1748 Class for mouse left down events.
1751 class cbLeftDownEvent
: public cbPluginEvent
1756 // Constructor, taking mouse position and pane.
1758 cbLeftDownEvent( const wxPoint
& pos
, cbDockPane
* pPane
)
1760 : cbPluginEvent( cbEVT_PL_LEFT_DOWN
, pPane
),
1766 Class for mouse left up events.
1769 class cbLeftUpEvent
: public cbPluginEvent
1774 // Constructor, taking mouse position and pane.
1776 cbLeftUpEvent( const wxPoint
& pos
, cbDockPane
* pPane
)
1778 : cbPluginEvent( cbEVT_PL_LEFT_UP
, pPane
),
1784 Class for mouse right down events.
1787 class cbRightDownEvent
: public cbPluginEvent
1792 // Constructor, taking mouse position and pane.
1794 cbRightDownEvent( const wxPoint
& pos
, cbDockPane
* pPane
)
1796 : cbPluginEvent( cbEVT_PL_RIGHT_DOWN
, pPane
),
1802 Class for mouse right up events.
1805 class cbRightUpEvent
: public cbPluginEvent
1810 // Constructor, taking mouse position and pane.
1812 cbRightUpEvent( const wxPoint
& pos
, cbDockPane
* pPane
)
1814 : cbPluginEvent( cbEVT_PL_RIGHT_UP
, pPane
),
1820 Class for mouse motion events.
1823 class cbMotionEvent
: public cbPluginEvent
1828 // Constructor, taking mouse position and pane.
1830 cbMotionEvent( const wxPoint
& pos
, cbDockPane
* pPane
)
1832 : cbPluginEvent( cbEVT_PL_MOTION
, pPane
),
1838 Class for mouse left double click events.
1841 class cbLeftDClickEvent
: public cbPluginEvent
1846 // Constructor, taking mouse position and pane.
1848 cbLeftDClickEvent( const wxPoint
& pos
, cbDockPane
* pPane
)
1850 : cbPluginEvent( cbEVT_PL_LEFT_DCLICK
, pPane
),
1856 Class for single row layout events.
1859 class cbLayoutRowEvent
: public cbPluginEvent
1864 // Constructor, taking row information and pane.
1866 cbLayoutRowEvent( cbRowInfo
* pRow
, cbDockPane
* pPane
)
1868 : cbPluginEvent( cbEVT_PL_LAYOUT_ROW
, pPane
),
1874 Class for row resize events.
1877 class cbResizeRowEvent
: public cbPluginEvent
1882 bool mForUpperHandle
;
1884 // Constructor, taking row information, two parameters of currently unknown use, and pane.
1886 cbResizeRowEvent( cbRowInfo
* pRow
, int handleOfs
, bool forUpperHandle
, cbDockPane
* pPane
)
1888 : cbPluginEvent( cbEVT_PL_RESIZE_ROW
, pPane
),
1890 mHandleOfs( handleOfs
),
1891 mForUpperHandle( forUpperHandle
)
1896 Class for multiple rows layout events.
1899 class cbLayoutRowsEvent
: public cbPluginEvent
1903 // Constructor, taking pane.
1905 cbLayoutRowsEvent( cbDockPane
* pPane
)
1907 : cbPluginEvent( cbEVT_PL_LAYOUT_ROWS
, pPane
)
1912 Class for bar insertion events.
1915 class cbInsertBarEvent
: public cbPluginEvent
1921 // Constructor, taking bar information, row information, and pane.
1923 cbInsertBarEvent( cbBarInfo
* pBar
, cbRowInfo
* pIntoRow
, cbDockPane
* pPane
)
1925 : cbPluginEvent( cbEVT_PL_INSERT_BAR
, pPane
),
1933 Class for bar resize events.
1936 class cbResizeBarEvent
: public cbPluginEvent
1942 // Constructor, taking bar information, row information, and pane.
1944 cbResizeBarEvent( cbBarInfo
* pBar
, cbRowInfo
* pRow
, cbDockPane
* pPane
)
1946 : cbPluginEvent( cbEVT_PL_RESIZE_BAR
, pPane
),
1953 Class for bar removal events.
1956 class cbRemoveBarEvent
: public cbPluginEvent
1961 // Constructor, taking bar information and pane.
1963 cbRemoveBarEvent( cbBarInfo
* pBar
, cbDockPane
* pPane
)
1965 : cbPluginEvent( cbEVT_PL_REMOVE_BAR
, pPane
),
1971 Class for bar window resize events.
1974 class cbSizeBarWndEvent
: public cbPluginEvent
1978 wxRect mBoundsInParent
;
1980 // Constructor, taking bar information and pane.
1982 cbSizeBarWndEvent( cbBarInfo
* pBar
, cbDockPane
* pPane
)
1984 : cbPluginEvent( cbEVT_PL_SIZE_BAR_WND
, pPane
),
1986 mBoundsInParent( pBar
->mBoundsInParent
)
1991 Class for bar decoration drawing events.
1994 class cbDrawBarDecorEvent
: public cbPluginEvent
1999 wxRect mBoundsInParent
;
2001 // Constructor, taking bar information, device context, and pane.
2003 cbDrawBarDecorEvent( cbBarInfo
* pBar
, wxDC
& dc
, cbDockPane
* pPane
)
2005 : cbPluginEvent( cbEVT_PL_DRAW_BAR_DECOR
, pPane
),
2008 mBoundsInParent( pBar
->mBoundsInParent
)
2013 Class for row decoration drawing events.
2016 class cbDrawRowDecorEvent
: public cbPluginEvent
2022 // Constructor, taking row information, device context, and pane.
2024 cbDrawRowDecorEvent( cbRowInfo
* pRow
, wxDC
& dc
, cbDockPane
* pPane
)
2026 : cbPluginEvent( cbEVT_PL_DRAW_ROW_DECOR
, pPane
),
2033 Class for pane decoration drawing events.
2036 class cbDrawPaneDecorEvent
: public cbPluginEvent
2041 // Constructor, taking device context and pane.
2043 cbDrawPaneDecorEvent( wxDC
& dc
, cbDockPane
* pPane
)
2045 : cbPluginEvent( cbEVT_PL_DRAW_PANE_DECOR
, pPane
),
2051 Class for bar handles drawing events.
2054 class cbDrawBarHandlesEvent
: public cbPluginEvent
2060 // Constructor, taking bar information, device context, and pane.
2062 cbDrawBarHandlesEvent( cbBarInfo
* pBar
, wxDC
& dc
, cbDockPane
* pPane
)
2064 : cbPluginEvent( cbEVT_PL_DRAW_BAR_HANDLES
, pPane
),
2071 Class for row handles drawing events.
2074 class cbDrawRowHandlesEvent
: public cbPluginEvent
2080 // Constructor, taking row information, device context, and pane.
2082 cbDrawRowHandlesEvent( cbRowInfo
* pRow
, wxDC
& dc
, cbDockPane
* pPane
)
2084 : cbPluginEvent( cbEVT_PL_DRAW_ROW_HANDLES
, pPane
),
2091 Class for row background drawing events.
2094 class cbDrawRowBkGroundEvent
: public cbPluginEvent
2100 // Constructor, taking row information, device context, and pane.
2102 cbDrawRowBkGroundEvent( cbRowInfo
* pRow
, wxDC
& dc
, cbDockPane
* pPane
)
2104 : cbPluginEvent( cbEVT_PL_DRAW_ROW_BKGROUND
, pPane
),
2111 Class for pane background drawing events.
2114 class cbDrawPaneBkGroundEvent
: public cbPluginEvent
2119 // Constructor, taking device context and pane.
2121 cbDrawPaneBkGroundEvent( wxDC
& dc
, cbDockPane
* pPane
)
2123 : cbPluginEvent( cbEVT_PL_DRAW_PANE_BKGROUND
, pPane
),
2129 Class for start-bar-dragging events.
2132 class cbStartBarDraggingEvent
: public cbPluginEvent
2136 wxPoint mPos
; // is given in frame's coordinates
2138 // Constructor, taking bar information, mouse position, and pane.
2140 cbStartBarDraggingEvent( cbBarInfo
* pBar
, const wxPoint
& pos
, cbDockPane
* pPane
)
2142 : cbPluginEvent( cbEVT_PL_START_BAR_DRAGGING
, pPane
),
2149 Class for hint-rectangle drawing events.
2152 class cbDrawHintRectEvent
: public cbPluginEvent
2155 wxRect mRect
; // is given in frame's coordinates
2158 bool mLastTime
; // indicates that this event finishes "session" of on-screen drawing,
2159 // thus associated resources can be freed now
2160 bool mEraseRect
; // does not have any impact, if recangle is drawn using XOR-mask
2162 bool mIsInClient
;// in cleint area hint could be drawn differently,
2163 // e.g. with fat/hatched border
2166 // Constructor, taking hint rectangle and three flags.
2168 cbDrawHintRectEvent( const wxRect
& rect
, bool isInClient
, bool eraseRect
, bool lastTime
)
2170 : cbPluginEvent( cbEVT_PL_DRAW_HINT_RECT
, 0 ),
2172 mLastTime ( lastTime
),
2173 mEraseRect ( eraseRect
),
2174 mIsInClient( isInClient
)
2179 Class for start drawing in area events.
2182 class cbStartDrawInAreaEvent
: public cbPluginEvent
2186 wxDC
** mppDc
; // points to pointer, where the reference
2187 // to the obtained buffer-context should be placed
2189 // Constructor, taking rectangular area, device context pointer to a pointer, and pane.
2191 cbStartDrawInAreaEvent( const wxRect
& area
, wxDC
** ppDCForArea
, cbDockPane
* pPane
)
2193 : cbPluginEvent( cbEVT_PL_START_DRAW_IN_AREA
, pPane
),
2195 mppDc( ppDCForArea
)
2200 Class for finish drawing in area events.
2203 class cbFinishDrawInAreaEvent
: public cbPluginEvent
2208 // Constructor, taking rectangular area and pane.
2210 cbFinishDrawInAreaEvent( const wxRect
& area
, cbDockPane
* pPane
)
2212 : cbPluginEvent( cbEVT_PL_FINISH_DRAW_IN_AREA
, pPane
),
2218 Class for bar customization events.
2221 class cbCustomizeBarEvent
: public cbPluginEvent
2224 wxPoint mClickPos
; // in parent frame's coordinates
2227 // Constructor, taking bar information, mouse position, and pane.
2229 cbCustomizeBarEvent( cbBarInfo
* pBar
, const wxPoint
& clickPos
, cbDockPane
* pPane
)
2231 : cbPluginEvent( cbEVT_PL_CUSTOMIZE_BAR
, pPane
),
2232 mClickPos( clickPos
),
2238 Class for layout customization events.
2241 class cbCustomizeLayoutEvent
: public cbPluginEvent
2244 wxPoint mClickPos
; // in parent frame's coordinates
2246 // Constructor, taking mouse position.
2248 cbCustomizeLayoutEvent( const wxPoint
& clickPos
)
2250 : cbPluginEvent( cbEVT_PL_CUSTOMIZE_LAYOUT
, 0 ),
2251 mClickPos( clickPos
)
2255 #endif /* __CONTROLBAR_G__ */