diff options
Diffstat (limited to 'kdict')
-rw-r--r-- | kdict/actions.cpp | 10 | ||||
-rw-r--r-- | kdict/applet/kdictapplet.cpp | 12 | ||||
-rw-r--r-- | kdict/matchview.cpp | 12 | ||||
-rw-r--r-- | kdict/sets.cpp | 12 |
4 files changed, 23 insertions, 23 deletions
diff --git a/kdict/actions.cpp b/kdict/actions.cpp index 5f5480aa..1c9c757c 100644 --- a/kdict/actions.cpp +++ b/kdict/actions.cpp @@ -46,7 +46,7 @@ int DictComboAction::plug( TQWidget *widget, int index ) m_combo = new KComboBox(m_editable,bar); m_combo->setCompletionMode(m_compMode); - bar->insertWidget( id_, m_combo->tqsizeHint().width(), m_combo, index ); + bar->insertWidget( id_, m_combo->sizeHint().width(), m_combo, index ); bar->setItemAutoSized(id_,m_autoSized); if ( m_combo ) { @@ -155,7 +155,7 @@ void DictComboAction::setList(TQStringList items) if (m_editable && m_combo->completionObject()) m_combo->completionObject()->setItems(items); if (!m_autoSized) - m_combo->setFixedWidth(m_combo->tqsizeHint().width()); + m_combo->setFixedWidth(m_combo->sizeHint().width()); } } @@ -213,9 +213,9 @@ int DictLabelAction::plug( TQWidget *widget, int index ) int id = KAction::getToolButtonID(); TQLabel *label = new TQLabel( text(), widget, "kde toolbar widget" ); - label->setMinimumWidth(label->tqsizeHint().width()); + label->setMinimumWidth(label->sizeHint().width()); label->setBackgroundMode( TQt::PaletteButton ); - label->tqsetAlignment(AlignCenter | AlignVCenter); + label->setAlignment(AlignCenter | AlignVCenter); label->adjustSize(); tb->insertWidget( id, label->width(), label, index ); @@ -320,7 +320,7 @@ void DictButtonAction::unplug( TQWidget *widget ) int DictButtonAction::widthHint() { if (m_button) - return m_button->tqsizeHint().width(); + return m_button->sizeHint().width(); else return 0; } diff --git a/kdict/applet/kdictapplet.cpp b/kdict/applet/kdictapplet.cpp index 0179f0b8..7cec38c9 100644 --- a/kdict/applet/kdictapplet.cpp +++ b/kdict/applet/kdictapplet.cpp @@ -102,7 +102,7 @@ DictApplet::DictApplet(const TQString& configFile, Type type, int actions, TQWid TQPixmap pm = KGlobal::iconLoader()->loadIcon("kdict", KIcon::Panel, KIcon::SizeSmall, KIcon::DefaultState, 0L, true); iconLabel->setPixmap(pm); baseLay->addWidget(iconLabel,1,0); - iconLabel->tqsetAlignment(TQt::AlignCenter | TQt::AlignVCenter); + iconLabel->setAlignment(TQt::AlignCenter | TQt::AlignVCenter); iconLabel->setFixedWidth(pm.width()+4); TQToolTip::add(iconLabel,i18n("Look up a word or phrase with Kdict")); @@ -160,7 +160,7 @@ DictApplet::DictApplet(const TQString& configFile, Type type, int actions, TQWid externalCombo = new KHistoryCombo(popupBox); externalCombo->setCompletionObject(completionObject); connect(externalCombo, TQT_SIGNAL(returnPressed(const TQString&)), TQT_SLOT(startQuery(const TQString&))); - externalCombo->setFixedSize(160, externalCombo->tqsizeHint().height()); + externalCombo->setFixedSize(160, externalCombo->sizeHint().height()); connect(internalCombo, TQT_SIGNAL(completionModeChanged(KGlobalSettings::Completion)), this, TQT_SLOT(updateCompletionMode(KGlobalSettings::Completion))); @@ -205,9 +205,9 @@ DictApplet::~DictApplet() int DictApplet::widthForHeight(int height) const { if (height >= 38) - return textLabel->tqsizeHint().width()+55; + return textLabel->sizeHint().width()+55; else - return textLabel->tqsizeHint().width()+25; + return textLabel->sizeHint().width()+25; } @@ -224,10 +224,10 @@ void DictApplet::resizeEvent(TQResizeEvent*) baseWidget->show(); baseWidget->setFixedSize(width(),height()); - if (height() < internalCombo->tqsizeHint().height()) + if (height() < internalCombo->sizeHint().height()) internalCombo->setFixedHeight(height()); else - internalCombo->setFixedHeight(internalCombo->tqsizeHint().height()); + internalCombo->setFixedHeight(internalCombo->sizeHint().height()); if (height() >= 38) { textLabel->show(); diff --git a/kdict/matchview.cpp b/kdict/matchview.cpp index e4dd030b..f49a4c7f 100644 --- a/kdict/matchview.cpp +++ b/kdict/matchview.cpp @@ -119,7 +119,7 @@ MatchView::MatchView(TQWidget *parent, const char *name) boxLayout->addSpacing(1); w_strat = new TQComboBox(false,this); - w_strat->setFixedHeight(w_strat->tqsizeHint().height()); + w_strat->setFixedHeight(w_strat->sizeHint().height()); connect(w_strat,TQT_SIGNAL(activated(int)),this,TQT_SLOT(strategySelected(int))); boxLayout->addWidget(w_strat,0); boxLayout->addSpacing(1); @@ -133,7 +133,7 @@ MatchView::MatchView(TQWidget *parent, const char *name) w_list->setSelectionMode(TQListView::Extended); w_list->setTreeStepSize(18); w_list->setSorting(-1); // disable sorting - w_list->setMinimumHeight(w_strat->tqsizeHint().height()); + w_list->setMinimumHeight(w_strat->sizeHint().height()); connect(w_list,TQT_SIGNAL(selectionChanged()),TQT_SLOT(enableGetButton())); connect(w_list,TQT_SIGNAL(returnPressed(TQListViewItem *)),TQT_SLOT(returnPressed(TQListViewItem *))); connect(w_list,TQT_SIGNAL(doubleClicked(TQListViewItem *)),TQT_SLOT(getOneItem(TQListViewItem *))); @@ -144,15 +144,15 @@ MatchView::MatchView(TQWidget *parent, const char *name) boxLayout->addSpacing(1); w_get = new TQPushButton(i18n("&Get Selected"),this); - w_get->setFixedHeight(w_get->tqsizeHint().height()-3); - w_get->setMinimumWidth(w_get->tqsizeHint().width()-20); + w_get->setFixedHeight(w_get->sizeHint().height()-3); + w_get->setMinimumWidth(w_get->sizeHint().width()-20); w_get->setEnabled(false); connect(w_get, TQT_SIGNAL(clicked()), this, TQT_SLOT(getSelected())); boxLayout->addWidget(w_get,0); w_getAll = new TQPushButton(i18n("Get &All"),this); - w_getAll->setFixedHeight(w_getAll->tqsizeHint().height()-3); - w_getAll->setMinimumWidth(w_getAll->tqsizeHint().width()-20); + w_getAll->setFixedHeight(w_getAll->sizeHint().height()-3); + w_getAll->setMinimumWidth(w_getAll->sizeHint().width()-20); w_getAll->setEnabled(false); connect(w_getAll, TQT_SIGNAL(clicked()), this, TQT_SLOT(getAll())); boxLayout->addWidget(w_getAll,0); diff --git a/kdict/sets.cpp b/kdict/sets.cpp index fe3f2636..3f043233 100644 --- a/kdict/sets.cpp +++ b/kdict/sets.cpp @@ -44,12 +44,12 @@ DbSetsDialog::DbSetsDialog(TQWidget *parent, const char *name) topLayout->addLayout(subLayout1,0); w_set = new TQComboBox(true,page); - w_set->setFixedHeight(w_set->tqsizeHint().height()); + w_set->setFixedHeight(w_set->sizeHint().height()); w_set->setInsertionPolicy (TQComboBox::NoInsertion); w_set->insertStringList(sets); connect(w_set, TQT_SIGNAL(activated(int)),this, TQT_SLOT(activateSet(int))); TQLabel *l = new TQLabel(w_set, i18n("&Set:"),page); - l->setMinimumSize(l->tqsizeHint()); + l->setMinimumSize(l->sizeHint()); subLayout1->addWidget(l,0); subLayout1->addWidget(w_set,1); @@ -60,12 +60,12 @@ DbSetsDialog::DbSetsDialog(TQWidget *parent, const char *name) subLayout1->addWidget(w_save,0); TQPushButton *btn = new TQPushButton(i18n("&New"),page); - btn->setMinimumSize(btn->tqsizeHint()); + btn->setMinimumSize(btn->sizeHint()); connect(btn, TQT_SIGNAL(clicked()),this, TQT_SLOT(newPressed())); subLayout1->addWidget(btn,0); w_delete = new TQPushButton(i18n("&Delete"),page); - w_delete->setMinimumSize(w_delete->tqsizeHint()); + w_delete->setMinimumSize(w_delete->sizeHint()); connect(w_delete, TQT_SIGNAL(clicked()),this, TQT_SLOT(deletePressed())); subLayout1->addWidget(w_delete,0); @@ -83,7 +83,7 @@ DbSetsDialog::DbSetsDialog(TQWidget *parent, const char *name) connect(w_leftBox, TQT_SIGNAL(selected(int)),this, TQT_SLOT(leftSelected(int))); connect(w_leftBox, TQT_SIGNAL(highlighted(int)),this, TQT_SLOT(leftHighlighted(int))); TQLabel *leftLabel = new TQLabel(w_leftBox, i18n("S&elected databases:"),page); - leftLabel->setMinimumSize(leftLabel->tqsizeHint()); + leftLabel->setMinimumSize(leftLabel->sizeHint()); subLayout2->addWidget(leftLabel,0,0); subLayout2->addMultiCellWidget(w_leftBox,1,6,0,0); @@ -111,7 +111,7 @@ DbSetsDialog::DbSetsDialog(TQWidget *parent, const char *name) connect(w_rightBox, TQT_SIGNAL(selected(int)),this, TQT_SLOT(rightSelected(int))); connect(w_rightBox, TQT_SIGNAL(highlighted(int)),this, TQT_SLOT(rightHighlighted(int))); TQLabel *rightLabel = new TQLabel(w_rightBox, i18n("A&vailable databases:"),page); - rightLabel->setMinimumSize(rightLabel->tqsizeHint()); + rightLabel->setMinimumSize(rightLabel->sizeHint()); subLayout2->addWidget(rightLabel,0,2); subLayout2->addMultiCellWidget(w_rightBox,1,6,2,2); |