summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/dialogs/umloperationdialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:51:49 +0000
commit4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch)
treeb0a7cd1c184f0003c0292eb416ed27f674f9cc43 /umbrello/umbrello/dialogs/umloperationdialog.h
parent1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff)
downloadtdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz
tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'umbrello/umbrello/dialogs/umloperationdialog.h')
-rw-r--r--umbrello/umbrello/dialogs/umloperationdialog.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/umbrello/umbrello/dialogs/umloperationdialog.h b/umbrello/umbrello/dialogs/umloperationdialog.h
index 1dee99ab..5d6d8ef9 100644
--- a/umbrello/umbrello/dialogs/umloperationdialog.h
+++ b/umbrello/umbrello/dialogs/umloperationdialog.h
@@ -42,7 +42,7 @@ public:
/**
* Constructor
*/
- UMLOperationDialog( QWidget * parent, UMLOperation * pOperation );
+ UMLOperationDialog( TQWidget * parent, UMLOperation * pOperation );
/**
* Deconstructor
@@ -64,7 +64,7 @@ protected:
/**
* Inserts @p type into the type-combobox as well as its completion object.
*/
- void insertType( const QString& type, int index = -1 );
+ void insertType( const TQString& type, int index = -1 );
/**
* The operation to represent.
@@ -84,28 +84,28 @@ protected:
/**
* Inserts @p stereotype into the stereotype-combobox as well as its completion object.
*/
- void insertStereotype( const QString& type, int index = -1 );
+ void insertStereotype( const TQString& type, int index = -1 );
//GUI widgets
- QGroupBox * m_pParmsGB, * m_pGenGB;
- QListBox * m_pParmsLB;
- QButtonGroup * m_pScopeBG;
- QRadioButton * m_pPublicRB, * m_pPrivateRB, * m_pProtectedRB, *m_pImplementationRB;
- QLabel * m_pRtypeL, * m_pNameL, * m_pStereoTypeL;
+ TQGroupBox * m_pParmsGB, * m_pGenGB;
+ TQListBox * m_pParmsLB;
+ TQButtonGroup * m_pScopeBG;
+ TQRadioButton * m_pPublicRB, * m_pPrivateRB, * m_pProtectedRB, *m_pImplementationRB;
+ TQLabel * m_pRtypeL, * m_pNameL, * m_pStereoTypeL;
KComboBox * m_pRtypeCB, * m_pStereoTypeCB;
- QLineEdit * m_pNameLE;
- QCheckBox * m_pAbstractCB;
- QCheckBox * m_pStaticCB;
- QCheckBox * m_pQueryCB;
- QPushButton* m_pDeleteButton;
- QPushButton* m_pPropertiesButton;
+ TQLineEdit * m_pNameLE;
+ TQCheckBox * m_pAbstractCB;
+ TQCheckBox * m_pStaticCB;
+ TQCheckBox * m_pQueryCB;
+ TQPushButton* m_pDeleteButton;
+ TQPushButton* m_pPropertiesButton;
KArrowButton* m_pUpButton;
KArrowButton* m_pDownButton;
public slots:
- void slotParmRightButtonPressed(QListBoxItem *item, const QPoint &p);
- void slotParmRightButtonClicked(QListBoxItem *item, const QPoint &p);
- void slotParmDoubleClick(QListBoxItem *item);
+ void slotParmRightButtonPressed(TQListBoxItem *item, const TQPoint &p);
+ void slotParmRightButtonClicked(TQListBoxItem *item, const TQPoint &p);
+ void slotParmDoubleClick(TQListBoxItem *item);
void slotParmPopupMenuSel(int id);
void slotNewParameter();
void slotDeleteParameter();
@@ -116,7 +116,7 @@ public slots:
/**
* enables or disables buttons
*/
- void slotParamsBoxClicked(QListBoxItem* parameterItem);
+ void slotParamsBoxClicked(TQListBoxItem* parameterItem);
/**
* I don't think this is used, but if we had an apply button
@@ -128,7 +128,7 @@ public slots:
* Used when the OK button is clicked. Calls apply()
*/
void slotOk();
- void slotNameChanged( const QString & );
+ void slotNameChanged( const TQString & );
};