// Ryzom - MMORPG Framework // Copyright (C) 2010 Winch Gate Property Limited // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . #ifndef NLGEORGES_ITEM_ELT_LIST_H #define NLGEORGES_ITEM_ELT_LIST_H #include "item_elt.h" namespace NLOLDGEORGES { class CItemEltAtom; class CItemEltStruct; class CItemEltList : public CItemElt { protected: CItemElt* piemodel; std::vector< CItemElt* > vpie; public: CItemEltList( CLoader* const _pl ); virtual ~CItemEltList(); void BuildItem( CItemElt* const _pie ); void Clear(); virtual CStringEx GetFormula() const; virtual void FillParent( const CFormBodyElt* const _pfbe ); virtual void FillCurrent(const CFormBodyElt* const _pfbe ); virtual CItemElt* Clone(); virtual CFormBodyElt* BuildForm(); virtual unsigned int GetNbElt() const; virtual CItemElt* GetElt( const unsigned int _index ) const; virtual CItemElt* GetElt( const CStringEx sxname ) const; void NewElt(); void AddElt( const CItemElt* const _pie ); void DelElt( CItemElt* const _pie ); void VerifyName(); virtual bool SetModified( const unsigned int _index ); virtual void SetModified( const bool _b ); virtual unsigned int GetNbChild (); virtual CItemElt* GetChild (unsigned int _index); }; } // NLGEORGES #endif // NLGEORGES_ITEM_ELT_LIST_H