summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:36:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:36:22 +0900
commitbbb852bc4da9595b161550ff3551597732d7a5a5 (patch)
tree8a2dd47d52826d20074f34df750b2a56bba331d0
parenta655d265a43702e001f139cb43d61a709768bd82 (diff)
downloadtdedocker-bbb852bc.tar.gz
tdedocker-bbb852bc.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/tdedocker.cpp2
-rw-r--r--src/tqtraylabel.cpp38
-rw-r--r--src/traylabelmgr.cpp18
3 files changed, 29 insertions, 29 deletions
diff --git a/src/tdedocker.cpp b/src/tdedocker.cpp
index f32cea6..12afca3 100644
--- a/src/tdedocker.cpp
+++ b/src/tdedocker.cpp
@@ -45,7 +45,7 @@ TDEDocker::TDEDocker()
: TDEApplication(), mTrayLabelMgr(NULL)
{
// Set ourselves up to be called from the application loop
- connect(&mInitTimer, SIGNAL(timeout()), this, SLOT(doInit()));
+ connect(&mInitTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(doInit()));
mInitTimer.start(0, true);
// Required so that the saved config is correctly loaded
diff --git a/src/tqtraylabel.cpp b/src/tqtraylabel.cpp
index 7df1d45..056010c 100644
--- a/src/tqtraylabel.cpp
+++ b/src/tqtraylabel.cpp
@@ -76,7 +76,7 @@ void TQTrayLabel::initialize(void)
setAlignment(TQt::AlignCenter);
setBackgroundMode(X11ParentRelative);
- connect(&mRealityMonitor, SIGNAL(timeout()), this, SLOT(realityCheck()));
+ connect(&mRealityMonitor, TQ_SIGNAL(timeout()), this, TQ_SLOT(realityCheck()));
setDockedWindow(mDockedWindow);
sysTrayStatus(TQPaintDevice::x11AppDisplay(), &mSysTray);
@@ -288,7 +288,7 @@ void TQTrayLabel::dock(void)
* working with with a delay of as little as 50ms. But since I
* dont understand why this delay is required, I am justifiably paranoid
*/
- TQTimer::singleShot(500, this, SLOT(show()));
+ TQTimer::singleShot(500, this, TQ_SLOT(show()));
// let the world know
emit docked(this);
@@ -330,7 +330,7 @@ void TQTrayLabel::map(void)
* the WM 200ms to do that. We will override that value to -1 (all
* desktops) on showOnAllDesktops().
*/
- TQTimer::singleShot(200, this, SLOT(showOnAllDesktops()));
+ TQTimer::singleShot(200, this, TQ_SLOT(showOnAllDesktops()));
}
/*
@@ -355,13 +355,13 @@ void TQTrayLabel::map(void)
sendMessage(display, tqt_xrootwin(), mDockedWindow, "_NET_ACTIVE_WINDOW", 32,
SubstructureNotifyMask | SubstructureRedirectMask, l, sizeof(l));
// skipTaskbar modifies _NET_WM_STATE. Make sure we dont override WMs value
- TQTimer::singleShot(230, this, SLOT(skipTaskbar()));
+ TQTimer::singleShot(230, this, TQ_SLOT(skipTaskbar()));
// disable "dock when minized" (if enable) for a short while since we went to Iconic state
// (when the window is mapped, often an IconicState WM_STATE message is sent too
// just before the NormalState)
mSavedDWM = mDockWhenMinimized->isChecked(); // store for later use
mDockWhenMinimized->setChecked(false);
- TQTimer::singleShot(500, this, SLOT(toggleDockWhenMinimized()));
+ TQTimer::singleShot(500, this, TQ_SLOT(toggleDockWhenMinimized()));
}
void TQTrayLabel::withdraw(void)
@@ -574,7 +574,7 @@ void TQTrayLabel::setDockedWindow(Window w)
if (mWithdrawn)
{
// show the window for sometime before docking
- TQTimer::singleShot(500, this, SLOT(withdraw()));
+ TQTimer::singleShot(500, this, TQ_SLOT(withdraw()));
}
else map();
dock();
@@ -622,7 +622,7 @@ void TQTrayLabel::balloonText()
mBalloon->move(p);
mBalloon->show();
- TQTimer::singleShot(mBalloonTimeout, mBalloon, SLOT(hide()));
+ TQTimer::singleShot(mBalloonTimeout, mBalloon, TQ_SLOT(hide()));
#endif
}
@@ -840,7 +840,7 @@ void TQTrayLabel::mapEvent(void)
* the window. So we disable it for sometime and reanable.
*/
mDockWhenObscured->setChecked(false);
- TQTimer::singleShot(800, mDockWhenObscured, SLOT(toggle()));
+ TQTimer::singleShot(800, mDockWhenObscured, TQ_SLOT(toggle()));
TRACE("Turning off DWO for some time");
}
}
@@ -981,13 +981,13 @@ void TQTrayLabel::installMenu()
mOptionsMenu = new TDEPopupMenu(this);
mDockWhenRestored = new TDEToggleAction(i18n("Dock when session restored"), 0, this);
- connect(mDockWhenRestored, SIGNAL(toggled(bool)), this, SLOT(setDockWhenRestored(bool)));
+ connect(mDockWhenRestored, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(setDockWhenRestored(bool)));
mDockWhenRestored->plug(mOptionsMenu);
- mOptionsMenu->insertItem(i18n("Set Icon"), this, SLOT(setCustomIcon()));
+ mOptionsMenu->insertItem(i18n("Set Icon"), this, TQ_SLOT(setCustomIcon()));
mBalloonTimeoutAction = new TDEAction(i18n("Set balloon timeout"), 0, this);
- connect(mBalloonTimeoutAction, SIGNAL(activated()), this, SLOT(slotSetBalloonTimeout()));
+ connect(mBalloonTimeoutAction, TQ_SIGNAL(activated()), this, TQ_SLOT(slotSetBalloonTimeout()));
mBalloonTimeoutAction->plug(mOptionsMenu);
mDockWhenObscured = new TDEToggleAction(i18n("Dock when obscured"), 0, this);
@@ -1000,25 +1000,25 @@ void TQTrayLabel::installMenu()
mDockWhenFocusLost->plug(mOptionsMenu);
mSkipTaskbar = new TDEToggleAction(i18n("Skip taskbar"), 0, this);
- connect(mSkipTaskbar, SIGNAL(toggled(bool)), this, SLOT(setSkipTaskbar(bool)));
+ connect(mSkipTaskbar, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(setSkipTaskbar(bool)));
mSkipTaskbar->plug(mOptionsMenu);
mMainMenu = new TDEPopupMenu(this);
mMainMenu->insertItem(i18n("Options"), mOptionsMenu);
- mMainMenu->insertItem(i18n("Dock Another"), tlMgr, SLOT(dockAnother()));
- mMainMenu->insertItem(i18n("Undock All"), tlMgr, SLOT(undockAll()));
- mMainMenu->insertItem(i18n("Quit All"), tlMgr, SLOT(quitAll()));
+ mMainMenu->insertItem(i18n("Dock Another"), tlMgr, TQ_SLOT(dockAnother()));
+ mMainMenu->insertItem(i18n("Undock All"), tlMgr, TQ_SLOT(undockAll()));
+ mMainMenu->insertItem(i18n("Quit All"), tlMgr, TQ_SLOT(quitAll()));
mMainMenu->insertSeparator();
- mShowId = mMainMenu->insertItem(TQString("Show/Hide [untitled]"), this, SLOT(toggleShow()));
- mMainMenu->insertItem(TQString(i18n("Undock")), this, SLOT(undock()));
+ mShowId = mMainMenu->insertItem(TQString("Show/Hide [untitled]"), this, TQ_SLOT(toggleShow()));
+ mMainMenu->insertItem(TQString(i18n("Undock")), this, TQ_SLOT(undock()));
mMainMenu->insertSeparator();
mMainMenu->insertItem(SmallIcon("help"),KStdGuiItem::help().text(), (new KHelpMenu(this, TDEGlobal::instance()->aboutData()))->menu(), false);
- TDEAction *quitAction = KStdAction::quit(this, SLOT(close()), NULL);
+ TDEAction *quitAction = KStdAction::quit(this, TQ_SLOT(close()), NULL);
quitAction->plug(mMainMenu);
- connect(mMainMenu, SIGNAL(aboutToShow()), this, SLOT(updateMenu()));
+ connect(mMainMenu, TQ_SIGNAL(aboutToShow()), this, TQ_SLOT(updateMenu()));
// Apply defaults here
mDockWhenObscured->setChecked(false);
diff --git a/src/traylabelmgr.cpp b/src/traylabelmgr.cpp
index b011288..b262ac8 100644
--- a/src/traylabelmgr.cpp
+++ b/src/traylabelmgr.cpp
@@ -47,10 +47,10 @@ TrayLabelMgr* TrayLabelMgr::instance()
TrayLabelMgr::TrayLabelMgr() : mReady(false), mHiddenLabelsCount(0)
{
- connect(&restoreSessionTimer, SIGNAL(timeout()), this, SLOT(doRestoreSession()));
+ connect(&restoreSessionTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(doRestoreSession()));
// Set ourselves up to be called from the application loop
- TQTimer::singleShot(0, this, SLOT(startup()));
+ TQTimer::singleShot(0, this, TQ_SLOT(startup()));
}
TrayLabelMgr::~TrayLabelMgr()
@@ -76,7 +76,7 @@ void TrayLabelMgr::startup(void)
if (wait_time-- > 0 && do_wait)
{
TRACE("Will check sys tray status after 1 second");
- TQTimer::singleShot(1000, this, SLOT(startup()));
+ TQTimer::singleShot(1000, this, TQ_SLOT(startup()));
return;
}
@@ -117,12 +117,12 @@ void TrayLabelMgr::startup(void)
// Initialize a TQTrayLabel after its creation
void TrayLabelMgr::manageTrayLabel(TQTrayLabel *t)
{
- connect(t, SIGNAL(destroyed(TQObject *)), this, SLOT(trayLabelDestroyed(TQObject *)));
- connect(t, SIGNAL(undocked(TQTrayLabel *)), t, SLOT(deleteLater()));
+ connect(t, TQ_SIGNAL(destroyed(TQObject *)), this, TQ_SLOT(trayLabelDestroyed(TQObject *)));
+ connect(t, TQ_SIGNAL(undocked(TQTrayLabel *)), t, TQ_SLOT(deleteLater()));
// All TQTrayLabels will emit this signal. We just need one of them
if (mTrayLabels.count() == 0)
- connect(t, SIGNAL(sysTrayDestroyed()), this, SLOT(sysTrayDestroyed()));
+ connect(t, TQ_SIGNAL(sysTrayDestroyed()), this, TQ_SLOT(sysTrayDestroyed()));
mTrayLabels.prepend(t);
TRACE("New TQTrayLabel prepended. Count=%i", mTrayLabels.count());
@@ -484,8 +484,8 @@ void TrayLabelMgr::trayLabelDestroyed(TQObject *t)
else if (reconnect)
{
TRACE("Reconnecting");
- connect(mTrayLabels.getFirst(), SIGNAL(sysTrayDestroyed()),
- this, SLOT(sysTrayDestroyed()));
+ connect(mTrayLabels.getFirst(), TQ_SIGNAL(sysTrayDestroyed()),
+ this, TQ_SLOT(sysTrayDestroyed()));
}
}
@@ -497,7 +497,7 @@ void TrayLabelMgr::sysTrayDestroyed(void)
* to not pop up a box when the user is logging out. So, we set ourselves
* up to notify user after 3 seconds.
*/
- TQTimer::singleShot(3000, this, SLOT(notifySysTrayAbsence()));
+ TQTimer::singleShot(3000, this, TQ_SLOT(notifySysTrayAbsence()));
}
void TrayLabelMgr::notifySysTrayAbsence()