X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a660d684eda27638bca0384b2058911a31c8e845..1a87edf286921de9b182f3d19adb6bb63ba85ebd:/docs/latex/wx/module.tex diff --git a/docs/latex/wx/module.tex b/docs/latex/wx/module.tex index 3bd382e920..b3f58fec88 100644 --- a/docs/latex/wx/module.tex +++ b/docs/latex/wx/module.tex @@ -1,64 +1,61 @@ \section{\class{wxModule}}\label{wxmodule} -The module system is a very simple mechanism to allow applications (and parts of wxWindows itself) to -define initialization and cleanup functions that are automatically called on wxWindows +The module system is a very simple mechanism to allow applications (and parts of wxWidgets itself) to +define initialization and cleanup functions that are automatically called on wxWidgets startup and exit. To define a new kind of module, derive a class from wxModule, override the OnInit and OnExit functions, and add the DECLARE\_DYNAMIC\_CLASS and IMPLEMENT\_DYNAMIC\_CLASS to header and implementation files -(which can be the same file). On initialization, wxWindows will find all classes derived from wxModule, -create an instance of each, and call each OnInit function. On exit, wxWindows will call the OnExit +(which can be the same file). On initialization, wxWidgets will find all classes derived from wxModule, +create an instance of each, and call each OnInit function. On exit, wxWidgets will call the OnExit function for each module instance. -\wxheading{Derived from} - -\helpref{wxObject}{wxobject} +Note that your module class does not have to be in a header file. -\latexignore{\rtfignore{\wxheading{Members}}} +For example: -\membersection{wxModule::wxModule}\label{wxmoduleconstr} +\begin{verbatim} + // A module to allow DDE initialization/cleanup + // without calling these functions from app.cpp or from + // the user's application. -\func{}{wxModule}{\void} - -Constructs a wxModule object. + class wxDDEModule: public wxModule + { + DECLARE_DYNAMIC_CLASS(wxDDEModule) + public: + wxDDEModule() {} + bool OnInit() { wxDDEInitialize(); return true; }; + void OnExit() { wxDDECleanUp(); }; + }; -\membersection{wxModule::\destruct{wxModule}} + IMPLEMENT_DYNAMIC_CLASS(wxDDEModule, wxModule) +\end{verbatim} -\func{}{\destruct{wxModule}}{\void} - -Destructor. - -\membersection{wxModule::CleanupModules}\label{wxmodulecleanupmodules} - -\func{static void}{CleanupModules}{\void} +\wxheading{Derived from} -Calls Exit for each module instance. Called by wxWindows on exit, so there is no -need for an application to call it. +\helpref{wxObject}{wxobject} -\membersection{wxModule::Exit}\label{wxmoduleexit} +\wxheading{Include files} -\func{void}{Exit}{\void} + -Calls OnExit. This function is called by wxWindows and should not need to be called -by an application. +\latexignore{\rtfignore{\wxheading{Members}}} -\membersection{wxModule::Init}\label{wxmoduleinit} +\membersection{wxModule::wxModule}\label{wxmodulector} -\func{bool}{Init}{\void} +\func{}{wxModule}{\void} -Calls OnInit. This function is called by wxWindows and should not need to be called -by an application. +Constructs a wxModule object. -\membersection{wxModule::InitializeModules}\label{wxmoduleinitializemodules} +\membersection{wxModule::\destruct{wxModule}}\label{wxmoduledtor} -\func{static bool}{InitializeModules}{\void} +\func{}{\destruct{wxModule}}{\void} -Calls Init for each module instance. Called by wxWindows on startup, so there is no -need for an application to call it. +Destructor. \membersection{wxModule::OnExit}\label{wxmoduleonexit} -\func{virtual bool}{OnExit}{\void} +\func{virtual void}{OnExit}{\void} Provide this function with appropriate cleanup for your module. @@ -67,19 +64,5 @@ Provide this function with appropriate cleanup for your module. \func{virtual bool}{OnInit}{\void} Provide this function with appropriate initialization for your module. If the function -returns FALSE, wxWindows will exit immediately. - -\membersection{wxModule::RegisterModule}\label{wxmoduleregistermodule} - -\func{static void}{RegisterModule}{\param{wxModule*}{ module}} - -Registers this module with wxWindows. Called by wxWindows on startup, so there is no -need for an application to call it. - -\membersection{wxModule::RegisterModules}\label{wxmoduleregistermodules} - -\func{static bool}{RegisterModules}{\void} - -Creates instances of and registers all modules. Called by wxWindows on startup, so there is no -need for an application to call it. +returns false, wxWidgets will exit immediately.