|
From: Emilien K. <cur...@us...> - 2005-03-07 15:23:16
|
Update of /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28522/include/wxDevCenter Modified Files: AboutBox.h Application.h Config.h DocManager.h DocView.h FileSystemCtrl.h FileSystemStandard.h FileTools.h Frame.h MDIFrame.h MainFrame.h Plugin.h Project.h StatusBar.h Log Message: Correction de la doc doxygen. Index: Project.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/Project.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Project.h 4 Mar 2005 16:09:46 -0000 1.3 --- Project.h 7 Mar 2005 15:23:02 -0000 1.4 *************** *** 43,51 **** /** Classe de base des projets. * A dériver pour implémenter de nouveaux types de projets. ! * \warning Les classes de projets doivent impérativement être RTTI-dynamiques et leurs constructeurs ne peuvent prendre aucun paramètre. */ class WXDC_DLL_BASE Project : public wxObject { ! DECLARE_DYNAMIC_CLASS(Project) // Données membres : protected: --- 43,51 ---- /** Classe de base des projets. * A dériver pour implémenter de nouveaux types de projets. ! * @warning Les classes de projets doivent impérativement être RTTI-dynamiques et leurs constructeurs ne peuvent prendre aucun paramètre. */ class WXDC_DLL_BASE Project : public wxObject { ! DECLARE_DYNAMIC_CLASS(Project); // Données membres : protected: Index: Config.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/Config.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Config.h 23 Feb 2005 14:43:41 -0000 1.6 --- Config.h 7 Mar 2005 15:23:02 -0000 1.7 *************** *** 1,4 **** /** ! * @file Config.h * @author Cursor * --- 1,4 ---- /** ! * @file wxDevCenter/Config.h * @author Cursor * Index: MainFrame.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/MainFrame.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MainFrame.h 22 Feb 2005 16:24:04 -0000 1.3 --- MainFrame.h 7 Mar 2005 15:23:02 -0000 1.4 *************** *** 50,54 **** friend class Application; /** Déclare la table d'interception des évènements de fenêtres.*/ ! DECLARE_EVENT_TABLE() protected: --- 50,54 ---- friend class Application; /** Déclare la table d'interception des évènements de fenêtres.*/ ! DECLARE_EVENT_TABLE(); protected: Index: StatusBar.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/StatusBar.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** StatusBar.h 15 Jan 2005 15:33:23 -0000 1.3 --- StatusBar.h 7 Mar 2005 15:23:02 -0000 1.4 *************** *** 36,40 **** class StatusBar : public wxStatusBar { ! DECLARE_EVENT_TABLE() public: StatusBar(wxWindow* parent); --- 36,40 ---- class StatusBar : public wxStatusBar { ! DECLARE_EVENT_TABLE(); public: StatusBar(wxWindow* parent); *************** *** 71,75 **** BEGIN_DECLARE_EVENT_TYPES() DECLARE_EXPORTED_EVENT_TYPE(WXDC_DLL_BASE, WXDC_EVT_STATUS_PANEL, 12010) ! END_DECLARE_EVENT_TYPES() typedef void (wxEvtHandler::*StatusEventFunction)(StatusEvent&); --- 71,75 ---- BEGIN_DECLARE_EVENT_TYPES() DECLARE_EXPORTED_EVENT_TYPE(WXDC_DLL_BASE, WXDC_EVT_STATUS_PANEL, 12010) ! END_DECLARE_EVENT_TYPES(); typedef void (wxEvtHandler::*StatusEventFunction)(StatusEvent&); Index: Application.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/Application.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Application.h 4 Mar 2005 16:09:46 -0000 1.7 --- Application.h 7 Mar 2005 15:23:02 -0000 1.8 *************** *** 203,207 **** bool SaveDocument(Document* pDoc, bool bForceChooseName=false); /** Crée une archive (pointeur vers Archive) pour la sérialisation des documents. ! * @retourne l'adresse de l'archive et NULL si erreur. */ Archive* CreateDocumentArchive(FilePath &strDocPath, unsigned int nMode); --- 203,207 ---- bool SaveDocument(Document* pDoc, bool bForceChooseName=false); /** Crée une archive (pointeur vers Archive) pour la sérialisation des documents. ! * @return Retourne l'adresse de l'archive et NULL si erreur. */ Archive* CreateDocumentArchive(FilePath &strDocPath, unsigned int nMode); Index: Frame.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/Frame.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Frame.h 15 Jan 2005 15:33:23 -0000 1.3 --- Frame.h 7 Mar 2005 15:23:02 -0000 1.4 *************** *** 45,54 **** ! class WXDC_DLL_BASE ViewEvent : public wxEvent { private: ViewEvent& operator=(const ViewEvent& event); View *m_pOldView, *m_pNewView; public: --- 45,60 ---- ! /** Evènement prévenant d'un chan,gement de vue active.*/ class WXDC_DLL_BASE ViewEvent : public wxEvent { private: + /** Opérateur de copie. + * @param event 2vènement à copier. + * @return Référence de l'évènement courant. + */ ViewEvent& operator=(const ViewEvent& event); + /** Ancienne vue active.*/ View *m_pOldView, + /** Nouvelle vue active.*/ *m_pNewView; public: *************** *** 56,63 **** --- 62,72 ---- wxEvent* Clone(void) const; + /** @name Accesseurs. + * @{ */ View* GetOldView(){return m_pOldView;} View* GetNewView(){return m_pNewView;} void SetOldView(View *pOldView=NULL){m_pOldView=pOldView;} void SetNewView(View *pNewView=NULL){m_pNewView=pNewView;} + /** @} */ }; Index: Plugin.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/Plugin.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Plugin.h 3 Dec 2004 16:47:44 -0000 1.1 --- Plugin.h 7 Mar 2005 15:23:02 -0000 1.2 *************** *** 103,112 **** /** Retourne un plugin. * @param nIndex Indice du plugin. ! * @param Référence vers un plugin. */ Plugin& GetPlugin(unsigned int nIndex){return *Item(nIndex);} /** Retourne un plugin. * @param nIndex Indice du plugin. ! * @param Référence vers un plugin. */ Plugin& operator[](unsigned int nIndex){return *Item(nIndex);} --- 103,112 ---- /** Retourne un plugin. * @param nIndex Indice du plugin. ! * @return Référence vers un plugin. */ Plugin& GetPlugin(unsigned int nIndex){return *Item(nIndex);} /** Retourne un plugin. * @param nIndex Indice du plugin. ! * @return Référence vers un plugin. */ Plugin& operator[](unsigned int nIndex){return *Item(nIndex);} Index: MDIFrame.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/MDIFrame.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MDIFrame.h 12 Jan 2005 13:50:54 -0000 1.2 --- MDIFrame.h 7 Mar 2005 15:23:02 -0000 1.3 *************** *** 39,43 **** { friend class DocManager; ! DECLARE_EVENT_TABLE() protected: // Fonctions d'évenements --- 39,43 ---- { friend class DocManager; ! DECLARE_EVENT_TABLE(); protected: // Fonctions d'évenements Index: DocManager.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/DocManager.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** DocManager.h 28 Feb 2005 15:26:23 -0000 1.8 --- DocManager.h 7 Mar 2005 15:23:02 -0000 1.9 *************** *** 141,145 **** * @param strDescription Description détaillée du document (éventuellement vide). */ ! DocTemplate(wxString strName, wxClassInfo *pDocClassInfo, wxString strExt, wxString strDescripton=""); ~DocTemplate(); --- 141,145 ---- * @param strDescription Description détaillée du document (éventuellement vide). */ ! DocTemplate(wxString strName, wxClassInfo *pDocClassInfo, wxString strExt, wxString strDescription=""); ~DocTemplate(); Index: FileSystemCtrl.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/FileSystemCtrl.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FileSystemCtrl.h 25 Feb 2005 20:58:02 -0000 1.6 --- FileSystemCtrl.h 7 Mar 2005 15:23:02 -0000 1.7 *************** *** 83,87 **** class WXDC_DLL_BASE FileSystemTreeCtrl : public wxTreeCtrl { ! DECLARE_EVENT_TABLE() protected: /** Système de fichier attaché au controle.*/ --- 83,87 ---- class WXDC_DLL_BASE FileSystemTreeCtrl : public wxTreeCtrl { ! DECLARE_EVENT_TABLE(); protected: /** Système de fichier attaché au controle.*/ *************** *** 176,180 **** class WXDC_DLL_BASE FileSystemListCtrl : public wxListCtrl { ! DECLARE_EVENT_TABLE() protected: /** Système de fichier attaché au controle.*/ --- 176,180 ---- class WXDC_DLL_BASE FileSystemListCtrl : public wxListCtrl { ! DECLARE_EVENT_TABLE(); protected: /** Système de fichier attaché au controle.*/ *************** *** 384,387 **** --- 384,389 ---- /** Ajoute un système de fichiers à la liste des systèmes de fichiers attachés. * @param pFileSystem Nouveau système de fichiers. + * @param strTitle Nom du système de fichier. + * @param bmp Image représentant le système de fichier. */ void AttachFileSystem(FileSystem *pFileSystem, wxString strTitle, wxBitmap& bmp); Index: DocView.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/DocView.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DocView.h 15 Jan 2005 15:33:23 -0000 1.6 --- DocView.h 7 Mar 2005 15:23:02 -0000 1.7 *************** *** 93,99 **** /** Déclaration de classe dynamique. Déclare la classe comme pouvant être crée dynamiquement depuis ses infos RTTI de caractère.*/ ! DECLARE_DYNAMIC_CLASS(View) /** Déclaration de la table des évènements.*/ ! DECLARE_EVENT_TABLE() protected: /** Cadre parent. Fenêtre cadre qui contient (parent) la vue.*/ --- 93,99 ---- /** Déclaration de classe dynamique. Déclare la classe comme pouvant être crée dynamiquement depuis ses infos RTTI de caractère.*/ ! DECLARE_DYNAMIC_CLASS(View); /** Déclaration de la table des évènements.*/ ! DECLARE_EVENT_TABLE(); protected: /** Cadre parent. Fenêtre cadre qui contient (parent) la vue.*/ *************** *** 186,190 **** friend class Application; /** Déclaration de classe dynamique. Déclare la classe comme pouvant être crée dynamiquement depuis ses infos RTTI de caractère.*/ ! DECLARE_DYNAMIC_CLASS(wxDevCenter::Document) protected: /** Pointeur vers le gestionnaire de document.*/ --- 186,190 ---- friend class Application; /** Déclaration de classe dynamique. Déclare la classe comme pouvant être crée dynamiquement depuis ses infos RTTI de caractère.*/ ! DECLARE_DYNAMIC_CLASS(wxDevCenter::Document); protected: /** Pointeur vers le gestionnaire de document.*/ *************** *** 308,312 **** { /** Déclaration de classe dynamique. Déclare la classe comme pouvant être crée dynamiquement depuis ses infos RTTI de caractère.*/ ! DECLARE_DYNAMIC_CLASS(wxDevCenter::ActionDocument) protected: /** Définit le type tableau dynamique d'actions ActionArray.*/ --- 308,312 ---- { /** Déclaration de classe dynamique. Déclare la classe comme pouvant être crée dynamiquement depuis ses infos RTTI de caractère.*/ ! DECLARE_DYNAMIC_CLASS(wxDevCenter::ActionDocument); protected: /** Définit le type tableau dynamique d'actions ActionArray.*/ *************** *** 522,526 **** DECLARE_EXPORTED_EVENT_TYPE(WXDC_DLL_BASE, WXDC_EVT_MINIVIEW_DRAG, 12022) DECLARE_EXPORTED_EVENT_TYPE(WXDC_DLL_BASE, WXDC_EVT_MINIVIEW_CONTEXTMENU, 12023) ! END_DECLARE_EVENT_TYPES() typedef void (wxEvtHandler::*MiniViewEventFunction)(MiniViewEvent&); --- 522,526 ---- DECLARE_EXPORTED_EVENT_TYPE(WXDC_DLL_BASE, WXDC_EVT_MINIVIEW_DRAG, 12022) DECLARE_EXPORTED_EVENT_TYPE(WXDC_DLL_BASE, WXDC_EVT_MINIVIEW_CONTEXTMENU, 12023) ! END_DECLARE_EVENT_TYPES(); typedef void (wxEvtHandler::*MiniViewEventFunction)(MiniViewEvent&); Index: FileTools.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/FileTools.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FileTools.h 25 Feb 2005 20:42:24 -0000 1.4 --- FileTools.h 7 Mar 2005 15:23:02 -0000 1.5 *************** *** 61,65 **** /** Retourne le protocole du fichier (sans le ":").*/ wxString GetFileProtocol()const; ! /** Retourne le chemin et le nom du fichier sans le protocole (dir\titre.ext).*/ wxString GetFilePath()const; /** Retourne le carctère de séparation des dossiers.*/ --- 61,65 ---- /** Retourne le protocole du fichier (sans le ":").*/ wxString GetFileProtocol()const; ! /** Retourne le chemin et le nom du fichier sans le protocole (dir/titre.ext).*/ wxString GetFilePath()const; /** Retourne le carctère de séparation des dossiers.*/ *************** *** 83,87 **** /** Retourne le nombre de niveau d'arborescence. * @param pFilenameArray Tableau des niveaux d'arborescence (de la racine à la feuille). Non rempli si NULL. ! * @retun Nombre de niveaux d'arborescences. */ unsigned int GetDirLevel(wxArrayString* pFilenameArray = NULL)const; --- 83,87 ---- /** Retourne le nombre de niveau d'arborescence. * @param pFilenameArray Tableau des niveaux d'arborescence (de la racine à la feuille). Non rempli si NULL. ! * @return Nombre de niveaux d'arborescences. */ unsigned int GetDirLevel(wxArrayString* pFilenameArray = NULL)const; Index: AboutBox.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/AboutBox.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AboutBox.h 3 Dec 2004 17:27:28 -0000 1.2 --- AboutBox.h 7 Mar 2005 15:23:02 -0000 1.3 *************** *** 34,38 **** class AboutBox : public wxDialog { ! DECLARE_EVENT_TABLE() protected: wxNotebook *m_pNotebook; --- 34,38 ---- class AboutBox : public wxDialog { ! DECLARE_EVENT_TABLE(); protected: wxNotebook *m_pNotebook; *************** *** 51,55 **** class AboutBoxAboutPage : public wxWindow { ! DECLARE_EVENT_TABLE() protected: void OnPaint(wxPaintEvent& event); --- 51,55 ---- class AboutBoxAboutPage : public wxWindow { ! DECLARE_EVENT_TABLE(); protected: void OnPaint(wxPaintEvent& event); Index: FileSystemStandard.h =================================================================== RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/FileSystemStandard.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** FileSystemStandard.h 25 Feb 2005 20:45:55 -0000 1.8 --- FileSystemStandard.h 7 Mar 2005 15:23:02 -0000 1.9 *************** *** 1,4 **** /** ! * @file FileSystemStandard.h * @author Cursor * --- 1,4 ---- /** ! * @file wxDevCenter/FileSystemStandard.h * @author Cursor * |