Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

skTreeNodeObject.h

00001 /*
00002   Copyright 1996-2003
00003   Simon Whiteside
00004 
00005     This library is free software; you can redistribute it and/or
00006     modify it under the terms of the GNU Lesser General Public
00007     License as published by the Free Software Foundation; either
00008     version 2 of the License, or (at your option) any later version.
00009 
00010     This library is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013     Lesser General Public License for more details.
00014 
00015     You should have received a copy of the GNU Lesser General Public
00016     License along with this library; if not, write to the Free Software
00017     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018 
00019 * $Id: skTreeNodeObject_8h-source.html,v 1.17 2004/12/17 21:31:14 sdw Exp $
00020 */
00021 
00022 
00023 #ifndef skTREENODEOBJECT_H
00024 #define skTREENODEOBJECT_H
00025 
00026 #include "skExecutable.h"
00027 class CLASSEXPORT skTreeNode;
00028 class CLASSEXPORT skMethodTable;
00029 
00030 #define TREENODE_TYPE   1
00031 
00042 class CLASSEXPORT skTreeNodeObject : public skExecutable
00043 {
00044  public:
00048   IMPORT_C skTreeNodeObject();
00055   IMPORT_C skTreeNodeObject(const skString& location,skTreeNode * node,bool created);
00059   virtual IMPORT_C ~skTreeNodeObject();
00063   virtual IMPORT_C int executableType() const;                  
00067   virtual IMPORT_C int intValue() const;
00068 #ifdef USE_FLOATING_POINT
00069 
00072   virtual IMPORT_C float floatValue() const;
00073 #endif
00074 
00077   virtual IMPORT_C bool boolValue() const;
00081   virtual IMPORT_C Char charValue() const;
00085   virtual IMPORT_C skString strValue() const;
00095   virtual IMPORT_C bool setValue(const skString& name,const skString& attribute,const skRValue& value);
00105   virtual IMPORT_C bool setValueAt(const skRValue& array_index,const skString& attribute,const skRValue& value); 
00112   virtual IMPORT_C bool getValue(const skString& name,const skString& attribute,skRValue& v);
00119   virtual IMPORT_C bool getValueAt(const skRValue& array_index,const skString& attribute,skRValue& value);
00131   virtual IMPORT_C bool method(const skString& name,skRValueArray& args,skRValue& ret,skExecutableContext& ctxt);
00135   IMPORT_C skTreeNode * getNode();
00139   IMPORT_C void setNode(const skString& location,skTreeNode * node,bool created);
00140 #ifdef __SYMBIAN32__
00141 
00146   IMPORT_C void setNode(const TDesC& location,skTreeNode * node,bool created);
00147 #endif
00148 
00151   virtual IMPORT_C bool equals(const skiExecutable * o) const;
00155   IMPORT_C skString getLocation() const;
00161   virtual IMPORT_C skExecutableIterator * createIterator(const skString& qualifier);
00166   virtual IMPORT_C skExecutableIterator * createIterator();
00171   virtual IMPORT_C skString getSource(const skString& location);
00177   virtual IMPORT_C void getInstanceVariables(skRValueTable& table);
00181   IMPORT_C void setAddIfNotPresent(bool enable);
00185   IMPORT_C bool getAddIfNotPresent();
00186  protected:
00187    friend class skTreeNodeObjectEnumerator;
00195   virtual IMPORT_C skTreeNodeObject * createTreeNodeObject(const skString& location,skTreeNode * node,bool created);
00199   skString m_Location;
00200  private:
00204   skTreeNode * m_Node;
00208   bool m_Created;
00212   skMethodTable * m_MethodCache;
00217   bool m_AddIfNotPresent;
00221   skTreeNodeObject(const skTreeNodeObject&);
00225   skTreeNodeObject& operator=(const skTreeNodeObject&);
00226 };
00227 #endif

Generated on Fri Dec 17 20:27:34 2004 for Simkin by doxygen1.3