diff options
Diffstat (limited to 'parts/doxygen/input.cpp')
-rw-r--r-- | parts/doxygen/input.cpp | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/parts/doxygen/input.cpp b/parts/doxygen/input.cpp index 31a1d4ed..907d5cd2 100644 --- a/parts/doxygen/input.cpp +++ b/parts/doxygen/input.cpp @@ -12,7 +12,7 @@ ***************************************************************************/ #include <tqlabel.h> -#include <tqlayout.h> +#include <layout.h> #include <tqcombobox.h> #include <klineedit.h> #include <tqpushbutton.h> @@ -113,13 +113,13 @@ const char **update_xpm = (const char **)update_xpm_data; InputBool::InputBool(const TQCString &k, const TQString &text, TQWidget * parent, bool &flag) : TQWidget(parent), state(flag), key(k) { - TQHBoxLayout *tqlayout = new TQHBoxLayout(this); + TQHBoxLayout *layout = new TQHBoxLayout(this); cb = new TQCheckBox(text,this); init(); - tqlayout->addWidget(cb); - tqlayout->addStretch(1); + layout->addWidget(cb); + layout->addStretch(1); connect( cb, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(valueChanged(bool))); } @@ -154,16 +154,16 @@ void InputBool::setEnabled(bool b) InputInt::InputInt(const TQString &label, TQWidget *parent, int &val, int minVal, int maxVal) : TQWidget(parent), m_val(val), m_minVal(minVal), m_maxVal(maxVal) { - TQHBoxLayout *tqlayout = new TQHBoxLayout(this, 5); + TQHBoxLayout *layout = new TQHBoxLayout(this, 5); sp = new TQSpinBox(minVal, maxVal, 1, this); lab = new TQLabel(sp, label+":", this); init(); - tqlayout->addWidget(lab); - tqlayout->addWidget(sp); - tqlayout->addStretch(1); + layout->addWidget(lab); + layout->addWidget(sp); + layout->addStretch(1); connect(sp, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(valueChanged(int))); } @@ -203,25 +203,25 @@ InputString::InputString(const TQString & label, le = 0; br = 0; com = 0; if (m == StringFixed) { - TQHBoxLayout *tqlayout = new TQHBoxLayout(this, 5); + TQHBoxLayout *layout = new TQHBoxLayout(this, 5); com = new TQComboBox(this); lab = new TQLabel(com,label+":", this); - tqlayout->addWidget(lab); - tqlayout->addWidget(com); - tqlayout->addStretch(1); + layout->addWidget(lab); + layout->addWidget(com); + layout->addStretch(1); } else { - TQGridLayout *tqlayout = new TQGridLayout(this, 1, m==StringFree? 1 : 3, 5); + TQGridLayout *layout = new TQGridLayout(this, 1, m==StringFree? 1 : 3, 5); le = new KLineEdit(this); lab = new TQLabel(le,label+":", this); - tqlayout->addWidget(lab, 0, 0); + layout->addWidget(lab, 0, 0); le->setText(s); - tqlayout->addWidget(le, 0, 1); + layout->addWidget(le, 0, 1); if (m == StringFile || m == StringDir) { br = new TQPushButton(this); br->setPixmap(SmallIcon(m==StringFile? "document" : "folder")); TQToolTip::add(br, m==StringFile? i18n("Browse to a file") : i18n("Browse to a folder")); - tqlayout->addWidget(br, 0, 2); + layout->addWidget(br, 0, 2); } } @@ -327,29 +327,29 @@ InputStrList::InputStrList(const TQString & label, TQWidget *parent, TQStrList &sl, ListMode lm) : TQWidget(parent), strList(sl) { - TQGridLayout *tqlayout = new TQGridLayout(this, 2, 2, 5); + TQGridLayout *layout = new TQGridLayout(this, 2, 2, 5); TQWidget *dw = new TQWidget(this); /* dummy widget used for layouting */ - TQHBoxLayout *boxtqlayout = new TQHBoxLayout(dw, 0, 5); + TQHBoxLayout *boxlayout = new TQHBoxLayout(dw, 0, 5); le = new KLineEdit(dw); lab = new TQLabel(le,label+":", this ); - tqlayout->addWidget(lab, 0, 0); - boxtqlayout->addWidget(le, 1); + layout->addWidget(lab, 0, 0); + boxlayout->addWidget(le, 1); add = new TQPushButton(dw); add->setPixmap(TQPixmap( add_xpm )); TQToolTip::add(add, i18n("Add item")); - boxtqlayout->addWidget(add); + boxlayout->addWidget(add); del = new TQPushButton(dw); del->setPixmap(TQPixmap( del_xpm )); TQToolTip::add(del, i18n("Delete selected item")); - boxtqlayout->addWidget(del); + boxlayout->addWidget(del); upd = new TQPushButton(dw); upd->setPixmap(TQPixmap( update_xpm )); TQToolTip::add(upd, i18n("Update selected item")); - boxtqlayout->addWidget(upd); + boxlayout->addWidget(upd); lb = new TQListBox(this); lb->setMinimumSize(400, 100); @@ -364,17 +364,17 @@ InputStrList::InputStrList(const TQString & label, brFile = new TQPushButton(dw); brFile->setPixmap(SmallIcon("document")); TQToolTip::add(brFile, i18n("Browse to a file")); - boxtqlayout->addWidget(brFile); + boxlayout->addWidget(brFile); } if (lm & ListDir) { brDir = new TQPushButton(dw); brDir->setPixmap(SmallIcon("folder")); TQToolTip::add(brDir, i18n("Browse to a folder")); - boxtqlayout->addWidget(brDir); + boxlayout->addWidget(brDir); } } - tqlayout->addWidget(dw, 0, 1); - tqlayout->addWidget(lb, 1, 1); + layout->addWidget(dw, 0, 1); + layout->addWidget(lb, 1, 1); connect( le, TQT_SIGNAL(returnPressed()), this, TQT_SLOT(addString()) ); |