You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/umbrello/umbrello/dialogs/classgenpage.h

111 lines
3.7 KiB

/***************************************************************************
* *
* 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) 2002-2006 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
#ifndef CLASSGENPAGE_H
#define CLASSGENPAGE_H
#include <tqwidget.h>
class TQGroupBox;
class TQLabel;
class TQLineEdit;
class TQButtonGroup;
class TQMultiLineEdit;
class TQRadioButton;
class TQCheckBox;
class KComboBox;
class UMLObject;
class UMLWidget;
class ObjectWidget;
class UMLDoc;
/**
* Displays properties of a UMLObject in a dialog box. This is not usually directly
* called. The class @ref ClassPropDlg will set this up for you.
*
* @short Display properties on a UMLObject.
* @author Paul Hensgen <phensgen@techie.com>
* Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class ClassGenPage : public TQWidget {
TQ_OBJECT
public:
/**
* Sets up the ClassGenPage.
*
* @param d The UMLDoc which controls controls object creation.
* @param parent The parent to the ClassGenPage.
* @param o The UMLObject to display the properties of.
*/
ClassGenPage(UMLDoc *d, TQWidget *parent, UMLObject * o);
/**
* Sets up the ClassGenPage for an ObjectWidget
*
* @param d The UMLDoc which controls controls object creation.
* @param parent The parent to the ClassGenPage.
* @param o The ObjectWidget to display the properties of.
*/
ClassGenPage(UMLDoc *d, TQWidget *parent, ObjectWidget * o);
/**
* Sets up the ClassGenPage for a UMLWidget instance (used
* for component instances on deployment diagrams)
*
* @param d The UMLDoc which controls controls object creation.
* @param parent The parent to the ClassGenPage.
* @param widget The UMLWidget to display the properties of.
*/
ClassGenPage(UMLDoc* d, TQWidget* parent, UMLWidget* widget);
/**
* Standard deconstructor.
*/
~ClassGenPage();
/**
* Will move information from the dialog into the object.
* Call when the ok or apply button is pressed.
*/
void updateObject();
private:
TQGroupBox *m_pDocGB;
TQButtonGroup * m_pButtonBG;
TQLabel * m_pNameL, * m_pInstanceL, * m_pStereoTypeL, * m_pPackageL;
TQLineEdit * m_pClassNameLE, *m_pInstanceLE, * m_pPackageLE;
KComboBox * m_pStereoTypeCB;
TQRadioButton *m_pPublicRB, *m_pPrivateRB, *m_pProtectedRB, *m_pImplementationRB;
TQCheckBox * m_pMultiCB, * m_pDrawActorCB, * m_pAbstractCB, * m_pDeconCB;
TQMultiLineEdit * m_pDoc;
UMLObject * m_pObject;
UMLDoc * m_pUmldoc;
ObjectWidget * m_pWidget;
UMLWidget* m_pInstanceWidget;
TQButtonGroup* m_pDrawAsBG;
TQRadioButton* m_pDefaultRB,* m_pFileRB,* m_pLibraryRB,* m_pTableRB;
TQCheckBox* m_pExecutableCB;
void insertStereotype(const TQString& type, int index = -1);
public slots:
/**
* When the draw as actor check box is toggled, the draw
* as multi instance need to be enabled/disabled. They
* both can't be available at the same time.
*/
void slotActorToggled( bool state );
};
#endif