]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
02761f6c | 2 | // Name: wx/module.h |
c801d85f KB |
3 | // Purpose: Modules handling |
4 | // Author: Wolfram Gloger/adapted by Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: 04/11/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Wolfram Gloger and Guilhem Lavaux | |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
9945c703 DS |
12 | #ifndef _WX_MODULE_H_ |
13 | #define _WX_MODULE_H_ | |
c801d85f | 14 | |
c801d85f KB |
15 | #include "wx/object.h" |
16 | #include "wx/list.h" | |
af266e5b | 17 | #include "wx/dynarray.h" |
c801d85f | 18 | |
8aa4edd2 | 19 | // declare a linked list of modules |
446e5259 | 20 | class WXDLLIMPEXP_BASE wxModule; |
4460b6c4 | 21 | WX_DECLARE_USER_EXPORTED_LIST(wxModule, wxModuleList, WXDLLIMPEXP_BASE); |
8aa4edd2 | 22 | |
af266e5b VZ |
23 | // and an array of class info objects |
24 | WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxClassInfo *, wxArrayClassInfo, | |
25 | class WXDLLIMPEXP_BASE); | |
26 | ||
27 | ||
8aa4edd2 VZ |
28 | // declaring a class derived from wxModule will automatically create an |
29 | // instance of this class on program startup, call its OnInit() method and call | |
30 | // OnExit() on program termination (but only if OnInit() succeeded) | |
bddd7a8d | 31 | class WXDLLIMPEXP_BASE wxModule : public wxObject |
c801d85f KB |
32 | { |
33 | public: | |
8aa4edd2 VZ |
34 | wxModule() {} |
35 | virtual ~wxModule() {} | |
c801d85f | 36 | |
9945c703 DS |
37 | // if module init routine returns false the application |
38 | // will fail to startup | |
0b9ab0bd | 39 | |
8aa4edd2 VZ |
40 | bool Init() { return OnInit(); } |
41 | void Exit() { OnExit(); } | |
c801d85f | 42 | |
9945c703 DS |
43 | // Override both of these |
44 | ||
8aa4edd2 | 45 | // called on program startup |
0b9ab0bd | 46 | |
8aa4edd2 | 47 | virtual bool OnInit() = 0; |
0b9ab0bd | 48 | |
9945c703 | 49 | // called just before program termination, but only if OnInit() |
8aa4edd2 | 50 | // succeeded |
9945c703 | 51 | |
8aa4edd2 | 52 | virtual void OnExit() = 0; |
c801d85f | 53 | |
9945c703 | 54 | static void RegisterModule(wxModule *module); |
8aa4edd2 VZ |
55 | static void RegisterModules(); |
56 | static bool InitializeModules(); | |
af266e5b | 57 | static void CleanUpModules() { DoCleanUpModules(m_modules); } |
c801d85f | 58 | |
9945c703 | 59 | // used by wxObjectLoader when unloading shared libs's |
0b9ab0bd | 60 | |
9945c703 | 61 | static void UnregisterModule(wxModule *module); |
0b9ab0bd | 62 | |
c801d85f | 63 | protected: |
8aa4edd2 | 64 | static wxModuleList m_modules; |
c801d85f | 65 | |
af266e5b VZ |
66 | // the function to call from constructor of a deriving class add module |
67 | // dependency which will be initialized before the module and unloaded | |
68 | // after that | |
69 | void AddDependency(wxClassInfo *dep) | |
70 | { | |
71 | wxCHECK_RET( dep, _T("NULL module dependency") ); | |
72 | ||
73 | m_dependencies.Add(dep); | |
74 | } | |
75 | ||
76 | private: | |
77 | // initialize module and Append it to initializedModules list recursively | |
78 | // calling itself to satisfy module dependencies if needed | |
79 | static bool | |
80 | DoInitializeModule(wxModule *module, wxModuleList &initializedModules); | |
81 | ||
82 | // cleanup the modules in the specified list (which may not contain all | |
83 | // modules if we're called during initialization because not all modules | |
84 | // could be initialized) and also empty m_modules itself | |
85 | static void DoCleanUpModules(const wxModuleList& modules); | |
86 | ||
87 | ||
02761f6c | 88 | // module dependencies: contains |
af266e5b VZ |
89 | wxArrayClassInfo m_dependencies; |
90 | ||
91 | // used internally while initiliazing/cleaning up modules | |
92 | enum | |
93 | { | |
94 | State_Registered, // module registered but not initialized yet | |
95 | State_Initializing, // we're initializing this module but not done yet | |
96 | State_Initialized // module initialized successfully | |
97 | } m_state; | |
98 | ||
99 | ||
8aa4edd2 | 100 | DECLARE_CLASS(wxModule) |
c801d85f KB |
101 | }; |
102 | ||
9945c703 | 103 | #endif // _WX_MODULE_H_ |