summaryrefslogtreecommitdiffstats
path: root/client/deKoratorclient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/deKoratorclient.cpp')
-rw-r--r--client/deKoratorclient.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/client/deKoratorclient.cpp b/client/deKoratorclient.cpp
index ac294ca..a88b365 100644
--- a/client/deKoratorclient.cpp
+++ b/client/deKoratorclient.cpp
@@ -1209,7 +1209,7 @@ DeKoratorButton::DeKoratorButton( bool isLeft, int buttonWidth, int buttonHeight
TQToolTip::add
( this, tip );
animTmr = new TQTimer( this );
- connect( animTmr, SIGNAL( timeout() ), this, SLOT( animate() ) );
+ connect( animTmr, TQ_SIGNAL( timeout() ), this, TQ_SLOT( animate() ) );
}
//////////////////////////////////////////////////////////////////////////////
@@ -1714,8 +1714,8 @@ void DeKoratorClient::init()
mainLayout_->addItem( bottomSpacer_ );
// connections
- connect( this, SIGNAL( keepAboveChanged( bool ) ), SLOT( keepAboveChange( bool ) ) );
- connect( this, SIGNAL( keepBelowChanged( bool ) ), SLOT( keepBelowChange( bool ) ) );
+ connect( this, TQ_SIGNAL( keepAboveChanged( bool ) ), TQ_SLOT( keepAboveChange( bool ) ) );
+ connect( this, TQ_SIGNAL( keepBelowChanged( bool ) ), TQ_SLOT( keepBelowChange( bool ) ) );
captionBufferDirty_ = true;
//maskDirty_ = true;
@@ -1745,9 +1745,9 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
{
button[ ButtonMenu ] =
new DeKoratorButton( isLeft, ( BTNMENUWIDTH < 16 ) ? 16 : BTNMENUWIDTH, BTNMENUHEIGHT, this, "menu", i18n( "Menu" ), ButtonMenu, menu );
- connect( button[ ButtonMenu ], SIGNAL( pressed() ),
- this, SLOT( menuButtonPressed() ) );
- connect( button[ ButtonMenu ], SIGNAL( released() ), this, SLOT( menuButtonReleased() ) );
+ connect( button[ ButtonMenu ], TQ_SIGNAL( pressed() ),
+ this, TQ_SLOT( menuButtonPressed() ) );
+ connect( button[ ButtonMenu ], TQ_SIGNAL( released() ), this, TQ_SLOT( menuButtonReleased() ) );
layout->addWidget( button[ ButtonMenu ] );
}
@@ -1774,8 +1774,8 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
}
button[ ButtonSticky ] =
new DeKoratorButton( isLeft, BTNSTICKYWIDTH, BTNSTICKYHEIGHT, this, "sticky", d ? i18n( "Sticky" ) : i18n( "Un-Sticky" ), ButtonSticky, btnType );
- connect( button[ ButtonSticky ], SIGNAL( clicked() ),
- this, SLOT( toggleOnAllDesktops() ) );
+ connect( button[ ButtonSticky ], TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( toggleOnAllDesktops() ) );
layout->addWidget( button[ ButtonSticky ] );
}
break;
@@ -1787,8 +1787,8 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
button[ ButtonHelp ] =
new DeKoratorButton( isLeft, BTNHELPEWIDTH, BTNHELPEHEIGHT, this, "help", i18n( "Help" ),
ButtonHelp, help );
- connect( button[ ButtonHelp ], SIGNAL( clicked() ),
- this, SLOT( showContextHelp() ) );
+ connect( button[ ButtonHelp ], TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( showContextHelp() ) );
layout->addWidget( button[ ButtonHelp ] );
}
break;
@@ -1799,8 +1799,8 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
{
button[ ButtonMin ] =
new DeKoratorButton( isLeft, BTNMINWIDTH, BTNMINHEIGHT, this, "iconify", i18n( "Minimize" ), ButtonMin, min );
- connect( button[ ButtonMin ], SIGNAL( clicked() ),
- this, SLOT( minimize() ) );
+ connect( button[ ButtonMin ], TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( minimize() ) );
layout->addWidget( button[ ButtonMin ] );
}
break;
@@ -1833,8 +1833,8 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
button[ ButtonMax ] =
new DeKoratorButton( isLeft, BTNMAXWIDTH, BTNMAXHEIGHT, this, "maximize", m ? i18n( "Restore" ) : i18n( "Maximize" ),
ButtonMax, btnType );
- connect( button[ ButtonMax ], SIGNAL( clicked() ),
- this, SLOT( maxButtonPressed() ) );
+ connect( button[ ButtonMax ], TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( maxButtonPressed() ) );
layout->addWidget( button[ ButtonMax ] );
}
break;
@@ -1846,8 +1846,8 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
button[ ButtonClose ] =
new DeKoratorButton( isLeft, BTNCLOSEWIDTH, BTNCLOSEHEIGHT, this, "close", i18n( "Close" ),
ButtonClose, close );
- connect( button[ ButtonClose ], SIGNAL( clicked() ),
- this, SLOT( closeWindow() ) );
+ connect( button[ ButtonClose ], TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( closeWindow() ) );
layout->addWidget( button[ ButtonClose ] );
}
break;
@@ -1869,8 +1869,8 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
button[ ButtonAbove ] =
new DeKoratorButton( isLeft, BTNABOVEWIDTH, BTNABOVEHEIGHT, this, "above",
i18n( "Keep Above Others" ), ButtonAbove, btnType );
- connect( button[ ButtonAbove ], SIGNAL( clicked() ),
- this, SLOT( aboveButtonPressed() ) );
+ connect( button[ ButtonAbove ], TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( aboveButtonPressed() ) );
layout->addWidget( button[ ButtonAbove ] );
}
break;
@@ -1892,8 +1892,8 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
button[ ButtonBelow ] =
new DeKoratorButton( isLeft, BTNBELOWWIDTH, BTNBELOWHEIGHT, this, "below",
i18n( "Keep Below Others" ), ButtonBelow, btnType );
- connect( button[ ButtonBelow ], SIGNAL( clicked() ),
- this, SLOT( belowButtonPressed() ) );
+ connect( button[ ButtonBelow ], TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( belowButtonPressed() ) );
layout->addWidget( button[ ButtonBelow ] );
}
break;
@@ -1914,8 +1914,8 @@ void DeKoratorClient::addButtons( TQBoxLayout * layout, const TQString & s, bool
button[ ButtonShade ] =
new DeKoratorButton( isLeft, BTNSHADEWIDTH, BTNSHADEHEIGHT, this, "shade", s ? i18n( "Unshade" ) : i18n( "Shade" ),
ButtonShade, btnType );
- connect( button[ ButtonShade ], SIGNAL( clicked() ),
- this, SLOT( shadeButtonPressed() ) );
+ connect( button[ ButtonShade ], TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( shadeButtonPressed() ) );
layout->addWidget( button[ ButtonShade ] );
}
break;