mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
93 lines
2.7 KiB
C++
93 lines
2.7 KiB
C++
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these librararies and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/* $XConsortium: Element.h /main/5 1996/08/21 15:50:08 drk $ */
|
|
#ifndef _Element_h
|
|
#define _Element_h
|
|
|
|
#ifndef CDE_NEXT
|
|
#else
|
|
#include "dti_cc/CC_Slist.h"
|
|
#endif
|
|
|
|
#include "SymTab.h"
|
|
|
|
/* **************************************************************
|
|
class Element
|
|
|
|
this is the structure passed from the node parser to the Resolver.
|
|
It contains the Element GI, and the attribute list for the element
|
|
************************************************************** */
|
|
|
|
class Attribute;
|
|
class AttributeList;
|
|
|
|
class Element
|
|
{
|
|
public:
|
|
Element(const Element&);
|
|
Element(const Symbol &gi,
|
|
unsigned int sibling_number = 0,
|
|
AttributeList *attrs = 0,
|
|
AttributeList *olias_attrs = 0,
|
|
unsigned int relative_sibling_number = 0
|
|
);
|
|
~Element();
|
|
|
|
const Symbol &gi() const { return f_gi ; }
|
|
|
|
const Attribute *get_attribute(const Symbol &name) const ;
|
|
const Attribute *get_olias_attribute(const Symbol &name) const;
|
|
|
|
unsigned int sibling_number() const { return f_sibling_number ; }
|
|
unsigned int relative_sibling_number() const
|
|
{ return f_relative_sibling_number; }
|
|
|
|
int last_child() const { return f_last_child; }
|
|
int relatively_last_child() const
|
|
{ return f_relatively_last_child; }
|
|
|
|
ostream &print(ostream &) const ;
|
|
|
|
private:
|
|
Symbol f_gi ;
|
|
unsigned int f_sibling_number ; // counting all children of a parent
|
|
AttributeList *f_attributes;
|
|
AttributeList *f_olias_attributes;
|
|
unsigned int f_freeAttrLists;
|
|
unsigned int f_relative_sibling_number ; // counting all
|
|
// consecutive children
|
|
// of same types of a
|
|
// parent
|
|
int f_last_child;
|
|
int f_relatively_last_child;
|
|
};
|
|
|
|
inline
|
|
ostream &operator<<(ostream &o, const Element &e)
|
|
{
|
|
return e.print(o);
|
|
}
|
|
|
|
|
|
#endif /* _Element_h */
|
|
/* DO NOT ADD ANY LINES AFTER THIS #endif */
|