diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kexi/main/kexistatusbar.cpp | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/main/kexistatusbar.cpp')
-rw-r--r-- | kexi/main/kexistatusbar.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/kexi/main/kexistatusbar.cpp b/kexi/main/kexistatusbar.cpp index c05f0eeb..2d51cad5 100644 --- a/kexi/main/kexistatusbar.cpp +++ b/kexi/main/kexistatusbar.cpp @@ -22,11 +22,11 @@ #include "kexistatusbar.h" -#include <qlayout.h> -#include <qlineedit.h> -#include <qpainter.h> -#include <qtimer.h> -#include <qfontmetrics.h> +#include <tqlayout.h> +#include <tqlineedit.h> +#include <tqpainter.h> +#include <tqtimer.h> +#include <tqfontmetrics.h> #include <kdebug.h> #include <kglobalsettings.h> @@ -38,8 +38,8 @@ #include <ktexteditor/viewstatusmsginterface.h> #endif -KexiStatusBar::KexiStatusBar(QWidget *parent, const char *name) - : KStatusBar(parent, name) +KexiStatusBar::KexiStatusBar(TQWidget *tqparent, const char *name) + : KStatusBar(tqparent, name) #if KexiStatusBar_KTEXTEDITOR_USED , m_cursorIface(0) #endif @@ -54,8 +54,8 @@ KexiStatusBar::KexiStatusBar(QWidget *parent, const char *name) setReadOnlyFlag(false); // @todo -// connect(PartController::getInstance(), SIGNAL(activePartChanged(KParts::Part*)), -// this, SLOT(activePartChanged(KParts::Part*))); +// connect(PartController::getInstance(), TQT_SIGNAL(activePartChanged(KParts::Part*)), +// this, TQT_SLOT(activePartChanged(KParts::Part*))); /// @todo remove parts from the map on PartRemoved() ? } @@ -77,8 +77,8 @@ void KexiStatusBar::activePartChanged(KParts::Part *part) // @todo if (part && part->widget()) { if ((m_viewmsgIface = dynamic_cast<KTextEditor::ViewStatusMsgInterface*>(part->widget()))) { - connect( part->widget(), SIGNAL( viewStatusMsg( const QString & ) ), - this, SLOT( setStatus( const QString & ) ) ); + connect( part->widget(), TQT_SIGNAL( viewStatusMsg( const TQString & ) ), + this, TQT_SLOT( settqStatus( const TQString & ) ) ); # if KDE_VERSION < KDE_MAKE_VERSION(3,1,90) changeItem(m_map[ m_activePart ], m_msgID); @@ -86,7 +86,7 @@ void KexiStatusBar::activePartChanged(KParts::Part *part) # endif } else if ((m_cursorIface = dynamic_cast<KTextEditor::ViewCursorInterface*>(part->widget()))) { - connect(part->widget(), SIGNAL(cursorPositionChanged()), this, SLOT(cursorPositionChanged())); + connect(part->widget(), TQT_SIGNAL(cursorPositionChanged()), this, TQT_SLOT(cursorPositionChanged())); cursorPositionChanged(); } else { @@ -110,9 +110,9 @@ void KexiStatusBar::cursorPositionChanged() #endif } -void KexiStatusBar::setStatus(const QString &str) +void KexiStatusBar::settqStatus(const TQString &str) { - kdDebug() << "KexiStatusBar::setStatus(" << str << ")" << endl; + kdDebug() << "KexiStatusBar::settqStatus(" << str << ")" << endl; // m_status->setText(str); changeItem(str, m_msgID); @@ -125,21 +125,21 @@ void KexiStatusBar::setStatus(const QString &str) void KexiStatusBar::setCursorPosition(int line, int col) { -// m_status->setText(i18n(" Line: %1 Col: %2 ").arg(line+1).arg(col)); - changeItem(i18n(" Line: %1 Col: %2 ").arg(line+1).arg(col), m_msgID); +// m_status->setText(i18n(" Line: %1 Col: %2 ").tqarg(line+1).tqarg(col)); + changeItem(i18n(" Line: %1 Col: %2 ").tqarg(line+1).tqarg(col), m_msgID); } -/*void KexiStatusBar::addWidget ( QWidget *widget, int stretch, bool permanent) +/*void KexiStatusBar::addWidget ( TQWidget *widget, int stretch, bool permanent) { KStatusBar::addWidget(widget,stretch,permanent); - if(widget->sizeHint().height() + 4 > height()) - setFixedHeight(widget->sizeHint().height() + 4); + if(widget->tqsizeHint().height() + 4 > height()) + setFixedHeight(widget->tqsizeHint().height() + 4); }*/ void KexiStatusBar::setReadOnlyFlag(bool readOnly) { - changeItem(readOnly ? i18n("Read only") : QString::null, m_readOnlyID); + changeItem(readOnly ? i18n("Read only") : TQString(), m_readOnlyID); } #include "kexistatusbar.moc" |