]>
Commit | Line | Data |
---|---|---|
8e08b761 | 1 | ///////////////////////////////////////////////////////////////////////////// |
4cbc57f0 JS |
2 | // Name: updatesmgr.h |
3 | // Purpose: cbSimpleUpdatesMgr class declaration | |
8e08b761 JS |
4 | // Author: Aleksandras Gluchovas (@Lithuania) |
5 | // Modified by: | |
6 | // Created: 19/10/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Aleksandras Gluchovas | |
4cbc57f0 | 9 | // Licence: wxWindows licence |
8e08b761 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef __UPDATESMGR_G__ | |
13 | #define __UPDATESMGR_G__ | |
14 | ||
ab7ce33c | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
8e08b761 JS |
16 | #pragma interface "updatesmgr.h" |
17 | #endif | |
18 | ||
19 | #include "wx/fl/controlbar.h" | |
20 | ||
21 | /* | |
4cbc57f0 JS |
22 | This class implements slightly optimized logic for refreshing |
23 | the areas of frame layout that actually need to be updated. | |
24 | */ | |
8e08b761 | 25 | |
510b9edb | 26 | class WXDLLIMPEXP_FL cbSimpleUpdatesMgr : public cbUpdatesManagerBase |
8e08b761 | 27 | { |
4cbc57f0 | 28 | DECLARE_DYNAMIC_CLASS( cbSimpleUpdatesMgr ) |
8e08b761 JS |
29 | protected: |
30 | ||
4cbc57f0 JS |
31 | // Helper function. |
32 | bool WasChanged( cbUpdateMgrData& data, wxRect& currentBounds ); | |
8e08b761 JS |
33 | |
34 | public: | |
4cbc57f0 JS |
35 | // Default constructor. |
36 | cbSimpleUpdatesMgr() {} | |
8e08b761 | 37 | |
4cbc57f0 JS |
38 | // Constructor taking frame layout panel. |
39 | cbSimpleUpdatesMgr( wxFrameLayout* pPanel ); | |
8e08b761 | 40 | |
4cbc57f0 JS |
41 | // Notification received from Frame Layout in the order in which |
42 | // they would usually be invoked. | |
43 | virtual void OnStartChanges(); | |
8e08b761 | 44 | |
4cbc57f0 JS |
45 | // Notification received from Frame Layout in the order in which |
46 | // they would usually be invoked. | |
47 | virtual void OnRowWillChange( cbRowInfo* pRow, cbDockPane* pInPane ); | |
8e08b761 | 48 | |
4cbc57f0 JS |
49 | // Notification received from Frame Layout in the order in which |
50 | // they would usually be invoked. | |
51 | virtual void OnBarWillChange( cbBarInfo* pBar, cbRowInfo* pInRow, cbDockPane* pInPane ); | |
8e08b761 | 52 | |
4cbc57f0 JS |
53 | // Notification received from Frame Layout in the order in which |
54 | // they would usually be invoked. | |
55 | virtual void OnPaneMarginsWillChange( cbDockPane* pPane ); | |
8e08b761 | 56 | |
4cbc57f0 JS |
57 | // Notification received from Frame Layout in the order in which |
58 | // they would usually be invoked. | |
59 | virtual void OnPaneWillChange( cbDockPane* pPane ); | |
8e08b761 | 60 | |
4cbc57f0 JS |
61 | // Notification received from Frame Layout in the order in which |
62 | // they would usually be invoked. | |
63 | virtual void OnFinishChanges(); | |
64 | ||
65 | // Refreshes the parts of the frame layoutthat need an update. | |
66 | virtual void UpdateNow(); | |
8e08b761 JS |
67 | }; |
68 | ||
69 | #endif /* __UPDATESMGR_G__ */ | |
70 |