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/parmpropdlg.h

127 lines
3.4 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 PARMPROPDLG_H
#define PARMPROPDLG_H
#include <kdialogbase.h>
#include <kcombobox.h>
#include <tqgroupbox.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqradiobutton.h>
#include <tqlineedit.h>
#include <tqbuttongroup.h>
#include <tqmultilineedit.h>
#include <tqcombobox.h>
#include "../attribute.h"
class UMLDoc;
/**
* Displays a dialog box that displays properties of a paramater.
* You need to make sure that @ref UMLDoc is made to be the
* parent.
*
* @short A properties dialog box for a parameter.
* @author Paul Hensgen <phensgen@techie.com>
* Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class ParmPropDlg : public KDialogBase {
TQ_OBJECT
public:
/**
* Constructs a ParmPropDlg.
*
* @param parent The parent of the dialog.
* @param a The parameter to represent.
*/
ParmPropDlg(TQWidget * parent, UMLDoc * doc, UMLAttribute * a);
/**
* Standard deconstructor.
*/
~ParmPropDlg();
/**
* Returns the documentation.
*
* @return Returns the documentation.
*/
TQString getDoc() {
return m_pDoc -> text();
}
/**
* Return the name of the parameter.
*
* @return Return the name of the parameter.
*/
TQString getName() {
return m_pNameLE -> text();
}
/**
* Return the initial value of the parameter.
*
* @return Return the initial value of the parameter.
*/
TQString getInitialValue() {
return m_pInitialLE -> text();
}
/**
* Return the type name of the parameter.
*
* @return Return the type name of the parameter.
*/
TQString getTypeName() {
return m_pTypeCB -> currentText();
}
/**
* Return the kind of the parameter (in, out, or inout).
*
* @return The Uml::Parameter_Direction corresponding to
* the selected "Kind" radiobutton.
*/
Uml::Parameter_Direction getParmKind();
public slots:
void slotOk();
protected:
/**
* Inserts @p type into the type-combobox as well as its completion object.
*/
void insertType( const TQString& type, int index = -1 );
/**
* Inserts @p type into the stereotype-combobox as well as its completion object.
*/
void insertStereotype( const TQString& type, int index = -1 );
private:
TQGroupBox * m_pParmGB, * m_pDocGB;
TQButtonGroup *m_pKind;
TQRadioButton * m_pIn, * m_pOut, *m_pInOut;
TQLabel * m_pTypeL, * m_pNameL, * m_pInitialL, * m_pStereoTypeL;
KComboBox * m_pTypeCB, * m_pStereoTypeCB;
TQLineEdit * m_pNameLE, * m_pInitialLE;
TQMultiLineEdit * m_pDoc;
UMLDoc * m_pUmldoc;
UMLAttribute * m_pAtt;
};
#endif