diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kicker/applets/swallow | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kicker/applets/swallow')
-rw-r--r-- | kicker/applets/swallow/prefwidget.cpp | 2 | ||||
-rw-r--r-- | kicker/applets/swallow/prefwidget.h | 2 | ||||
-rw-r--r-- | kicker/applets/swallow/swallow.cpp | 60 | ||||
-rw-r--r-- | kicker/applets/swallow/swallow.h | 22 |
4 files changed, 43 insertions, 43 deletions
diff --git a/kicker/applets/swallow/prefwidget.cpp b/kicker/applets/swallow/prefwidget.cpp index 2e443a6b2..0afdd90b8 100644 --- a/kicker/applets/swallow/prefwidget.cpp +++ b/kicker/applets/swallow/prefwidget.cpp @@ -19,7 +19,7 @@ #include "prefwidget.h" -PreferencesWidget::PreferencesWidget( SwallowCommandList *swc, QWidget *parent ) +PreferencesWidget::PreferencesWidget( SwallowCommandList *swc, TQWidget *parent ) : PreferencesWidgetBase(parent) { diff --git a/kicker/applets/swallow/prefwidget.h b/kicker/applets/swallow/prefwidget.h index 76ecce35e..a23d6414b 100644 --- a/kicker/applets/swallow/prefwidget.h +++ b/kicker/applets/swallow/prefwidget.h @@ -26,7 +26,7 @@ class PreferencesWidget : public PreferencesWidgetBase Q_OBJECT public: - PreferencesWidget( SwallowCommandList* swc, QWidget* parent = 0 ); + PreferencesWidget( SwallowCommandList* swc, TQWidget* parent = 0 ); // ~PreferencesWidget(); }; diff --git a/kicker/applets/swallow/swallow.cpp b/kicker/applets/swallow/swallow.cpp index b1224986b..7112c706a 100644 --- a/kicker/applets/swallow/swallow.cpp +++ b/kicker/applets/swallow/swallow.cpp @@ -20,8 +20,8 @@ #include <stdlib.h> -#include <qlayout.h> -#include <qstringlist.h> +#include <tqlayout.h> +#include <tqstringlist.h> #include <kapplication.h> #include <kcmdlineargs.h> @@ -40,9 +40,9 @@ #include "swallow.h" #include "prefwidget.h" -template class QPtrList<SwallowApp>; -typedef QPtrListIterator<SwallowApp> SwallowAppListIterator; -template class QPtrList<SwallowCommand>; +template class TQPtrList<SwallowApp>; +typedef TQPtrListIterator<SwallowApp> SwallowAppListIterator; +template class TQPtrList<SwallowCommand>; // init static variables @@ -53,14 +53,14 @@ SwallowApplet * SwallowApplet::self = 0L; extern "C" { - KDE_EXPORT KPanelApplet* init(QWidget *parent, const QString& configFile) { + KDE_EXPORT KPanelApplet* init(TQWidget *parent, const TQString& configFile) { return new SwallowApplet(configFile, parent, "kswallow applet"); } } -SwallowApplet::SwallowApplet( const QString& configFile, - QWidget *parent, const char *name ) +SwallowApplet::SwallowApplet( const TQString& configFile, + TQWidget *parent, const char *name ) : KPanelApplet( configFile, Normal, Preferences, parent, name ) { resize( 30, 30 ); @@ -74,9 +74,9 @@ SwallowApplet::SwallowApplet( const QString& configFile, appList = new SwallowAppList; appList->setAutoDelete( true ); - QBoxLayout::Direction d = (orientation() == Horizontal) ? - QBoxLayout::LeftToRight : QBoxLayout::TopToBottom; - m_layout = new QBoxLayout( this, d, 0, 2 ); // make stretch configurable? + TQBoxLayout::Direction d = (orientation() == Horizontal) ? + TQBoxLayout::LeftToRight : TQBoxLayout::TopToBottom; + m_layout = new TQBoxLayout( this, d, 0, 2 ); // make stretch configurable? m_layout->setAutoAdd( false ); // read the config file and start all the configured apps @@ -116,8 +116,8 @@ SwallowCommandList* SwallowApplet::readConfig() kc->setGroup("General"); int count = kc->readNumEntry("Number of apps"); kdDebug() << "*** Registered " << count << " App(s) to be swallow'ed!" << endl; - QString group = "SwallowApp %1"; - QString title, cmd; + TQString group = "SwallowApp %1"; + TQString title, cmd; ushort errors = 0; SwallowCommand *swc = 0L; @@ -140,7 +140,7 @@ SwallowCommandList* SwallowApplet::readConfig() } if ( errors > 0 ) { - QString entry = (errors == 1) ? i18n("entry") : i18n("entries"); + TQString entry = (errors == 1) ? i18n("entry") : i18n("entries"); if ( KMessageBox::questionYesNo(0L, i18n("I found %1 invalid/incomplete %2\nin the configuration file.\n\nBoth the window title and the commandline\n of the to be swallowed application\nare required.\n\n.Do you want to correct this?").arg(errors).arg(entry), i18n("Configuration Error"),i18n("Correct"),i18n("Ignore Error")) == KMessageBox::Yes) preferences(); } @@ -157,8 +157,8 @@ void SwallowApplet::createApps( SwallowCommandList* list ) while ( (it.current()) ) { app = new SwallowApp( it.current(), this ); app->hide(); - connect( app, SIGNAL( embedded(SwallowApp *)), - SLOT( embedded(SwallowApp *))); + connect( app, TQT_SIGNAL( embedded(SwallowApp *)), + TQT_SLOT( embedded(SwallowApp *))); appList->append( app ); ++it; kapp->processEvents(); @@ -179,8 +179,8 @@ void SwallowApplet::embedded( SwallowApp *app ) kdDebug() << "--> ratio: " << app->sizeRatio() << endl; kdDebug() << "**** " << app << " is embedded now, with (" << app->width() << ", " << app->height() << ")" << endl; - disconnect( app, SIGNAL( embedded(SwallowApp *)), - this, SLOT( embedded(SwallowApp *))); + disconnect( app, TQT_SIGNAL( embedded(SwallowApp *)), + this, TQT_SLOT( embedded(SwallowApp *))); embeddedList->append( app ); @@ -236,9 +236,9 @@ int SwallowApplet::heightForWidth(int) void SwallowApplet::layoutApps() { if ( KPanelApplet::orientation() == Horizontal ) - m_layout->setDirection( QBoxLayout::LeftToRight ); + m_layout->setDirection( TQBoxLayout::LeftToRight ); else - m_layout->setDirection( QBoxLayout::TopToBottom ); + m_layout->setDirection( TQBoxLayout::TopToBottom ); } @@ -255,7 +255,7 @@ void SwallowApplet::removeApplet( SwallowApp *app ) /////////////////////////////////////////////////////////////////// -static void parseCommand(KProcess *proc, QString cmd) +static void parseCommand(KProcess *proc, TQString cmd) { int pos; @@ -269,7 +269,7 @@ static void parseCommand(KProcess *proc, QString cmd) } -SwallowApp::SwallowApp(const SwallowCommand *swc, QWidget* parent, +SwallowApp::SwallowApp(const SwallowCommand *swc, TQWidget* parent, const char* /* name */) : QXEmbed( parent ) { @@ -278,8 +278,8 @@ SwallowApp::SwallowApp(const SwallowCommand *swc, QWidget* parent, QXEmbed::initialize(); winTitle = swc->title; - connect(SwallowApplet::winModule(), SIGNAL(windowAdded(WId)), - this, SLOT(windowAdded(WId))); + connect(SwallowApplet::winModule(), TQT_SIGNAL(windowAdded(WId)), + this, TQT_SLOT(windowAdded(WId))); if (!swc->cmdline.isEmpty()) { KProcess *process = new KProcess; @@ -287,10 +287,10 @@ SwallowApp::SwallowApp(const SwallowCommand *swc, QWidget* parent, // move window out of sight // *process << "-geometry"; - // *process << QString("32x32+%1+%2").arg(kapp->desktop()->width()).arg(kapp->desktop()->height()); + // *process << TQString("32x32+%1+%2").arg(kapp->desktop()->width()).arg(kapp->desktop()->height()); - connect(process, SIGNAL(processExited(KProcess*)), - this, SLOT(processExited(KProcess*))); + connect(process, TQT_SIGNAL(processExited(KProcess*)), + this, TQT_SLOT(processExited(KProcess*))); process->start(); } @@ -320,7 +320,7 @@ void SwallowApp::windowAdded(WId win) if (winTitle == names[0]) { kdDebug()<< "embedding window with title: "<<winTitle.latin1() << endl; - QRect r = KWin::windowInfo(win).geometry(); + TQRect r = KWin::windowInfo(win).geometry(); int h = r.height(); if ( h == 0 ) h = 1; wh_ratio = (float) r.width() / (float) h; @@ -330,8 +330,8 @@ void SwallowApp::windowAdded(WId win) embed(win); XReparentWindow(qt_xdisplay(), win, winId(), 0, 0); - disconnect(SwallowApplet::winModule(), SIGNAL(windowAdded(WId)), - this, SLOT(windowAdded(WId))); + disconnect(SwallowApplet::winModule(), TQT_SIGNAL(windowAdded(WId)), + this, TQT_SLOT(windowAdded(WId))); emit embedded( this ); } diff --git a/kicker/applets/swallow/swallow.h b/kicker/applets/swallow/swallow.h index 8e472f415..7488e913b 100644 --- a/kicker/applets/swallow/swallow.h +++ b/kicker/applets/swallow/swallow.h @@ -20,8 +20,8 @@ #define __swallow_h__ -#include <qevent.h> -#include <qptrlist.h> +#include <tqevent.h> +#include <tqptrlist.h> #include <qxembed.h> #include <kpanelapplet.h> @@ -34,20 +34,20 @@ class KWinModule; class SwallowApp; typedef struct _SwallowCommand { - QString cmdline; - QString title; + TQString cmdline; + TQString title; } SwallowCommand; -typedef QPtrList<SwallowCommand> SwallowCommandList; -typedef QPtrListIterator<SwallowCommand> SwallowCommandListIterator; -typedef QPtrList<SwallowApp> SwallowAppList; +typedef TQPtrList<SwallowCommand> SwallowCommandList; +typedef TQPtrListIterator<SwallowCommand> SwallowCommandListIterator; +typedef TQPtrList<SwallowApp> SwallowAppList; class SwallowApplet : public KPanelApplet { Q_OBJECT public: - SwallowApplet( const QString& configFile, QWidget *parent, + SwallowApplet( const TQString& configFile, TQWidget *parent, const char *name = 0L ); ~SwallowApplet(); @@ -81,7 +81,7 @@ private: static KWinModule *wModule; SwallowCommandList * m_swcList; - QBoxLayout *m_layout; + TQBoxLayout *m_layout; }; @@ -91,7 +91,7 @@ class SwallowApp : public QXEmbed Q_OBJECT public: - SwallowApp( const SwallowCommand * swc, QWidget* parent = 0, + SwallowApp( const SwallowCommand * swc, TQWidget* parent = 0, const char* name = 0); ~SwallowApp(); @@ -106,7 +106,7 @@ protected slots: private: KProcess *process; - QString winTitle; + TQString winTitle; float wh_ratio; }; |