|
From: Emilien K. <cur...@us...> - 2005-05-14 12:45:42
|
Update of /cvsroot/wxdevcenter/StdPlugin/include/wxDevCenter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20640/include/wxDevCenter Modified Files: StdPlugin.h Log Message: Transition to the new feature/plugin system based on the Element class. Index: StdPlugin.h =================================================================== RCS file: /cvsroot/wxdevcenter/StdPlugin/include/wxDevCenter/StdPlugin.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** StdPlugin.h 4 Mar 2005 16:35:16 -0000 1.4 --- StdPlugin.h 14 May 2005 12:45:32 -0000 1.5 *************** *** 30,59 **** #define STD_DLL_PLUGIN WXDC_DLL_EXPORT - - namespace StdPlugin - { - - /** Plugin personnalisé. - * On dérive wxDevCenter::Plugin juste pour implémenter une boite de dialogue "A propos de" personnalisée. - */ - class StdPlugin : public wxDevCenter::Plugin - { - public: - StdPlugin(); - virtual wxPanel* CreateAboutPanel(wxWindow* pParent, wxWindowID id); - virtual void InitPlugin(); - virtual void FinalPlugin(); - - }; - - - /** Panneau "A propos de" personnalisé. - */ - class StdPluginAbout : public wxPanel - { - public: - StdPluginAbout(wxWindow* parent, wxWindowID id); - }; - - - } --- 30,31 ---- |