00001 // 00002 // SchemaMember.h 00003 // 00004 // Copyright (c) Shareaza Development Team, 2002-2005. 00005 // This file is part of SHAREAZA (www.shareaza.com) 00006 // 00007 // Shareaza is free software; you can redistribute it 00008 // and/or modify it under the terms of the GNU General Public License 00009 // as published by the Free Software Foundation; either version 2 of 00010 // the License, or (at your option) any later version. 00011 // 00012 // Shareaza is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // GNU General Public License for more details. 00016 // 00017 // You should have received a copy of the GNU General Public License 00018 // along with Shareaza; if not, write to the Free Software 00019 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 // 00021 00022 #if !defined(AFX_SCHEMAMEMBER_H__0168BCBB_F511_4752_A529_78BF75A74777__INCLUDED_) 00023 #define AFX_SCHEMAMEMBER_H__0168BCBB_F511_4752_A529_78BF75A74777__INCLUDED_ 00024 00025 #pragma once 00026 00027 class CSchema; 00028 class CXMLElement; 00029 00030 00031 class CSchemaMember 00032 { 00033 // Construction 00034 public: 00035 CSchemaMember(CSchema* pSchema); 00036 virtual ~CSchemaMember(); 00037 00038 // Attributes 00039 public: 00040 CSchema* m_pSchema; 00041 CString m_sName; 00042 CString m_sType; 00043 CString m_sTitle; 00044 BOOL m_bElement; 00045 BOOL m_bNumeric; 00046 BOOL m_bIndexed; 00047 BOOL m_bSearched; 00048 public: 00049 int m_nMinOccurs; 00050 int m_nMaxOccurs; 00051 int m_nMaxLength; 00052 public: 00053 BOOL m_bPrompt; 00054 int m_nFormat; 00055 int m_nColumnWidth; 00056 int m_nColumnAlign; 00057 public: 00058 CString m_sLinkURI; 00059 CString m_sLinkName; 00060 public: 00061 CStringList m_pItems; 00062 00063 // Operations 00064 public: 00065 POSITION GetItemIterator() const; 00066 CString GetNextItem(POSITION& pos) const; 00067 int GetItemCount() const; 00068 CString GetValueFrom(CXMLElement* pElement, LPCTSTR pszDefault = NULL, BOOL bFormat = FALSE) const; 00069 void SetValueTo(CXMLElement* pBase, LPCTSTR pszValue); 00070 protected: 00071 BOOL LoadSchema(CXMLElement* pRoot, CXMLElement* pElement); 00072 BOOL LoadType(CXMLElement* pType); 00073 BOOL LoadDescriptor(CXMLElement* pXML); 00074 BOOL LoadDisplay(CXMLElement* pXML); 00075 00076 friend class CSchema; 00077 }; 00078 00079 enum 00080 { 00081 smfNone, smfTimeMMSS, smfBitrate, smfFrequency, smfTimeHHMMSSdec 00082 }; 00083 00084 #endif // !defined(AFX_SCHEMAMEMBER_H__0168BCBB_F511_4752_A529_78BF75A74777__INCLUDED_)