Replace Qt with TQt

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/31/head
Michele Calgaro 8 months ago
parent f0e925909a
commit 96f53316c2
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -765,21 +765,21 @@ void dotNETstyle::drawPrimitive(PrimitiveElement pe,
if (flags & Style_Enabled) { if (flags & Style_Enabled) {
a.translate((r.x() + r.width()/2), (r.y() + r.height()/2)); a.translate((r.x() + r.width()/2), (r.y() + r.height()/2));
if (p->pen() == Qt::NoPen) { if (p->pen() == TQt::NoPen) {
p->setPen(cg.buttonText()); p->setPen(cg.buttonText());
} }
p->drawLineSegments(a, 0, 3); p->drawLineSegments(a, 0, 3);
p->drawPoint(a[6]); p->drawPoint(a[6]);
} else { } else {
a.translate((r.x() + r.width()/2)+1, (r.y() + r.height()/2)+1); a.translate((r.x() + r.width()/2)+1, (r.y() + r.height()/2)+1);
if (p->pen() == Qt::NoPen) { if (p->pen() == TQt::NoPen) {
p->setPen(cg.highlightedText()); p->setPen(cg.highlightedText());
} }
p->drawLineSegments(a, 0, 3); p->drawLineSegments(a, 0, 3);
p->drawPoint(a[6]); p->drawPoint(a[6]);
a.translate(-1,-1); a.translate(-1,-1);
if (p->pen() == Qt::NoPen) { if (p->pen() == TQt::NoPen) {
p->setPen(cg.mid()); p->setPen(cg.mid());
} }
p->drawLineSegments(a, 0, 3); p->drawLineSegments(a, 0, 3);
@ -1357,11 +1357,11 @@ void dotNETstyle::drawControl(TQ_ControlElement element,
} else if (mi->pixmap()) { } else if (mi->pixmap()) {
TQPixmap *pixmap = mi->pixmap(); TQPixmap *pixmap = mi->pixmap();
if (pixmap->depth() == 1) { if (pixmap->depth() == 1) {
p->setBackgroundMode(Qt::OpaqueMode); p->setBackgroundMode(TQt::OpaqueMode);
} }
p->drawPixmap(xpos, y, *pixmap); p->drawPixmap(xpos, y, *pixmap);
if (pixmap->depth() == 1) { if (pixmap->depth() == 1) {
p->setBackgroundMode(Qt::TransparentMode); p->setBackgroundMode(TQt::TransparentMode);
} }
} }
} }

@ -633,7 +633,7 @@ void PhaseStyle::drawPrimitive(PrimitiveElement element,
widget =dynamic_cast<TQWidget*>(painter->device()); widget =dynamic_cast<TQWidget*>(painter->device());
if (header) { if (header) {
horiz = (header->orientation() ==Qt::Horizontal); horiz = (header->orientation() ==TQt::Horizontal);
} else { } else {
horiz = true; horiz = true;
} }
@ -1481,13 +1481,13 @@ void PhaseStyle::drawControl(TQ_ControlElement element,
else if (mi->pixmap()) { // pixmap as label else if (mi->pixmap()) { // pixmap as label
pixmap = *mi->pixmap(); pixmap = *mi->pixmap();
if (pixmap.depth() == 1) if (pixmap.depth() == 1)
painter->setBackgroundMode(Qt::OpaqueMode); painter->setBackgroundMode(TQt::OpaqueMode);
dx = ((w - pixmap.width()) / 2) + ((w - pixmap.width()) % 2); dx = ((w - pixmap.width()) / 2) + ((w - pixmap.width()) % 2);
painter->drawPixmap(x+dx, y+ITEMFRAME, pixmap); painter->drawPixmap(x+dx, y+ITEMFRAME, pixmap);
if (pixmap.depth() == 1) if (pixmap.depth() == 1)
painter->setBackgroundMode(Qt::TransparentMode); painter->setBackgroundMode(TQt::TransparentMode);
} }
} }
@ -1874,7 +1874,7 @@ void PhaseStyle::drawComplexControl(TQ_ComplexControl control,
if ((extension = ::tqqt_cast<TQWidget*>(btn->parent()))) { if ((extension = ::tqqt_cast<TQWidget*>(btn->parent()))) {
toolbar = ::tqqt_cast<TQToolBar*>(extension->parent()); toolbar = ::tqqt_cast<TQToolBar*>(extension->parent());
if (toolbar) { if (toolbar) {
horiz = (toolbar->orientation() == Qt::Horizontal); horiz = (toolbar->orientation() == TQt::Horizontal);
if (normal) { // draw background if (normal) { // draw background
drawPhaseGradient(painter, rect, group.background(), drawPhaseGradient(painter, rect, group.background(),
!horiz, 0, 0, toolbar->width()-3, !horiz, 0, 0, toolbar->width()-3,
@ -2295,7 +2295,7 @@ bool PhaseStyle::objectEventHandler( const TQStyleControlElementData &ceData, Co
TQRect prect = parent->rect(); TQRect prect = parent->rect();
toolbar = ::tqqt_cast<TQToolBar*>(parent); toolbar = ::tqqt_cast<TQToolBar*>(parent);
horiz = (toolbar) ? (toolbar->orientation() == Qt::Horizontal) horiz = (toolbar) ? (toolbar->orientation() == TQt::Horizontal)
: (prect.height() < prect.width()); : (prect.height() < prect.width());
TQPainter painter(widget); TQPainter painter(widget);
if (flatToolbar(ceData, elementFlags, toolbar)) { if (flatToolbar(ceData, elementFlags, toolbar)) {
@ -2320,7 +2320,7 @@ bool PhaseStyle::objectEventHandler( const TQStyleControlElementData &ceData, Co
else if (object && object->isWidgetType() && object->parent() && else if (object && object->isWidgetType() && object->parent() &&
(toolbar = ::tqqt_cast<TQToolBar*>(object->parent()))) { (toolbar = ::tqqt_cast<TQToolBar*>(object->parent()))) {
if (0 == (widget = ::tqqt_cast<TQWidget*>(object))) return false; if (0 == (widget = ::tqqt_cast<TQWidget*>(object))) return false;
horiz = (toolbar->orientation() == Qt::Horizontal); horiz = (toolbar->orientation() == TQt::Horizontal);
TQPainter painter(widget); TQPainter painter(widget);
ceData.rect.rect(&x, &y, &w, &h); ceData.rect.rect(&x, &y, &w, &h);
// draw the extension // draw the extension

@ -74,7 +74,7 @@ KBannerSetup::KBannerSetup( TQWidget *parent, const char *name )
TQVBoxLayout *tl11 = new TQVBoxLayout( 0, 0, spacingHint() ); TQVBoxLayout *tl11 = new TQVBoxLayout( 0, 0, spacingHint() );
tl1->addLayout(tl11); tl1->addLayout(tl11);
TQGroupBox *group = new TQGroupBox( 0,Qt::Vertical, i18n("Font"), main ); TQGroupBox *group = new TQGroupBox( 0,TQt::Vertical, i18n("Font"), main );
TQGridLayout *gl = new TQGridLayout(group->layout(), 6, 2, spacingHint() ); TQGridLayout *gl = new TQGridLayout(group->layout(), 6, 2, spacingHint() );
label = new TQLabel( i18n("Family:"), group ); label = new TQLabel( i18n("Family:"), group );
@ -134,7 +134,7 @@ KBannerSetup::KBannerSetup( TQWidget *parent, const char *name )
tl11->addStretch(1); tl11->addStretch(1);
tl11->addWidget(label); tl11->addWidget(label);
TQSlider *sb = new TQSlider(0, 100, 10, speed, Qt::Horizontal, main ); TQSlider *sb = new TQSlider(0, 100, 10, speed, TQt::Horizontal, main );
sb->setMinimumWidth( 180); sb->setMinimumWidth( 180);
sb->setFixedHeight(20); sb->setFixedHeight(20);
sb->setTickmarks(TQSlider::Below); sb->setTickmarks(TQSlider::Below);

@ -84,7 +84,7 @@ KClockSetup::KClockSetup(TQWidget *parent, const char *name)
top->addLayout( hbox ); top->addLayout( hbox );
TQGroupBox *colgroup = new TQGroupBox(i18n("Colors"), main); TQGroupBox *colgroup = new TQGroupBox(i18n("Colors"), main);
colgroup->setColumnLayout( 0,Qt::Horizontal ); colgroup->setColumnLayout( 0,TQt::Horizontal );
TQGridLayout *grid = new TQGridLayout( colgroup->layout(), TQGridLayout *grid = new TQGridLayout( colgroup->layout(),
5, 2, spacingHint() ); 5, 2, spacingHint() );
@ -143,7 +143,7 @@ KClockSetup::KClockSetup(TQWidget *parent, const char *name)
label = new TQLabel( i18n( "Si&ze:" ), main ); label = new TQLabel( i18n( "Si&ze:" ), main );
top->addWidget( label ); top->addWidget( label );
TQSlider *qs = new TQSlider(0, MAX_CLOCK_SIZE, 1, m_size,Qt::Horizontal, main); TQSlider *qs = new TQSlider(0, MAX_CLOCK_SIZE, 1, m_size,TQt::Horizontal, main);
label->setBuddy( qs ); label->setBuddy( qs );
qs->setTickInterval(1); qs->setTickInterval(1);
qs->setTickmarks(TQSlider::Below); qs->setTickmarks(TQSlider::Below);

@ -289,7 +289,7 @@ kVmSetup::kVmSetup( TQWidget *parent, const char *name )
TQLabel *label = new TQLabel( i18n("Virtual machine speed:"), main ); TQLabel *label = new TQLabel( i18n("Virtual machine speed:"), main );
tl1->addWidget(label); tl1->addWidget(label);
TQSlider *slider = new TQSlider( Qt::Horizontal, main ); TQSlider *slider = new TQSlider( TQt::Horizontal, main );
slider->setMinimumSize( 120, 20 ); slider->setMinimumSize( 120, 20 );
slider->setRange( 0, 100 ); slider->setRange( 0, 100 );
slider->setSteps( 10, 20 ); slider->setSteps( 10, 20 );
@ -303,7 +303,7 @@ kVmSetup::kVmSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Display update speed:"), main ); label = new TQLabel( i18n("Display update speed:"), main );
tl1->addWidget(label); tl1->addWidget(label);
slider = new TQSlider( Qt::Horizontal, main ); slider = new TQSlider( TQt::Horizontal, main );
slider->setMinimumSize( 120, 20 ); slider->setMinimumSize( 120, 20 );
slider->setRange( 0, MAX_REFRESH_TIMEOUT ); slider->setRange( 0, MAX_REFRESH_TIMEOUT );
slider->setSteps( MAX_REFRESH_TIMEOUT/10, MAX_REFRESH_TIMEOUT/5 ); slider->setSteps( MAX_REFRESH_TIMEOUT/10, MAX_REFRESH_TIMEOUT/5 );

@ -128,7 +128,7 @@ kLinesSetup::kLinesSetup(TQWidget *parent, const char *name)
TQLabel *label=new TQLabel(i18n("Length:"), main); TQLabel *label=new TQLabel(i18n("Length:"), main);
tl1->addWidget(label); tl1->addWidget(label);
TQSlider *sb= new TQSlider(1, MAXLENGTH+1, 16, length, Qt::Horizontal, TQSlider *sb= new TQSlider(1, MAXLENGTH+1, 16, length, TQt::Horizontal,
main); main);
sb->setMinimumSize(120, 20); sb->setMinimumSize(120, 20);
sb->setTickmarks(TQSlider::Below); sb->setTickmarks(TQSlider::Below);
@ -139,7 +139,7 @@ kLinesSetup::kLinesSetup(TQWidget *parent, const char *name)
label=new TQLabel(i18n("Speed:"), main); label=new TQLabel(i18n("Speed:"), main);
tl1->addWidget(label); tl1->addWidget(label);
sb = new TQSlider(0, 100, 10, speed, Qt::Horizontal, main); sb = new TQSlider(0, 100, 10, speed, TQt::Horizontal, main);
sb->setMinimumSize(120, 20); sb->setMinimumSize(120, 20);
sb->setTickmarks(TQSlider::Below); sb->setTickmarks(TQSlider::Below);
sb->setTickInterval(10); sb->setTickInterval(10);

@ -82,7 +82,7 @@ KLorenzSetup::KLorenzSetup( TQWidget *parent, const char *name )
TQLabel *label = new TQLabel( i18n("Speed:"), main ); TQLabel *label = new TQLabel( i18n("Speed:"), main );
tl1->addWidget(label); tl1->addWidget(label);
sps = new TQSlider(MINSPEED, MAXSPEED, 10, speed, Qt::Horizontal, main); sps = new TQSlider(MINSPEED, MAXSPEED, 10, speed, TQt::Horizontal, main);
sps->setMinimumSize( 120, 20 ); sps->setMinimumSize( 120, 20 );
sps->setTickmarks(TQSlider::Below); sps->setTickmarks(TQSlider::Below);
sps->setTickInterval(150); sps->setTickInterval(150);
@ -92,7 +92,7 @@ KLorenzSetup::KLorenzSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Epoch:"), main ); label = new TQLabel( i18n("Epoch:"), main );
tl1->addWidget(label); tl1->addWidget(label);
eps = new TQSlider(MINEPOCH, MAXEPOCH, 100, epoch, Qt::Horizontal, main); eps = new TQSlider(MINEPOCH, MAXEPOCH, 100, epoch, TQt::Horizontal, main);
eps->setMinimumSize( 120, 20 ); eps->setMinimumSize( 120, 20 );
eps->setTickmarks(TQSlider::Below); eps->setTickmarks(TQSlider::Below);
eps->setTickInterval(3000); eps->setTickInterval(3000);
@ -102,7 +102,7 @@ KLorenzSetup::KLorenzSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Color rate:"), main ); label = new TQLabel( i18n("Color rate:"), main );
tl1->addWidget(label); tl1->addWidget(label);
crs = new TQSlider(MINCOLOR, MAXCOLOR, 5, crate, Qt::Horizontal, main); crs = new TQSlider(MINCOLOR, MAXCOLOR, 5, crate, TQt::Horizontal, main);
crs->setMinimumSize( 120, 20 ); crs->setMinimumSize( 120, 20 );
crs->setTickmarks(TQSlider::Below); crs->setTickmarks(TQSlider::Below);
crs->setTickInterval(10); crs->setTickInterval(10);
@ -112,7 +112,7 @@ KLorenzSetup::KLorenzSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Rotation Z:"), main ); label = new TQLabel( i18n("Rotation Z:"), main );
tl1->addWidget(label); tl1->addWidget(label);
zrs = new TQSlider(MINZROT, MAXZROT, 18, zrot, Qt::Horizontal, main); zrs = new TQSlider(MINZROT, MAXZROT, 18, zrot, TQt::Horizontal, main);
zrs->setMinimumSize( 120, 20 ); zrs->setMinimumSize( 120, 20 );
zrs->setTickmarks(TQSlider::Below); zrs->setTickmarks(TQSlider::Below);
zrs->setTickInterval(36); zrs->setTickInterval(36);
@ -122,7 +122,7 @@ KLorenzSetup::KLorenzSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Rotation Y:"), main ); label = new TQLabel( i18n("Rotation Y:"), main );
tl1->addWidget(label); tl1->addWidget(label);
yrs = new TQSlider(MINYROT, MAXYROT, 18, yrot, Qt::Horizontal, main); yrs = new TQSlider(MINYROT, MAXYROT, 18, yrot, TQt::Horizontal, main);
yrs->setMinimumSize( 120, 20 ); yrs->setMinimumSize( 120, 20 );
yrs->setTickmarks(TQSlider::Below); yrs->setTickmarks(TQSlider::Below);
yrs->setTickInterval(36); yrs->setTickInterval(36);
@ -132,7 +132,7 @@ KLorenzSetup::KLorenzSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Rotation X:"), main ); label = new TQLabel( i18n("Rotation X:"), main );
tl1->addWidget(label); tl1->addWidget(label);
xrs = new TQSlider(MINXROT, MAXXROT, 18, xrot, Qt::Horizontal, main); xrs = new TQSlider(MINXROT, MAXXROT, 18, xrot, TQt::Horizontal, main);
xrs->setMinimumSize( 120, 20 ); xrs->setMinimumSize( 120, 20 );
xrs->setTickmarks(TQSlider::Below); xrs->setTickmarks(TQSlider::Below);
xrs->setTickInterval(36); xrs->setTickInterval(36);

@ -66,7 +66,7 @@ kPolygonSetup::kPolygonSetup( TQWidget *parent, const char *name )
TQLabel *label = new TQLabel( i18n("Length:"), main ); TQLabel *label = new TQLabel( i18n("Length:"), main );
tl1->addWidget(label); tl1->addWidget(label);
TQSlider *sb = new TQSlider(1, MAXLENGTH, 10, length, Qt::Horizontal, TQSlider *sb = new TQSlider(1, MAXLENGTH, 10, length, TQt::Horizontal,
main ); main );
sb->setMinimumSize( 90, 20 ); sb->setMinimumSize( 90, 20 );
sb->setTickmarks(TQSlider::Below); sb->setTickmarks(TQSlider::Below);
@ -77,7 +77,7 @@ kPolygonSetup::kPolygonSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Vertices:"), main ); label = new TQLabel( i18n("Vertices:"), main );
tl1->addWidget(label); tl1->addWidget(label);
sb = new TQSlider(3, MAXVERTICES, 2, vertices, Qt::Horizontal, main); sb = new TQSlider(3, MAXVERTICES, 2, vertices, TQt::Horizontal, main);
sb->setMinimumSize( 90, 20 ); sb->setMinimumSize( 90, 20 );
sb->setTickmarks(TQSlider::Below); sb->setTickmarks(TQSlider::Below);
sb->setTickInterval(2); sb->setTickInterval(2);
@ -87,7 +87,7 @@ kPolygonSetup::kPolygonSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Speed:"), main ); label = new TQLabel( i18n("Speed:"), main );
tl1->addWidget(label); tl1->addWidget(label);
sb = new TQSlider(0, 100, 10, speed, Qt::Horizontal, main); sb = new TQSlider(0, 100, 10, speed, TQt::Horizontal, main);
sb->setMinimumSize( 90, 20 ); sb->setMinimumSize( 90, 20 );
sb->setTickmarks(TQSlider::Below); sb->setTickmarks(TQSlider::Below);
sb->setTickInterval(10); sb->setTickInterval(10);

@ -897,7 +897,7 @@ KScienceSetup::KScienceSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Size:"), main ); label = new TQLabel( i18n("Size:"), main );
ltc->addWidget( label ); ltc->addWidget( label );
slideSize = new TQSlider(9, 50, 5, size[mode], Qt::Horizontal, slideSize = new TQSlider(9, 50, 5, size[mode], TQt::Horizontal,
main ); main );
slideSize->setMinimumSize( 90, 20 ); slideSize->setMinimumSize( 90, 20 );
slideSize->setTickmarks(TQSlider::Below); slideSize->setTickmarks(TQSlider::Below);
@ -916,7 +916,7 @@ KScienceSetup::KScienceSetup( TQWidget *parent, const char *name )
ltc->addWidget( label ); ltc->addWidget( label );
slideIntensity = new TQSlider(0, 10, 1, intensity[mode], slideIntensity = new TQSlider(0, 10, 1, intensity[mode],
Qt::Horizontal, main ); TQt::Horizontal, main );
slideIntensity->setMinimumSize( 90, 20 ); slideIntensity->setMinimumSize( 90, 20 );
slideIntensity->setTickmarks(TQSlider::Below); slideIntensity->setTickmarks(TQSlider::Below);
slideIntensity->setTickInterval(1); slideIntensity->setTickInterval(1);
@ -933,7 +933,7 @@ KScienceSetup::KScienceSetup( TQWidget *parent, const char *name )
ltc->addWidget( label ); ltc->addWidget( label );
slideSpeed = new TQSlider(0, SCI_MAX_SPEED, 10, speed[mode], slideSpeed = new TQSlider(0, SCI_MAX_SPEED, 10, speed[mode],
Qt::Horizontal, main ); TQt::Horizontal, main );
slideSpeed->setMinimumSize( 90, 20 ); slideSpeed->setMinimumSize( 90, 20 );
slideSpeed->setTickmarks(TQSlider::Below); slideSpeed->setTickmarks(TQSlider::Below);
slideSpeed->setTickInterval(10); slideSpeed->setTickInterval(10);
@ -949,7 +949,7 @@ KScienceSetup::KScienceSetup( TQWidget *parent, const char *name )
ltc->addLayout( ltcm ); ltc->addLayout( ltcm );
slideMoveX = new TQSlider(0, SCI_MAX_MOVE, 5, moveX[mode], slideMoveX = new TQSlider(0, SCI_MAX_MOVE, 5, moveX[mode],
Qt::Horizontal, main ); TQt::Horizontal, main );
slideMoveX->setMinimumSize( 40, 20 ); slideMoveX->setMinimumSize( 40, 20 );
slideMoveX->setTickmarks(TQSlider::Below); slideMoveX->setTickmarks(TQSlider::Below);
slideMoveX->setTickInterval(5); slideMoveX->setTickInterval(5);
@ -958,7 +958,7 @@ KScienceSetup::KScienceSetup( TQWidget *parent, const char *name )
ltcm->addWidget( slideMoveX ); ltcm->addWidget( slideMoveX );
slideMoveY = new TQSlider(0, SCI_MAX_MOVE, 5, moveY[mode], slideMoveY = new TQSlider(0, SCI_MAX_MOVE, 5, moveY[mode],
Qt::Horizontal, main ); TQt::Horizontal, main );
slideMoveY->setMinimumSize( 40, 20 ); slideMoveY->setMinimumSize( 40, 20 );
slideMoveY->setTickmarks(TQSlider::Below); slideMoveY->setTickmarks(TQSlider::Below);
slideMoveY->setTickInterval(5); slideMoveY->setTickInterval(5);

@ -39,7 +39,7 @@ KXSRangeControl::KXSRangeControl(TQWidget *parent, const TQString &name,
TQVBoxLayout *l = new TQVBoxLayout(this); TQVBoxLayout *l = new TQVBoxLayout(this);
TQLabel *label = new TQLabel(mLabel, this); TQLabel *label = new TQLabel(mLabel, this);
l->add(label); l->add(label);
mSlider = new TQSlider(mMinimum, mMaximum, 10, mValue, Qt::Horizontal, this); mSlider = new TQSlider(mMinimum, mMaximum, 10, mValue, TQt::Horizontal, this);
connect(mSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int))); connect(mSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int)));
l->add(mSlider); l->add(mSlider);
} }
@ -71,7 +71,7 @@ KXSRangeControl::KXSRangeControl(TQWidget *parent, const TQString &name,
TQLabel *l = new TQLabel(i18n(lowLabel.utf8()), this); TQLabel *l = new TQLabel(i18n(lowLabel.utf8()), this);
hb->addWidget(l); hb->addWidget(l);
} }
mSlider = new TQSlider(mMinimum, mMaximum, 10, mValue, Qt::Horizontal, this); mSlider = new TQSlider(mMinimum, mMaximum, 10, mValue, TQt::Horizontal, this);
connect(mSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int))); connect(mSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int)));
hb->add(mSlider); hb->add(mSlider);
if (!highLabel.isEmpty()){ if (!highLabel.isEmpty()){
@ -107,7 +107,7 @@ KXSDoubleRangeControl::KXSDoubleRangeControl(TQWidget *parent,
int value = int((mValue - mMinimum) * 100 / (mMaximum - mMinimum)); int value = int((mValue - mMinimum) * 100 / (mMaximum - mMinimum));
mSlider = new TQSlider(0, 100, 10, value, Qt::Horizontal, this); mSlider = new TQSlider(0, 100, 10, value, TQt::Horizontal, this);
connect(mSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int))); connect(mSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int)));
l->add(mSlider); l->add(mSlider);
} }
@ -129,7 +129,7 @@ KXSDoubleRangeControl::KXSDoubleRangeControl(TQWidget *parent,
hb->addWidget(l); hb->addWidget(l);
} }
int value = int((mValue - mMinimum) * 100 / (mMaximum - mMinimum)); int value = int((mValue - mMinimum) * 100 / (mMaximum - mMinimum));
mSlider = new TQSlider(0, 100, 10, value, Qt::Horizontal, this); mSlider = new TQSlider(0, 100, 10, value, TQt::Horizontal, this);
connect(mSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int))); connect(mSlider, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int)));
hb->add(mSlider); hb->add(mSlider);
if (!highLabel.isEmpty()){ if (!highLabel.isEmpty()){

@ -592,7 +592,7 @@ kSpaceSetup::kSpaceSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Speed:"), page ); label = new TQLabel( i18n("Speed:"), page );
vb->addWidget( label ); vb->addWidget( label );
slider = new TQSlider(MINSPEED, MAXSPEED, 10, speed, Qt::Horizontal, slider = new TQSlider(MINSPEED, MAXSPEED, 10, speed, TQt::Horizontal,
page ); page );
vb->addWidget( slider ); vb->addWidget( slider );
slider->setTickmarks(TQSlider::Below); slider->setTickmarks(TQSlider::Below);
@ -602,7 +602,7 @@ kSpaceSetup::kSpaceSetup( TQWidget *parent, const char *name )
label = new TQLabel( i18n("Warp interval:"), page ); label = new TQLabel( i18n("Warp interval:"), page );
vb->addWidget( label ); vb->addWidget( label );
slider = new TQSlider(MINWARP, MAXWARP, 3, warpinterval,Qt::Horizontal, page ); slider = new TQSlider(MINWARP, MAXWARP, 3, warpinterval,TQt::Horizontal, page );
vb->addWidget( slider ); vb->addWidget( slider );
slider->setTickmarks(TQSlider::Below); slider->setTickmarks(TQSlider::Below);
slider->setTickInterval(3); slider->setTickInterval(3);

@ -330,7 +330,7 @@ kSwarmSetup::kSwarmSetup( TQWidget *parent, const char *name )
left->addWidget(label); left->addWidget(label);
TQSlider *slider = new TQSlider(MINSPEED, MAXSPEED, 10, speed, TQSlider *slider = new TQSlider(MINSPEED, MAXSPEED, 10, speed,
Qt::Horizontal, main ); TQt::Horizontal, main );
slider->setMinimumSize( 120, 20 ); slider->setMinimumSize( 120, 20 );
slider->setTickmarks(TQSlider::Below); slider->setTickmarks(TQSlider::Below);
slider->setTickInterval(10); slider->setTickInterval(10);
@ -342,7 +342,7 @@ kSwarmSetup::kSwarmSetup( TQWidget *parent, const char *name )
min_size(label); min_size(label);
left->addWidget(label); left->addWidget(label);
slider = new TQSlider(MINBATCH, MAXBATCH, 20, maxLevels,Qt::Horizontal, main ); slider = new TQSlider(MINBATCH, MAXBATCH, 20, maxLevels,TQt::Horizontal, main );
slider->setMinimumSize( 120, 20 ); slider->setMinimumSize( 120, 20 );
slider->setTickmarks(TQSlider::Below); slider->setTickmarks(TQSlider::Below);
slider->setTickInterval(20); slider->setTickInterval(20);

@ -328,7 +328,7 @@ void CdeClient::addClientButtons( const TQString& s )
case 'M': case 'M':
if ( ! button[BtnMenu] ) if ( ! button[BtnMenu] )
{ {
button[BtnMenu] = new CdeButton( this, "menu", BtnMenu, i18n("Menu"), Qt::LeftButton|Qt::RightButton ); button[BtnMenu] = new CdeButton( this, "menu", BtnMenu, i18n("Menu"), TQt::LeftButton|TQt::RightButton );
connect( button[BtnMenu], TQT_SIGNAL(pressed()), TQT_SLOT(menuButtonPressed()) ); connect( button[BtnMenu], TQT_SIGNAL(pressed()), TQT_SLOT(menuButtonPressed()) );
connect( button[BtnMenu], TQT_SIGNAL(released()), TQT_SLOT(menuButtonReleased()) ); connect( button[BtnMenu], TQT_SIGNAL(released()), TQT_SLOT(menuButtonReleased()) );
titleLayout->addWidget( button[BtnMenu] ); titleLayout->addWidget( button[BtnMenu] );
@ -361,7 +361,7 @@ void CdeClient::addClientButtons( const TQString& s )
case 'A': case 'A':
if ( (! button[BtnMax] ) && isMaximizable() ) if ( (! button[BtnMax] ) && isMaximizable() )
{ {
button[BtnMax] = new CdeButton(this, "maximize", BtnMax, i18n("Maximize"), Qt::LeftButton|Qt::MidButton|Qt::RightButton); button[BtnMax] = new CdeButton(this, "maximize", BtnMax, i18n("Maximize"), TQt::LeftButton|TQt::MidButton|TQt::RightButton);
connect(button[BtnMax], TQT_SIGNAL(clicked()), connect(button[BtnMax], TQT_SIGNAL(clicked()),
TQT_SLOT(maximizeButtonClicked())); TQT_SLOT(maximizeButtonClicked()));
titleLayout->addWidget( button[BtnMax] ); titleLayout->addWidget( button[BtnMax] );
@ -715,7 +715,7 @@ KDecoration::Position CdeClient::mousePosition( const TQPoint& p ) const
void CdeClient::mouseDoubleClickEvent( TQMouseEvent * e ) void CdeClient::mouseDoubleClickEvent( TQMouseEvent * e )
{ {
if ( e->button() == Qt::LeftButton && titlebar->geometry().contains( e->pos() ) ) if ( e->button() == TQt::LeftButton && titlebar->geometry().contains( e->pos() ) )
titlebarDblClickOperation(); titlebarDblClickOperation();
} }
@ -727,7 +727,7 @@ void CdeClient::wheelEvent( TQWheelEvent * e )
void CdeClient::mousePressEvent( TQMouseEvent * e ) void CdeClient::mousePressEvent( TQMouseEvent * e )
{ {
if ( e->button() == Qt::LeftButton && titlebar->geometry().contains( e->pos() ) ) if ( e->button() == TQt::LeftButton && titlebar->geometry().contains( e->pos() ) )
{ {
if ( titlebarButtonMode ) if ( titlebarButtonMode )
{ {
@ -745,7 +745,7 @@ void CdeClient::borders(int &left, int &right, int &top, int &bottom) const
void CdeClient::mouseReleaseEvent( TQMouseEvent * e ) void CdeClient::mouseReleaseEvent( TQMouseEvent * e )
{ {
if ( e->button() == Qt::LeftButton && titlebarPressed ) if ( e->button() == TQt::LeftButton && titlebarPressed )
{ {
titlebarPressed = false; titlebarPressed = false;
widget()->repaint(titlebar->geometry(), false); widget()->repaint(titlebar->geometry(), false);
@ -785,7 +785,7 @@ bool CdeClient::eventFilter(TQObject *o, TQEvent *e)
CdeButton::CdeButton(CdeClient* parent, CdeButton::CdeButton(CdeClient* parent,
const char* name, int btnType, const TQString& tip, int realize_btns) const char* name, int btnType, const TQString& tip, int realize_btns)
: TQButton(parent->widget(), name), m_btnType(btnType), last_button(Qt::NoButton) : TQButton(parent->widget(), name), m_btnType(btnType), last_button(TQt::NoButton)
{ {
setBackgroundMode( TQWidget::NoBackground ); setBackgroundMode( TQWidget::NoBackground );
setFixedSize( s_buttonSize, s_buttonSize ); setFixedSize( s_buttonSize, s_buttonSize );
@ -847,7 +847,7 @@ void CdeButton::mousePressEvent(TQMouseEvent *e)
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me(e->type(), e->pos(), TQMouseEvent me(e->type(), e->pos(),
e->globalPos(), (e->button()&m_realize_buttons)?Qt::LeftButton:Qt::NoButton, e->state()); e->globalPos(), (e->button()&m_realize_buttons)?TQt::LeftButton:TQt::NoButton, e->state());
TQButton::mousePressEvent(&me); TQButton::mousePressEvent(&me);
} }
@ -855,7 +855,7 @@ void CdeButton::mouseReleaseEvent(TQMouseEvent * e)
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me(e->type(), e->pos(), TQMouseEvent me(e->type(), e->pos(),
e->globalPos(), (e->button()&m_realize_buttons)?Qt::LeftButton:Qt::NoButton, e->state()); e->globalPos(), (e->button()&m_realize_buttons)?TQt::LeftButton:TQt::NoButton, e->state());
TQButton::mouseReleaseEvent(&me); TQButton::mouseReleaseEvent(&me);
} }

@ -39,7 +39,7 @@ class CdeButton : public TQButton
{ {
public: public:
CdeButton( CdeClient* parent=0, const char* name=0, int btnType=0, CdeButton( CdeClient* parent=0, const char* name=0, int btnType=0,
const TQString& tip=NULL, int realize_btns = Qt::LeftButton ); const TQString& tip=NULL, int realize_btns = TQt::LeftButton );
void reset(); void reset();
ButtonState lastButton() { return last_button; } ButtonState lastButton() { return last_button; }

@ -29,7 +29,7 @@ CdeConfig::CdeConfig( TDEConfig* conf, TQWidget* parent )
groupBox = new TQVBox( parent ); groupBox = new TQVBox( parent );
bgAlign = new TQButtonGroup( 3, Qt::Horizontal, i18n("Text &Alignment"), groupBox ); bgAlign = new TQButtonGroup( 3, TQt::Horizontal, i18n("Text &Alignment"), groupBox );
bgAlign->setExclusive( true ); bgAlign->setExclusive( true );
TQWhatsThis::add( bgAlign, i18n("Use these buttons to set the alignment of the titlebar caption text.") ); TQWhatsThis::add( bgAlign, i18n("Use these buttons to set the alignment of the titlebar caption text.") );
new TQRadioButton( i18n("Left"), bgAlign, "AlignLeft" ); new TQRadioButton( i18n("Left"), bgAlign, "AlignLeft" );

@ -78,7 +78,7 @@ GlowConfigDialog::GlowConfigDialog( TDEConfig * conf, TQWidget * parent )
slotLoadThemeList(); slotLoadThemeList();
_button_glow_color_group_box = new TQGroupBox( _button_glow_color_group_box = new TQGroupBox(
0, Qt::Horizontal, i18n("Button Glow Colors"), _main_group_box); 0, TQt::Horizontal, i18n("Button Glow Colors"), _main_group_box);
TQHBoxLayout *colorHBoxLayout = TQHBoxLayout *colorHBoxLayout =
new TQHBoxLayout(_button_glow_color_group_box->layout()); new TQHBoxLayout(_button_glow_color_group_box->layout());

@ -184,7 +184,7 @@ void GlowButton::mousePressEvent( TQMouseEvent *e )
// without pretending LeftButton, clicking on the button with MidButton // without pretending LeftButton, clicking on the button with MidButton
// or RightButton would cause unwanted titlebar action // or RightButton would cause unwanted titlebar action
TQMouseEvent me (e->type(), e->pos(), e->globalPos(), TQMouseEvent me (e->type(), e->pos(), e->globalPos(),
(e->button()&m_realizeButtons)?Qt::LeftButton:Qt::NoButton, e->state()); (e->button()&m_realizeButtons)?TQt::LeftButton:TQt::NoButton, e->state());
TQButton::mousePressEvent(&me); TQButton::mousePressEvent(&me);
} }
@ -199,7 +199,7 @@ void GlowButton::mouseReleaseEvent( TQMouseEvent *e )
m_timerStatus = Stop; m_timerStatus = Stop;
} }
TQMouseEvent me (e->type(), e->pos(), e->globalPos(), TQMouseEvent me (e->type(), e->pos(), e->globalPos(),
(e->button()&m_realizeButtons)?Qt::LeftButton:Qt::NoButton, e->state()); (e->button()&m_realizeButtons)?TQt::LeftButton:TQt::NoButton, e->state());
TQButton::mouseReleaseEvent(&me); TQButton::mouseReleaseEvent(&me);
} }

@ -118,7 +118,7 @@ public:
const TQColor & glow_color); const TQColor & glow_color);
GlowButton* createGlowButton( GlowButton* createGlowButton(
TQWidget *parent, const char* name, const TQString& tip, const int realizeBtns = Qt::LeftButton); TQWidget *parent, const char* name, const TQString& tip, const int realizeBtns = TQt::LeftButton);
private: private:
int _steps; int _steps;

@ -529,7 +529,7 @@ void GlowClient::showEvent( TQShowEvent * )
void GlowClient::mouseDoubleClickEvent( TQMouseEvent *e ) void GlowClient::mouseDoubleClickEvent( TQMouseEvent *e )
{ {
if(e->button() == Qt::LeftButton && _title_spacer->geometry().contains(e->pos())) if(e->button() == TQt::LeftButton && _title_spacer->geometry().contains(e->pos()))
titlebarDblClickOperation(); titlebarDblClickOperation();
} }
@ -652,7 +652,7 @@ void GlowClient::createButtons()
TQSize size = globals->theme()->buttonSize; TQSize size = globals->theme()->buttonSize;
m_stickyButton = factory->createGlowButton(widget(), m_stickyButton = factory->createGlowButton(widget(),
"StickyButton", isOnAllDesktops()?i18n("Not on all desktops"):i18n("On all desktops"), Qt::LeftButton|Qt::RightButton); "StickyButton", isOnAllDesktops()?i18n("Not on all desktops"):i18n("On all desktops"), TQt::LeftButton|TQt::RightButton);
m_stickyButton->setFixedSize(size); m_stickyButton->setFixedSize(size);
connect(m_stickyButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(toggleOnAllDesktops())); connect(m_stickyButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(toggleOnAllDesktops()));
m_buttonList.insert(m_buttonList.end(), m_stickyButton); m_buttonList.insert(m_buttonList.end(), m_stickyButton);
@ -670,7 +670,7 @@ void GlowClient::createButtons()
m_buttonList.insert(m_buttonList.end(), m_minimizeButton); m_buttonList.insert(m_buttonList.end(), m_minimizeButton);
m_maximizeButton=factory->createGlowButton(widget(), m_maximizeButton=factory->createGlowButton(widget(),
"MaximizeButton", i18n("Maximize"), Qt::LeftButton|Qt::MidButton|Qt::RightButton); "MaximizeButton", i18n("Maximize"), TQt::LeftButton|TQt::MidButton|TQt::RightButton);
m_maximizeButton->setFixedSize(size); m_maximizeButton->setFixedSize(size);
connect(m_maximizeButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotMaximize())); connect(m_maximizeButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotMaximize()));
m_buttonList.insert(m_buttonList.end(), m_maximizeButton); m_buttonList.insert(m_buttonList.end(), m_maximizeButton);

@ -388,8 +388,8 @@ void ThemeHandler::initTheme()
setPixmap( frameTR, "frame", "TR.xpm" ); setPixmap( frameTR, "frame", "TR.xpm" );
// Sides // Sides
setPixmap( frameL, "frame", "L.xpm", true,Qt::Vertical ); setPixmap( frameL, "frame", "L.xpm", true,TQt::Vertical );
setPixmap( frameR, "frame", "R.xpm", true,Qt::Vertical ); setPixmap( frameR, "frame", "R.xpm", true,TQt::Vertical );
// Bottom // Bottom
setPixmap( frameBL, "frame", "BL.xpm" ); setPixmap( frameBL, "frame", "BL.xpm" );
@ -843,7 +843,7 @@ void IceWMButton::mousePressEvent( TQMouseEvent* e )
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), TQMouseEvent me ( e->type(), e->pos(), e->globalPos(),
(e->button()&m_realizeButtons)?Qt::LeftButton:Qt::NoButton, e->state() ); (e->button()&m_realizeButtons)?TQt::LeftButton:TQt::NoButton, e->state() );
TQButton::mousePressEvent( &me ); TQButton::mousePressEvent( &me );
} }
@ -852,7 +852,7 @@ void IceWMButton::mouseReleaseEvent( TQMouseEvent* e )
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), TQMouseEvent me ( e->type(), e->pos(), e->globalPos(),
(e->button()&m_realizeButtons)?Qt::LeftButton:Qt::NoButton, e->state() ); (e->button()&m_realizeButtons)?TQt::LeftButton:TQt::NoButton, e->state() );
TQButton::mouseReleaseEvent( &me ); TQButton::mouseReleaseEvent( &me );
} }
@ -976,7 +976,7 @@ void IceWMClient::addClientButtons( const TQString& s )
if (showMenuButtonIcon) { if (showMenuButtonIcon) {
renderMenuIcons(); renderMenuIcons();
button[BtnSysMenu] = new IceWMButton(this, "menu", button[BtnSysMenu] = new IceWMButton(this, "menu",
&menuButtonWithIconPix, false, i18n("Menu"), Qt::LeftButton|Qt::RightButton); &menuButtonWithIconPix, false, i18n("Menu"), TQt::LeftButton|TQt::RightButton);
} }
else else
button[BtnSysMenu] = new IceWMButton(this, "menu", button[BtnSysMenu] = new IceWMButton(this, "menu",
@ -1005,7 +1005,7 @@ void IceWMClient::addClientButtons( const TQString& s )
if ( validPixmaps(maximizePix) && !button[BtnMaximize] && isMaximizable() ) if ( validPixmaps(maximizePix) && !button[BtnMaximize] && isMaximizable() )
{ {
button[BtnMaximize] = new IceWMButton(this, "maximize", button[BtnMaximize] = new IceWMButton(this, "maximize",
&maximizePix, false, i18n("Maximize"), Qt::LeftButton|Qt::MidButton|Qt::RightButton); &maximizePix, false, i18n("Maximize"), TQt::LeftButton|TQt::MidButton|TQt::RightButton);
hb->addWidget( button[BtnMaximize] ); hb->addWidget( button[BtnMaximize] );
connect( button[BtnMaximize], TQT_SIGNAL(clicked()), connect( button[BtnMaximize], TQT_SIGNAL(clicked()),
this, TQT_SLOT(slotMaximize())); this, TQT_SLOT(slotMaximize()));
@ -1456,7 +1456,7 @@ void IceWMClient::showEvent(TQShowEvent *ev)
void IceWMClient::mouseDoubleClickEvent( TQMouseEvent * e ) void IceWMClient::mouseDoubleClickEvent( TQMouseEvent * e )
{ {
if( e->button() != Qt::LeftButton ) if( e->button() != TQt::LeftButton )
return; return;
TQRect r; TQRect r;

@ -101,7 +101,7 @@ class IceWMButton : public TQButton
public: public:
IceWMButton( IceWMClient *parent=0, const char *name=0, IceWMButton( IceWMClient *parent=0, const char *name=0,
TQPixmap* (*p)[2]=0L, bool isToggle=false, TQPixmap* (*p)[2]=0L, bool isToggle=false,
const TQString& tip=NULL, const int realizeBtns = Qt::LeftButton ); const TQString& tip=NULL, const int realizeBtns = TQt::LeftButton );
void setTipText(const TQString &tip); void setTipText(const TQString &tip);
void usePixmap( TQPixmap* (*p)[2] ); void usePixmap( TQPixmap* (*p)[2] );
TQSize sizeHint() const; TQSize sizeHint() const;

@ -495,7 +495,7 @@ void StdClient::paintEvent( TQPaintEvent* )
void StdClient::mouseDoubleClickEvent( TQMouseEvent * e ) void StdClient::mouseDoubleClickEvent( TQMouseEvent * e )
{ {
if ( e->button() == Qt::LeftButton && titlebar->geometry().contains( e->pos() ) ) if ( e->button() == TQt::LeftButton && titlebar->geometry().contains( e->pos() ) )
titlebarDblClickOperation(); titlebarDblClickOperation();
} }
@ -666,7 +666,7 @@ void StdToolClient::paintEvent( TQPaintEvent* )
void StdToolClient::mouseDoubleClickEvent( TQMouseEvent * e ) void StdToolClient::mouseDoubleClickEvent( TQMouseEvent * e )
{ {
if ( e->button() == Qt::LeftButton && titlebar->geometry().contains( e->pos() ) ) if ( e->button() == TQt::LeftButton && titlebar->geometry().contains( e->pos() ) )
titlebarDblClickOperation(); titlebarDblClickOperation();
} }

@ -122,13 +122,13 @@ protected:
void mousePressEvent( TQMouseEvent* e ) void mousePressEvent( TQMouseEvent* e )
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), Qt::LeftButton, e->state() ); TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), TQt::LeftButton, e->state() );
TQToolButton::mousePressEvent( &me ); TQToolButton::mousePressEvent( &me );
} }
void mouseReleaseEvent( TQMouseEvent* e ) void mouseReleaseEvent( TQMouseEvent* e )
{ {
TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), Qt::LeftButton, e->state() ); TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), TQt::LeftButton, e->state() );
TQToolButton::mouseReleaseEvent( &me ); TQToolButton::mouseReleaseEvent( &me );
} }

@ -325,7 +325,7 @@ NextButton::NextButton(NextClient *parent, const char *name,
const unsigned char *bitmap, int bw, int bh, const unsigned char *bitmap, int bw, int bh,
const TQString& tip, const int realizeBtns) const TQString& tip, const int realizeBtns)
: TQButton(parent->widget(), name), : TQButton(parent->widget(), name),
deco(NULL), client(parent), last_button(Qt::NoButton) deco(NULL), client(parent), last_button(TQt::NoButton)
{ {
realizeButtons = realizeBtns; realizeButtons = realizeBtns;
@ -377,7 +377,7 @@ void NextButton::mousePressEvent( TQMouseEvent* e )
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me( e->type(), e->pos(), e->globalPos(), TQMouseEvent me( e->type(), e->pos(), e->globalPos(),
(e->button()&realizeButtons)?Qt::LeftButton:Qt::NoButton, e->state() ); (e->button()&realizeButtons)?TQt::LeftButton:TQt::NoButton, e->state() );
TQButton::mousePressEvent( &me ); TQButton::mousePressEvent( &me );
} }
@ -385,7 +385,7 @@ void NextButton::mouseReleaseEvent( TQMouseEvent* e )
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me( e->type(), e->pos(), e->globalPos(), TQMouseEvent me( e->type(), e->pos(), e->globalPos(),
(e->button()&realizeButtons)?Qt::LeftButton:Qt::NoButton, e->state() ); (e->button()&realizeButtons)?TQt::LeftButton:TQt::NoButton, e->state() );
TQButton::mouseReleaseEvent( &me ); TQButton::mouseReleaseEvent( &me );
} }
@ -479,7 +479,7 @@ void NextClient::addButtons(TQBoxLayout* titleLayout, const TQString& spec)
if (isMaximizable()) { if (isMaximizable()) {
button[MAXIMIZE_IDX] = button[MAXIMIZE_IDX] =
new NextButton(this, "maximize", maximize_bits, 10, 10, new NextButton(this, "maximize", maximize_bits, 10, 10,
i18n("Maximize"), Qt::LeftButton|Qt::MidButton|Qt::RightButton); i18n("Maximize"), TQt::LeftButton|TQt::MidButton|TQt::RightButton);
titleLayout->addWidget( button[MAXIMIZE_IDX] ); titleLayout->addWidget( button[MAXIMIZE_IDX] );
connect( button[MAXIMIZE_IDX], TQT_SIGNAL(clicked()), connect( button[MAXIMIZE_IDX], TQT_SIGNAL(clicked()),
this, TQT_SLOT(maximizeButtonClicked()) ); this, TQT_SLOT(maximizeButtonClicked()) );
@ -509,7 +509,7 @@ void NextClient::addButtons(TQBoxLayout* titleLayout, const TQString& spec)
case 'M': case 'M':
button[MENU_IDX] = button[MENU_IDX] =
new NextButton(this, "menu", NULL, 10, 10, i18n("Menu"), Qt::LeftButton|Qt::RightButton); new NextButton(this, "menu", NULL, 10, 10, i18n("Menu"), TQt::LeftButton|TQt::RightButton);
titleLayout->addWidget( button[MENU_IDX] ); titleLayout->addWidget( button[MENU_IDX] );
// NOTE DIFFERENCE: capture pressed(), not clicked() // NOTE DIFFERENCE: capture pressed(), not clicked()
connect( button[MENU_IDX], TQT_SIGNAL(pressed()), connect( button[MENU_IDX], TQT_SIGNAL(pressed()),
@ -742,7 +742,7 @@ void NextClient::paintEvent( TQPaintEvent* )
void NextClient::mouseDoubleClickEvent( TQMouseEvent * e ) void NextClient::mouseDoubleClickEvent( TQMouseEvent * e )
{ {
if (e->button() == Qt::LeftButton && titlebar->geometry().contains( e->pos() ) ) if (e->button() == TQt::LeftButton && titlebar->geometry().contains( e->pos() ) )
titlebarDblClickOperation(); titlebarDblClickOperation();
} }

@ -21,7 +21,7 @@ class NextButton : public TQButton
public: public:
NextButton(NextClient *parent=0, const char *name=0, NextButton(NextClient *parent=0, const char *name=0,
const unsigned char *bitmap=NULL, int bw=0, int bh=0, const unsigned char *bitmap=NULL, int bw=0, int bh=0,
const TQString& tip=NULL, const int realizeBtns = Qt::LeftButton); const TQString& tip=NULL, const int realizeBtns = TQt::LeftButton);
void setBitmap(const unsigned char *bitmap, int bw, int bh); void setBitmap(const unsigned char *bitmap, int bw, int bh);
void reset(); void reset();
ButtonState lastButton() { return last_button; } ButtonState lastButton() { return last_button; }

@ -281,7 +281,7 @@ OpenLook::showEvent(TQShowEvent *)
void void
OpenLook::mouseDoubleClickEvent(TQMouseEvent * e) OpenLook::mouseDoubleClickEvent(TQMouseEvent * e)
{ {
if (e->button() == Qt::LeftButton && titleRect().contains(e->pos())) if (e->button() == TQt::LeftButton && titleRect().contains(e->pos()))
{ {
titlebarDblClickOperation(); titlebarDblClickOperation();
} }

@ -31,7 +31,7 @@ Button::Button(TQWidget *parent, const TQString& tip,
const ButtonState realizeButtons) const ButtonState realizeButtons)
: TQWidget(parent, "Button", 0), : TQWidget(parent, "Button", 0),
realizeButtons_(realizeButtons), realizeButtons_(realizeButtons),
lastButton_(Qt::NoButton), lastButton_(TQt::NoButton),
alignment_(Left), alignment_(Left),
down_ (false), down_ (false),
active_ (false) active_ (false)
@ -72,7 +72,7 @@ void Button::mousePressEvent(TQMouseEvent *e)
repaint(); repaint();
TQMouseEvent me(e->type(), e->pos(), e->globalPos(), TQMouseEvent me(e->type(), e->pos(), e->globalPos(),
(e->button()&realizeButtons_) ? Qt::LeftButton : Qt::NoButton, (e->button()&realizeButtons_) ? TQt::LeftButton : TQt::NoButton,
e->state()); e->state());
TQWidget::mousePressEvent(&me); TQWidget::mousePressEvent(&me);
} }
@ -83,7 +83,7 @@ void Button::mouseReleaseEvent(TQMouseEvent *e)
lastButton_ = e->button(); lastButton_ = e->button();
repaint(); repaint();
TQMouseEvent me(e->type(), e->pos(), e->globalPos(), TQMouseEvent me(e->type(), e->pos(), e->globalPos(),
(e->button()&realizeButtons_) ? Qt::LeftButton : Qt::NoButton, (e->button()&realizeButtons_) ? TQt::LeftButton : TQt::NoButton,
e->state()); e->state());
TQWidget::mouseReleaseEvent(&me); TQWidget::mouseReleaseEvent(&me);
} }

@ -43,7 +43,7 @@ class Button : public TQWidget
enum Alignment { Left, Right }; enum Alignment { Left, Right };
Button(TQWidget *parent, const TQString &tip, Button(TQWidget *parent, const TQString &tip,
const ButtonState realizeButton = Qt::LeftButton); const ButtonState realizeButton = TQt::LeftButton);
virtual ~Button(); virtual ~Button();
void setAlignment(Alignment); void setAlignment(Alignment);

@ -352,7 +352,7 @@ KDecoration::Position Manager::mousePosition(const TQPoint& p) const
void Manager::mouseDoubleClickEvent(TQMouseEvent *e) void Manager::mouseDoubleClickEvent(TQMouseEvent *e)
{ {
if (e->button() == Qt::LeftButton && titleSpacer_->geometry().contains(e->pos())) if (e->button() == TQt::LeftButton && titleSpacer_->geometry().contains(e->pos()))
titlebarDblClickOperation(); titlebarDblClickOperation();
} }

@ -67,7 +67,7 @@ static const char * const unmaximise_xpm[] = {
MaximiseButton::MaximiseButton(TQWidget * parent) MaximiseButton::MaximiseButton(TQWidget * parent)
: Button(parent, i18n("Maximize"), : Button(parent, i18n("Maximize"),
(ButtonState)(Qt::LeftButton|Qt::MidButton|Qt::RightButton)), (ButtonState)(TQt::LeftButton|TQt::MidButton|TQt::RightButton)),
on_(false) on_(false)
{ {
setPixmap(TQPixmap((const char **)maximise_xpm)); setPixmap(TQPixmap((const char **)maximise_xpm));

@ -168,7 +168,7 @@ smoothblendButton::smoothblendButton(smoothblendClient *parent, const char *name
type_(type), type_(type),
size_(button_size), size_(button_size),
deco_(0), deco_(0),
lastmouse_(Qt::NoButton), lastmouse_(TQt::NoButton),
hover_(false) hover_(false)
{ {
setBackgroundMode(NoBackground); setBackgroundMode(NoBackground);
@ -282,9 +282,9 @@ void smoothblendButton::mousePressEvent(TQMouseEvent* e) {
lastmouse_ = e->button(); lastmouse_ = e->button();
// translate and pass on mouse event // translate and pass on mouse event
int button = Qt::LeftButton; int button = TQt::LeftButton;
if ((type_ != ButtonMax) && (e->button() != Qt::LeftButton)) { if ((type_ != ButtonMax) && (e->button() != TQt::LeftButton)) {
button = Qt::NoButton; // middle & right buttons inappropriate button = TQt::NoButton; // middle & right buttons inappropriate
} }
TQMouseEvent me(e->type(), e->pos(), e->globalPos(), TQMouseEvent me(e->type(), e->pos(), e->globalPos(),
button, e->state()); button, e->state());
@ -300,9 +300,9 @@ void smoothblendButton::mouseReleaseEvent(TQMouseEvent* e) {
lastmouse_ = e->button(); lastmouse_ = e->button();
// translate and pass on mouse event // translate and pass on mouse event
int button = Qt::LeftButton; int button = TQt::LeftButton;
if ((type_ != ButtonMax) && (e->button() != Qt::LeftButton)) { if ((type_ != ButtonMax) && (e->button() != TQt::LeftButton)) {
button = Qt::NoButton; // middle & right buttons inappropriate button = TQt::NoButton; // middle & right buttons inappropriate
} }
TQMouseEvent me(e->type(), e->pos(), e->globalPos(), button, e->state()); TQMouseEvent me(e->type(), e->pos(), e->globalPos(), button, e->state());
TQButton::mouseReleaseEvent(&me); TQButton::mouseReleaseEvent(&me);

@ -272,14 +272,14 @@ void SystemButton::drawButton(TQPainter *p)
void SystemButton::mousePressEvent( TQMouseEvent* e ) void SystemButton::mousePressEvent( TQMouseEvent* e )
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), Qt::LeftButton, e->state() ); TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), TQt::LeftButton, e->state() );
TQButton::mousePressEvent( &me ); TQButton::mousePressEvent( &me );
} }
void SystemButton::mouseReleaseEvent( TQMouseEvent* e ) void SystemButton::mouseReleaseEvent( TQMouseEvent* e )
{ {
last_button = e->button(); last_button = e->button();
TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), Qt::LeftButton, e->state() ); TQMouseEvent me ( e->type(), e->pos(), e->globalPos(), TQt::LeftButton, e->state() );
TQButton::mouseReleaseEvent( &me ); TQButton::mouseReleaseEvent( &me );
} }
@ -608,7 +608,7 @@ void SystemClient::showEvent(TQShowEvent *)
void SystemClient::mouseDoubleClickEvent( TQMouseEvent * e ) void SystemClient::mouseDoubleClickEvent( TQMouseEvent * e )
{ {
if ( e->button() == Qt::LeftButton && titlebar->geometry().contains( e->pos() ) ) if ( e->button() == TQt::LeftButton && titlebar->geometry().contains( e->pos() ) )
titlebarDblClickOperation(); titlebarDblClickOperation();
} }

Loading…
Cancel
Save