00001
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef _NLGEORGES_FORM_H
00027 #define _NLGEORGES_FORM_H
00028
00029 #include "nel/misc/types_nl.h"
00030 #include "nel/georges/u_form.h"
00031 #include "form_elm.h"
00032 #include "header.h"
00033
00034 extern bool convertFormFile (const char *oldFileName, const char *newFileName);
00035
00036 namespace NLGEORGES
00037 {
00038
00039 class UFormElm;
00040
00044 class CForm : public UForm
00045 {
00046 friend class CFormLoader;
00047 friend bool convertFormFile (const char *oldFileName, const char *newFileName);
00048 public:
00049
00050 enum { HeldElementCount = 4 };
00051
00052
00053 UFormElm& getRootNode ();
00054 const UFormElm& getRootNode () const;
00055 const std::string &getComment () const;
00056
00057
00058 #pragma warning (disable : 4355)
00059 CForm ();
00060 ~CForm ();
00061
00062
00063 void clean ();
00064
00065
00066
00067
00068 CFileHeader Header;
00069
00070
00071
00073 CFormElmStruct Elements;
00074
00076 CFormElmStruct *HeldElements[HeldElementCount];
00077
00078
00079
00080 void write (xmlDocPtr doc, const char *filename, bool georges4CVS);
00081
00082
00083
00084
00085 bool insertParent (uint before, const char *filename, CForm *parent);
00086
00087
00088 void removeParent (uint parent);
00089
00090
00091 CForm * getParent (uint parent) const;
00092 const std::string &getParentFilename (uint parent) const;
00093
00094
00095 uint getParentCount () const;
00096
00097
00098 void clearParents ();
00099
00100
00101 const std::string &getFilename () const;
00102
00103
00104 void warning (bool exception, const char *function, const char *format, ... ) const;
00105
00106 private:
00107
00108
00109 class CParent
00110 {
00111 public:
00112 std::string ParentFilename;
00113 NLMISC::CSmartPtr<CForm> Parent;
00114 };
00115
00117 std::vector<CParent> ParentList;
00118
00119
00120
00121 void read (xmlNodePtr node, CFormLoader &loader, CFormDfn *dfn, const char *filename);
00122
00123
00124 void readParent (const char *parent, CFormLoader &loader);
00125
00126
00127 std::string _Filename;
00128 };
00129
00130 }
00131
00132 #endif // _NLGEORGES_FORM_H
00133