You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.5 KiB
C++
86 lines
2.5 KiB
C++
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* copyright (C) 2003-2006 *
|
|
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
|
|
***************************************************************************/
|
|
|
|
#ifndef ENUMLITERAL_H
|
|
#define ENUMLITERAL_H
|
|
|
|
#include "classifierlistitem.h"
|
|
|
|
/**
|
|
* This class is used to set up information for an enum literal. Enum
|
|
* literals are the values that enums can be set to.
|
|
*
|
|
* @short Sets up attribute information.
|
|
* @author Paul Hensgen <phensgen@techie.com>
|
|
* @see UMLObject
|
|
* Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
|
|
*/
|
|
|
|
class UMLEnumLiteral : public UMLClassifierListItem {
|
|
public:
|
|
/**
|
|
* Sets up an enum literal.
|
|
*
|
|
* @param parent The parent of this UMLEnumLiteral.
|
|
* @param name The name of this UMLEnumLiteral.
|
|
* @param id The unique id given to this UMLEnumLiteral.
|
|
*/
|
|
UMLEnumLiteral(const UMLObject* parent,
|
|
const TQString& name, Uml::IDType id = Uml::id_None);
|
|
|
|
/**
|
|
* Sets up an enum literal.
|
|
*
|
|
* @param parent The parent of this UMLEnumLiteral.
|
|
*/
|
|
UMLEnumLiteral(const UMLObject* parent);
|
|
|
|
/**
|
|
* Overloaded '==' operator
|
|
*/
|
|
bool operator==(UMLEnumLiteral &rhs);
|
|
|
|
/**
|
|
* Copy the internal presentation of this object into the new
|
|
* object.
|
|
*/
|
|
virtual void copyInto(UMLEnumLiteral *rhs) const;
|
|
|
|
/**
|
|
* Make a clone of this object.
|
|
*/
|
|
virtual UMLObject* clone() const;
|
|
|
|
/**
|
|
* destructor
|
|
*/
|
|
virtual ~UMLEnumLiteral();
|
|
|
|
/**
|
|
* Creates the <UML:EnumLiteral> XMI element.
|
|
*/
|
|
void saveToXMI(TQDomDocument& qDoc, TQDomElement& qElement);
|
|
|
|
/**
|
|
* Display the properties configuration dialog for the enum literal.
|
|
*/
|
|
bool showPropertiesDialog(TQWidget* parent);
|
|
|
|
protected:
|
|
/**
|
|
* Loads the <UML:EnumLiteral> XMI element (empty.)
|
|
*/
|
|
bool load(TQDomElement& element);
|
|
|
|
};
|
|
|
|
#endif
|