Replace Qt with TQt

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/14/head
Michele Calgaro 7 months ago
parent a8769c6290
commit 51e1505d8c
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -264,7 +264,7 @@ int KbStateApplet::heightForWidth(int w) const {
} }
void KbStateApplet::mousePressEvent(TQMouseEvent *e) { void KbStateApplet::mousePressEvent(TQMouseEvent *e) {
if (e->button() == Qt::RightButton) if (e->button() == TQt::RightButton)
popup->popup(e->globalPos()); popup->popup(e->globalPos());
} }
@ -308,7 +308,7 @@ void KbStateApplet::layout() {
accessxCount++; accessxCount++;
} }
if (orientation() ==Qt::Vertical) { if (orientation() ==TQt::Vertical) {
calculateSizes (width(), modifierCount, lockkeyCount, accessxCount, calculateSizes (width(), modifierCount, lockkeyCount, accessxCount,
showMouse, lines, length, size); showMouse, lines, length, size);

@ -370,7 +370,7 @@ TQPoint KMagZoomView::calcMousePos(bool updateMousePos)
void KMagZoomView::mousePressEvent(TQMouseEvent *e) void KMagZoomView::mousePressEvent(TQMouseEvent *e)
{ {
switch(e->button()) { switch(e->button()) {
case Qt::LeftButton : case TQt::LeftButton :
if(m_ctrlKeyPressed) { if(m_ctrlKeyPressed) {
// check if currently in resize mode // check if currently in resize mode
// don't do anything if fitToWindow is enabled // don't do anything if fitToWindow is enabled
@ -443,7 +443,7 @@ void KMagZoomView::mousePressEvent(TQMouseEvent *e)
} }
break; break;
case Qt::MidButton : case TQt::MidButton :
// check if currently in move mode // check if currently in move mode
// don't do anything if follow mouse is enabled // don't do anything if follow mouse is enabled
if ((m_mouseMode != MoveSelection) && !m_followMouse) { if ((m_mouseMode != MoveSelection) && !m_followMouse) {
@ -484,8 +484,8 @@ void KMagZoomView::mousePressEvent(TQMouseEvent *e)
void KMagZoomView::mouseReleaseEvent(TQMouseEvent *e) void KMagZoomView::mouseReleaseEvent(TQMouseEvent *e)
{ {
switch(e->button()) { switch(e->button()) {
case Qt::LeftButton : case TQt::LeftButton :
case Qt::MidButton : case TQt::MidButton :
// check if currently in move mode // check if currently in move mode
if(m_mouseMode == MoveSelection) { if(m_mouseMode == MoveSelection) {
// hide the selection window // hide the selection window
@ -521,9 +521,9 @@ void KMagZoomView::mouseReleaseEvent(TQMouseEvent *e)
} }
break; break;
case Qt::RightButton : case TQt::RightButton :
break; break;
case Qt::NoButton : case TQt::NoButton :
break; break;
// do nothing // do nothing

@ -120,7 +120,7 @@ OptionsDialog::OptionsDialog (TQWidget *parent)
setHelp ("config-dialog"); setHelp ("config-dialog");
TQPixmap iconGeneral = TDEGlobal::iconLoader()->loadIcon("configure", TDEIcon::NoGroup, TDEIcon::SizeMedium); TQPixmap iconGeneral = TDEGlobal::iconLoader()->loadIcon("configure", TDEIcon::NoGroup, TDEIcon::SizeMedium);
TQGrid *pageGeneral = addGridPage (1, Qt::Horizontal, i18n("General Options"), TQString(), iconGeneral); TQGrid *pageGeneral = addGridPage (1, TQt::Horizontal, i18n("General Options"), TQString(), iconGeneral);
tabCtl = new TQTabWidget (pageGeneral, "general"); tabCtl = new TQTabWidget (pageGeneral, "general");
@ -133,13 +133,13 @@ OptionsDialog::OptionsDialog (TQWidget *parent)
tabCtl->addTab (commandWidget, i18n("&Text-to-Speech")); tabCtl->addTab (commandWidget, i18n("&Text-to-Speech"));
TQPixmap iconCompletion = TDEGlobal::iconLoader()->loadIcon("input-keyboard", TDEIcon::NoGroup, TDEIcon::SizeMedium); TQPixmap iconCompletion = TDEGlobal::iconLoader()->loadIcon("input-keyboard", TDEIcon::NoGroup, TDEIcon::SizeMedium);
TQGrid *pageCompletion = addGridPage (1, Qt::Horizontal, i18n("Word Completion"), TQString(), iconCompletion); TQGrid *pageCompletion = addGridPage (1, TQt::Horizontal, i18n("Word Completion"), TQString(), iconCompletion);
completionWidget = new WordCompletionWidget(pageCompletion, "Word Completion widget"); completionWidget = new WordCompletionWidget(pageCompletion, "Word Completion widget");
kttsd = loadKttsd(); kttsd = loadKttsd();
if (kttsd != 0) { if (kttsd != 0) {
TQPixmap iconKttsd = TDEGlobal::iconLoader()->loadIcon("multimedia", TDEIcon::NoGroup, TDEIcon::SizeMedium); TQPixmap iconKttsd = TDEGlobal::iconLoader()->loadIcon("multimedia", TDEIcon::NoGroup, TDEIcon::SizeMedium);
TQGrid *pageKttsd = addGridPage (1, Qt::Horizontal, i18n("KTTSD Speech Service"), TQGrid *pageKttsd = addGridPage (1, TQt::Horizontal, i18n("KTTSD Speech Service"),
i18n("TDE Text-to-Speech Daemon Configuration"), iconKttsd); i18n("TDE Text-to-Speech Daemon Configuration"), iconKttsd);
kttsd->reparent(pageKttsd,0,TQPoint(0,0),true); kttsd->reparent(pageKttsd,0,TQPoint(0,0),true);

@ -927,7 +927,7 @@ void DocTreeViewImpl::slotNewDate()
date->setText(3, TQString("%1").arg(newIndex).rightJustify(8,'0') ); date->setText(3, TQString("%1").arg(newIndex).rightJustify(8,'0') );
// get current date // get current date
TQString today; TQString today;
today = TDEGlobal::locale()->formatDate(TQDate::currentDate(Qt::LocalTime), true); today = TDEGlobal::locale()->formatDate(TQDate::currentDate(TQt::LocalTime), true);
date->setText( 1, today); date->setText( 1, today);
date->setValue( KSayItGlobal::RAWDATA, today ); date->setValue( KSayItGlobal::RAWDATA, today );
date->setValue( KSayItGlobal::RTFDATA, today ); date->setValue( KSayItGlobal::RTFDATA, today );

@ -253,7 +253,7 @@ void StateWAIT::setContext(KSayItSystemTray *caller)
void StateWAIT::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e) void StateWAIT::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e)
{ {
if (e->button()==Qt::LeftButton){ // left Mouse-button pressed if (e->button()==TQt::LeftButton){ // left Mouse-button pressed
TQWidget::mousePressEvent(e); // do nothing (see mouseReleaseEvent) TQWidget::mousePressEvent(e); // do nothing (see mouseReleaseEvent)
} else { } else {
mousePressEventCall(caller, e); // normal mouse-handling mousePressEventCall(caller, e); // normal mouse-handling
@ -262,7 +262,7 @@ void StateWAIT::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e)
void StateWAIT::mouseReleaseEvent(KSayItSystemTray *caller, TQMouseEvent *e) void StateWAIT::mouseReleaseEvent(KSayItSystemTray *caller, TQMouseEvent *e)
{ {
if (e->button()==Qt::LeftButton){ // left Mouse-button released if (e->button()==TQt::LeftButton){ // left Mouse-button released
say(caller); say(caller);
} else { } else {
mouseReleaseEventCall(caller, e); // normal mouse-handling mouseReleaseEventCall(caller, e); // normal mouse-handling
@ -294,7 +294,7 @@ void StateSAY::setContext(KSayItSystemTray *caller)
void StateSAY::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e) void StateSAY::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e)
{ {
if (e->button()==Qt::LeftButton){ // left Mouse-button pressed if (e->button()==TQt::LeftButton){ // left Mouse-button pressed
TQWidget::mousePressEvent(e); // do nothing (see mouseReleaseEvent) TQWidget::mousePressEvent(e); // do nothing (see mouseReleaseEvent)
} else { } else {
mousePressEventCall(caller, e); // normal mouse-handling mousePressEventCall(caller, e); // normal mouse-handling
@ -303,7 +303,7 @@ void StateSAY::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e)
void StateSAY::mouseReleaseEvent(KSayItSystemTray *caller, TQMouseEvent *e) void StateSAY::mouseReleaseEvent(KSayItSystemTray *caller, TQMouseEvent *e)
{ {
if (e->button()==Qt::LeftButton){ // left Mouse-button released if (e->button()==TQt::LeftButton){ // left Mouse-button released
TQWidget::mouseReleaseEvent(e); // do nothing (see mouseReleaseEvent) TQWidget::mouseReleaseEvent(e); // do nothing (see mouseReleaseEvent)
} else { } else {
mouseReleaseEventCall(caller, e); // normal mouse-handling mouseReleaseEventCall(caller, e); // normal mouse-handling
@ -336,7 +336,7 @@ void StateCLIPEMPTY::setContext(KSayItSystemTray *caller)
void StateCLIPEMPTY::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e) void StateCLIPEMPTY::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e)
{ {
if (e->button()==Qt::LeftButton){ // left Mouse-button pressed if (e->button()==TQt::LeftButton){ // left Mouse-button pressed
TQWidget::mousePressEvent(e); // do nothing (see mouseReleaseEvent) TQWidget::mousePressEvent(e); // do nothing (see mouseReleaseEvent)
} else { } else {
mousePressEventCall(caller, e); // normal mouse-handling mousePressEventCall(caller, e); // normal mouse-handling
@ -345,7 +345,7 @@ void StateCLIPEMPTY::mousePressEvent(KSayItSystemTray *caller, TQMouseEvent *e)
void StateCLIPEMPTY::mouseReleaseEvent(KSayItSystemTray *caller, TQMouseEvent *e) void StateCLIPEMPTY::mouseReleaseEvent(KSayItSystemTray *caller, TQMouseEvent *e)
{ {
if (e->button()==Qt::LeftButton){ // left Mouse-button released if (e->button()==TQt::LeftButton){ // left Mouse-button released
TQWidget::mouseReleaseEvent(e); // do nothing (see mouseReleaseEvent) TQWidget::mouseReleaseEvent(e); // do nothing (see mouseReleaseEvent)
} else { } else {
mouseReleaseEventCall(caller, e); // normal mouse-handling mouseReleaseEventCall(caller, e); // normal mouse-handling

@ -106,7 +106,7 @@ KttsJobMgrPart::KttsJobMgrPart(TQWidget *parent, const char *name) :
// Create a splitter to contain the Job List View and the current sentence. // Create a splitter to contain the Job List View and the current sentence.
TQSplitter* splitter = new TQSplitter(vBox); TQSplitter* splitter = new TQSplitter(vBox);
splitter->setOrientation(Qt::Vertical); splitter->setOrientation(TQt::Vertical);
// Create Job List View widget. // Create Job List View widget.
m_jobListView = new TDEListView(splitter, "joblistview"); m_jobListView = new TDEListView(splitter, "joblistview");

Loading…
Cancel
Save