Define _CRT_NONSTDC_NO_WARNINGS for zlib compilation with MSVC.
[wxWidgets.git] / include / wx / module.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/module.h
3 // Purpose: Modules handling
4 // Author: Wolfram Gloger/adapted by Guilhem Lavaux
5 // Modified by:
6 // Created: 04/11/98
7 // Copyright: (c) Wolfram Gloger and Guilhem Lavaux
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_MODULE_H_
12 #define _WX_MODULE_H_
13
14 #include "wx/object.h"
15 #include "wx/list.h"
16 #include "wx/arrstr.h"
17 #include "wx/dynarray.h"
18
19 // declare a linked list of modules
20 class WXDLLIMPEXP_FWD_BASE wxModule;
21 WX_DECLARE_USER_EXPORTED_LIST(wxModule, wxModuleList, WXDLLIMPEXP_BASE);
22
23 // and an array of class info objects
24 WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxClassInfo *, wxArrayClassInfo,
25 class WXDLLIMPEXP_BASE);
26
27
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)
31 class WXDLLIMPEXP_BASE wxModule : public wxObject
32 {
33 public:
34 wxModule() {}
35 virtual ~wxModule() {}
36
37 // if module init routine returns false the application
38 // will fail to startup
39
40 bool Init() { return OnInit(); }
41 void Exit() { OnExit(); }
42
43 // Override both of these
44
45 // called on program startup
46
47 virtual bool OnInit() = 0;
48
49 // called just before program termination, but only if OnInit()
50 // succeeded
51
52 virtual void OnExit() = 0;
53
54 static void RegisterModule(wxModule *module);
55 static void RegisterModules();
56 static bool InitializeModules();
57 static void CleanUpModules() { DoCleanUpModules(m_modules); }
58
59 // used by wxObjectLoader when unloading shared libs's
60
61 static void UnregisterModule(wxModule *module);
62
63 protected:
64 static wxModuleList m_modules;
65
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, wxT("NULL module dependency") );
72
73 m_dependencies.Add(dep);
74 }
75
76 // same as the version above except it will look up wxClassInfo by name on
77 // its own
78 void AddDependency(const char *className)
79 {
80 m_namedDependencies.Add(className);
81 }
82
83
84 private:
85 // initialize module and Append it to initializedModules list recursively
86 // calling itself to satisfy module dependencies if needed
87 static bool
88 DoInitializeModule(wxModule *module, wxModuleList &initializedModules);
89
90 // cleanup the modules in the specified list (which may not contain all
91 // modules if we're called during initialization because not all modules
92 // could be initialized) and also empty m_modules itself
93 static void DoCleanUpModules(const wxModuleList& modules);
94
95 // resolve all named dependencies and add them to the normal m_dependencies
96 bool ResolveNamedDependencies();
97
98
99 // module dependencies: contains wxClassInfo pointers for all modules which
100 // must be initialized before this one
101 wxArrayClassInfo m_dependencies;
102
103 // and the named dependencies: those will be resolved during run-time and
104 // added to m_dependencies
105 wxArrayString m_namedDependencies;
106
107 // used internally while initializing/cleaning up modules
108 enum
109 {
110 State_Registered, // module registered but not initialized yet
111 State_Initializing, // we're initializing this module but not done yet
112 State_Initialized // module initialized successfully
113 } m_state;
114
115
116 DECLARE_CLASS(wxModule)
117 };
118
119 #endif // _WX_MODULE_H_