diff options
Diffstat (limited to 'kolourpaint')
108 files changed, 726 insertions, 743 deletions
| diff --git a/kolourpaint/Makefile.am b/kolourpaint/Makefile.am index 8db35fb2..e8c46155 100644 --- a/kolourpaint/Makefile.am +++ b/kolourpaint/Makefile.am @@ -39,7 +39,7 @@ kolourpaint_SOURCES = kolourpaint.cpp \      kpviewmanager.cpp \      kpviewscrollablecontainer.cpp \      kpwidgetmapper.cpp -kolourpaint_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor +kolourpaint_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor  kolourpaint_LDADD = $(LIB_TDEPRINT) \      cursors/libkolourpaintcursors.la \      pixmapfx/libkolourpaintpixmapfx.la \ diff --git a/kolourpaint/NEWS b/kolourpaint/NEWS index 7689f7ba..369aca21 100644 --- a/kolourpaint/NEWS +++ b/kolourpaint/NEWS @@ -329,7 +329,7 @@ Version 1.2 "ByFiat Everytime" (2004-08-18)       QPaintDevice and X error)     * [also in 1.0 branch] Check for QImageDrag::canDecode() before calling       QImageDrag::decode() (prevents X and valgrind errors) -   * [also in 1.0 branch] Fix compilation problem with QT_NO_ASCII_CAST +   * [also in 1.0 branch] Fix compilation problem with TQT_NO_ASCII_CAST       (Waldo Bastian)     * [also in 1.0 branch] Decrease application preference to below that of       a viewer (Stephan Kulow) diff --git a/kolourpaint/kolourpaint.cpp b/kolourpaint/kolourpaint.cpp index 8dd605fa..1a5d2757 100644 --- a/kolourpaint/kolourpaint.cpp +++ b/kolourpaint/kolourpaint.cpp @@ -191,8 +191,8 @@ int main (int argc, char *argv [])      // TQt says this is necessary but I don't think it is... -    TQObject::connect (&app, TQT_SIGNAL (lastWindowClosed ()), -                      &app, TQT_SLOT (quit ())); +    TQObject::connect (&app, TQ_SIGNAL (lastWindowClosed ()), +                      &app, TQ_SLOT (quit ()));      if (app.isRestored ()) diff --git a/kolourpaint/kpcommandhistory.cpp b/kolourpaint/kpcommandhistory.cpp index a30f028b..e4ec7eb0 100644 --- a/kolourpaint/kpcommandhistory.cpp +++ b/kolourpaint/kpcommandhistory.cpp @@ -259,13 +259,13 @@ kpCommandHistoryBase::kpCommandHistoryBase (bool doReadConfig,      m_actionUndo = new TDEToolBarPopupAction (undoActionText (),          TQString::fromLatin1 ("edit-undo"),          TDEStdAccel::shortcut (TDEStdAccel::Undo), -        this, TQT_SLOT (undo ()), +        this, TQ_SLOT (undo ()),          ac, KStdAction::name (KStdAction::Undo));      m_actionRedo = new TDEToolBarPopupAction (redoActionText (),          TQString::fromLatin1 ("edit-redo"),          TDEStdAccel::shortcut (TDEStdAccel::Redo), -        this, TQT_SLOT (redo ()), +        this, TQ_SLOT (redo ()),          ac, KStdAction::name (KStdAction::Redo)); @@ -273,10 +273,10 @@ kpCommandHistoryBase::kpCommandHistoryBase (bool doReadConfig,      m_actionRedo->setEnabled (false); -    connect (m_actionUndo->popupMenu (), TQT_SIGNAL (activated (int)), -             this, TQT_SLOT (undoUpToNumber (int))); -    connect (m_actionRedo->popupMenu (), TQT_SIGNAL (activated (int)), -             this, TQT_SLOT (redoUpToNumber (int))); +    connect (m_actionUndo->popupMenu (), TQ_SIGNAL (activated (int)), +             this, TQ_SLOT (undoUpToNumber (int))); +    connect (m_actionRedo->popupMenu (), TQ_SIGNAL (activated (int)), +             this, TQ_SLOT (redoUpToNumber (int)));      m_undoMinLimit = 10; @@ -413,7 +413,7 @@ void kpCommandHistoryBase::readConfig ()  #if DEBUG_KP_COMMAND_HISTORY      kdDebug () << "kpCommandHistoryBase::readConfig()" << endl;  #endif -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupUndoRedo); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupUndoRedo);      TDEConfigBase *cfg = cfgGroupSaver.config ();      setUndoMinLimit (cfg->readNumEntry (kpSettingUndoMinLimit, undoMinLimit ())); @@ -430,7 +430,7 @@ void kpCommandHistoryBase::writeConfig ()  #if DEBUG_KP_COMMAND_HISTORY      kdDebug () << "kpCommandHistoryBase::writeConfig()" << endl;  #endif -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupUndoRedo); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupUndoRedo);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingUndoMinLimit, undoMinLimit ()); diff --git a/kolourpaint/kpcommandhistory.h b/kolourpaint/kpcommandhistory.h index 3bca4853..ceec17ab 100644 --- a/kolourpaint/kpcommandhistory.h +++ b/kolourpaint/kpcommandhistory.h @@ -132,7 +132,7 @@ private:  // KCommandHistory, this is only "almost source compatible".  class kpCommandHistoryBase : public TQObject  { -Q_OBJECT +TQ_OBJECT  public: @@ -238,7 +238,7 @@ private:  //       The solution is to add this functionality to kpCommandHistoryBase.  class kpCommandHistory : public kpCommandHistoryBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpdocument.cpp b/kolourpaint/kpdocument.cpp index 018dbb9c..ededcb99 100644 --- a/kolourpaint/kpdocument.cpp +++ b/kolourpaint/kpdocument.cpp @@ -686,7 +686,7 @@ bool kpDocument::savePixmapToFile (const TQPixmap &pixmap,              }              // Write to local temporary file. -            if (!savePixmapToDevice (pixmap, TQT_TQIODEVICE(atomicFileWriter.file ()), +            if (!savePixmapToDevice (pixmap, atomicFileWriter.file (),                                       saveOptions, metaInfo,                                       false/*no lossy prompt*/,                                       parent)) @@ -746,7 +746,7 @@ bool kpDocument::savePixmapToFile (const TQPixmap &pixmap,                  return false;              } -            if (!savePixmapToDevice (pixmap, TQT_TQIODEVICE(&file), +            if (!savePixmapToDevice (pixmap, &file,                                       saveOptions, metaInfo,                                       false/*no lossy prompt*/,                                       parent)) @@ -1220,8 +1220,8 @@ void kpDocument::setSelection (const kpSelection &selection)      // 2. We delete our copy when setSelection() is called again.      //      // See code above for both. -    connect (m_selection, TQT_SIGNAL (changed (const TQRect &)), -             this, TQT_SLOT (slotContentsChanged (const TQRect &))); +    connect (m_selection, TQ_SIGNAL (changed (const TQRect &)), +             this, TQ_SLOT (slotContentsChanged (const TQRect &)));      if (!hadSelection) diff --git a/kolourpaint/kpdocument.h b/kolourpaint/kpdocument.h index b20d282f..c95af8df 100644 --- a/kolourpaint/kpdocument.h +++ b/kolourpaint/kpdocument.h @@ -54,7 +54,7 @@ class kpSelection;  class kpDocument : public TQObject  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpdocumentsaveoptionswidget.cpp b/kolourpaint/kpdocumentsaveoptionswidget.cpp index 21b8f11e..6c31834c 100644 --- a/kolourpaint/kpdocumentsaveoptionswidget.cpp +++ b/kolourpaint/kpdocumentsaveoptionswidget.cpp @@ -100,8 +100,8 @@ KDialogBase (parent, name, false/*non-modal*/,      lay->setRowStretch (0, 1); -    connect (m_filePixmapLabel, TQT_SIGNAL (resized ()), -             this, TQT_SLOT (updatePixmapPreview ())); +    connect (m_filePixmapLabel, TQ_SIGNAL (resized ()), +             this, TQ_SLOT (updatePixmapPreview ()));  }  kpDocumentSaveOptionsPreviewDialog::~kpDocumentSaveOptionsPreviewDialog () @@ -331,27 +331,27 @@ void kpDocumentSaveOptionsWidget::init ()      lay->addWidget (m_previewButton, 0/*stretch*/, TQt::AlignRight); -    connect (m_colorDepthCombo, TQT_SIGNAL (activated (int)), -             this, TQT_SLOT (slotColorDepthSelected ())); -    connect (m_colorDepthCombo, TQT_SIGNAL (activated (int)), -             this, TQT_SLOT (updatePreview ())); +    connect (m_colorDepthCombo, TQ_SIGNAL (activated (int)), +             this, TQ_SLOT (slotColorDepthSelected ())); +    connect (m_colorDepthCombo, TQ_SIGNAL (activated (int)), +             this, TQ_SLOT (updatePreview ())); -    connect (m_qualityInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (updatePreviewDelayed ())); +    connect (m_qualityInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (updatePreviewDelayed ())); -    connect (m_previewButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (showPreview (bool))); +    connect (m_previewButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (showPreview (bool)));      m_updatePreviewDelay = 200/*ms*/;      m_updatePreviewTimer = new TQTimer (this); -    connect (m_updatePreviewTimer, TQT_SIGNAL (timeout ()), -             this, TQT_SLOT (updatePreview ())); +    connect (m_updatePreviewTimer, TQ_SIGNAL (timeout ()), +             this, TQ_SLOT (updatePreview ()));      m_updatePreviewDialogLastRelativeGeometryTimer = new TQTimer (this); -    connect (m_updatePreviewDialogLastRelativeGeometryTimer, TQT_SIGNAL (timeout ()), -             this, TQT_SLOT (updatePreviewDialogLastRelativeGeometry ())); +    connect (m_updatePreviewDialogLastRelativeGeometryTimer, TQ_SIGNAL (timeout ()), +             this, TQ_SLOT (updatePreviewDialogLastRelativeGeometry ()));      setMode (None); @@ -705,7 +705,7 @@ void kpDocumentSaveOptionsWidget::setMode (Mode mode)      //       we change the height of "this", causing the text on the labels      //       to move but the first instance of the text doesn't get erased.      //       TQt bug. -    TQTimer::singleShot (0, this, TQT_SLOT (repaintLabels ())); +    TQTimer::singleShot (0, this, TQ_SLOT (repaintLabels ()));  }  // protected slot @@ -738,8 +738,8 @@ void kpDocumentSaveOptionsWidget::showPreview (bool yes)          m_previewDialog = new kpDocumentSaveOptionsPreviewDialog (m_visualParent, "previewSaveDialog");          updatePreview (); -        connect (m_previewDialog, TQT_SIGNAL (finished ()), -                 this, TQT_SLOT (hidePreview ())); +        connect (m_previewDialog, TQ_SIGNAL (finished ()), +                 this, TQ_SLOT (hidePreview ()));          TDEConfigGroupSaver cfgGroupSaver (TDEGlobal::config (), kpSettingsGroupPreviewSave); @@ -834,10 +834,10 @@ void kpDocumentSaveOptionsWidget::showPreview (bool yes)          updatePreviewDialogLastRelativeGeometry (); -        connect (m_previewDialog, TQT_SIGNAL (moved ()), -                 this, TQT_SLOT (updatePreviewDialogLastRelativeGeometry ())); -        connect (m_previewDialog, TQT_SIGNAL (resized ()), -                 this, TQT_SLOT (updatePreviewDialogLastRelativeGeometry ())); +        connect (m_previewDialog, TQ_SIGNAL (moved ()), +                 this, TQ_SLOT (updatePreviewDialogLastRelativeGeometry ())); +        connect (m_previewDialog, TQ_SIGNAL (resized ()), +                 this, TQ_SLOT (updatePreviewDialogLastRelativeGeometry ()));          m_updatePreviewDialogLastRelativeGeometryTimer->start (200/*ms*/);      } @@ -898,7 +898,7 @@ void kpDocumentSaveOptionsWidget::updatePreview ()      TQBuffer buffer (data);      buffer.open (IO_WriteOnly);      kpDocument::savePixmapToDevice (*m_documentPixmap, -                                    TQT_TQIODEVICE(&buffer), +                                    &buffer,                                      documentSaveOptions (),                                      m_documentMetaInfo,                                      false/*no lossy prompt*/, diff --git a/kolourpaint/kpdocumentsaveoptionswidget.h b/kolourpaint/kpdocumentsaveoptionswidget.h index 60e4b40a..c08e22b1 100644 --- a/kolourpaint/kpdocumentsaveoptionswidget.h +++ b/kolourpaint/kpdocumentsaveoptionswidget.h @@ -43,7 +43,7 @@ class kpResizeSignallingLabel;  class kpDocumentSaveOptionsPreviewDialog : public TQWidget  { -Q_OBJECT +TQ_OBJECT  public: @@ -95,7 +95,7 @@ class KPushButton;  class kpDocumentSaveOptionsWidget : public TQWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpmainwindow.cpp b/kolourpaint/kpmainwindow.cpp index 24a45054..211830be 100644 --- a/kolourpaint/kpmainwindow.cpp +++ b/kolourpaint/kpmainwindow.cpp @@ -103,7 +103,7 @@ double kpMainWindow::configColorSimilarity () const  // public  void kpMainWindow::configSetColorSimilarity (double val)  { -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingColorSimilarity, m_configColorSimilarity = val); @@ -118,7 +118,7 @@ void kpMainWindow::readGeneralSettings ()      kdDebug () << "\tkpMainWindow(" << name () << ")::readGeneralSettings()" << endl;  #endif -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);      TDEConfigBase *cfg = cfgGroupSaver.config ();      m_configFirstTime = cfg->readBoolEntry (kpSettingFirstTime, true); @@ -147,7 +147,7 @@ void kpMainWindow::readThumbnailSettings ()      kdDebug () << "\tkpMainWindow(" << name () << ")::readThumbnailSettings()" << endl;  #endif -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupThumbnail); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupThumbnail);      TDEConfigBase *cfg = cfgGroupSaver.config ();      m_configThumbnailShown = cfg->readBoolEntry (kpSettingThumbnailShown, false); @@ -208,7 +208,7 @@ void kpMainWindow::init ()      // TDEConfig::readEntry() does not actually reread from disk, hence doesn't      // realise what other processes have done e.g. Settings / Show Path -    kapp->config ()->reparseConfiguration (); +    tdeApp->config ()->reparseConfiguration ();  #if DEBUG_KP_MAIN_WINDOW      kdDebug () << "\tTIME: reparseConfig = " << time.restart () << "msec" << endl;  #endif @@ -259,20 +259,20 @@ void kpMainWindow::init ()  #endif      m_scrollView = new kpViewScrollableContainer (this, "scrollView"); -    connect (m_scrollView, TQT_SIGNAL (beganDocResize ()), -             this, TQT_SLOT (slotBeganDocResize ())); -    connect (m_scrollView, TQT_SIGNAL (continuedDocResize (const TQSize &)), -             this, TQT_SLOT (slotContinuedDocResize (const TQSize &))); -    connect (m_scrollView, TQT_SIGNAL (cancelledDocResize ()), -             this, TQT_SLOT (slotCancelledDocResize ())); -    connect (m_scrollView, TQT_SIGNAL (endedDocResize (const TQSize &)), -             this, TQT_SLOT (slotEndedDocResize (const TQSize &))); - -    connect (m_scrollView, TQT_SIGNAL (statusMessageChanged (const TQString &)), -             this, TQT_SLOT (slotDocResizeMessageChanged (const TQString &))); - -    connect (m_scrollView, TQT_SIGNAL (contentsMoving (int, int)), -             this, TQT_SLOT (slotScrollViewAboutToScroll ())); +    connect (m_scrollView, TQ_SIGNAL (beganDocResize ()), +             this, TQ_SLOT (slotBeganDocResize ())); +    connect (m_scrollView, TQ_SIGNAL (continuedDocResize (const TQSize &)), +             this, TQ_SLOT (slotContinuedDocResize (const TQSize &))); +    connect (m_scrollView, TQ_SIGNAL (cancelledDocResize ()), +             this, TQ_SLOT (slotCancelledDocResize ())); +    connect (m_scrollView, TQ_SIGNAL (endedDocResize (const TQSize &)), +             this, TQ_SLOT (slotEndedDocResize (const TQSize &))); + +    connect (m_scrollView, TQ_SIGNAL (statusMessageChanged (const TQString &)), +             this, TQ_SLOT (slotDocResizeMessageChanged (const TQString &))); + +    connect (m_scrollView, TQ_SIGNAL (contentsMoving (int, int)), +             this, TQ_SLOT (slotScrollViewAboutToScroll ()));      setCentralWidget (m_scrollView);      m_scrollView->show ();  #if DEBUG_KP_MAIN_WINDOW @@ -298,7 +298,7 @@ void kpMainWindow::init ()          m_toolToolBar->setBarPos (TDEToolBar::Left);          m_colorToolBar->setBarPos (TDEToolBar::Bottom); -        TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +        TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);          TDEConfigBase *cfg = cfgGroupSaver.config ();          cfg->writeEntry (kpSettingFirstTime, m_configFirstTime = false); @@ -707,16 +707,16 @@ void kpMainWindow::setDocument (kpDocument *newDoc)      #endif          // Copy/Cut/Deselect/Delete -        connect (m_document, TQT_SIGNAL (selectionEnabled (bool)), -                 m_actionCut, TQT_SLOT (setEnabled (bool))); -        connect (m_document, TQT_SIGNAL (selectionEnabled (bool)), -                 m_actionCopy, TQT_SLOT (setEnabled (bool))); -        connect (m_document, TQT_SIGNAL (selectionEnabled (bool)), -                 m_actionDelete, TQT_SLOT (setEnabled (bool))); -        connect (m_document, TQT_SIGNAL (selectionEnabled (bool)), -                 m_actionDeselect, TQT_SLOT (setEnabled (bool))); -        connect (m_document, TQT_SIGNAL (selectionEnabled (bool)), -                 m_actionCopyToFile, TQT_SLOT (setEnabled (bool))); +        connect (m_document, TQ_SIGNAL (selectionEnabled (bool)), +                 m_actionCut, TQ_SLOT (setEnabled (bool))); +        connect (m_document, TQ_SIGNAL (selectionEnabled (bool)), +                 m_actionCopy, TQ_SLOT (setEnabled (bool))); +        connect (m_document, TQ_SIGNAL (selectionEnabled (bool)), +                 m_actionDelete, TQ_SLOT (setEnabled (bool))); +        connect (m_document, TQ_SIGNAL (selectionEnabled (bool)), +                 m_actionDeselect, TQ_SLOT (setEnabled (bool))); +        connect (m_document, TQ_SIGNAL (selectionEnabled (bool)), +                 m_actionCopyToFile, TQ_SLOT (setEnabled (bool)));          // this code won't actually enable any actions at this stage          // (fresh document) but better safe than sorry @@ -726,40 +726,40 @@ void kpMainWindow::setDocument (kpDocument *newDoc)          m_actionDelete->setEnabled (m_document->selection ());          m_actionCopyToFile->setEnabled (m_document->selection ()); -        connect (m_document, TQT_SIGNAL (selectionEnabled (bool)), -                 this, TQT_SLOT (slotImageMenuUpdateDueToSelection ())); -        connect (m_document, TQT_SIGNAL (selectionIsTextChanged (bool)), -                 this, TQT_SLOT (slotImageMenuUpdateDueToSelection ())); +        connect (m_document, TQ_SIGNAL (selectionEnabled (bool)), +                 this, TQ_SLOT (slotImageMenuUpdateDueToSelection ())); +        connect (m_document, TQ_SIGNAL (selectionIsTextChanged (bool)), +                 this, TQ_SLOT (slotImageMenuUpdateDueToSelection ()));          // Status bar -        connect (m_document, TQT_SIGNAL (documentOpened ()), -                 this, TQT_SLOT (recalculateStatusBar ())); +        connect (m_document, TQ_SIGNAL (documentOpened ()), +                 this, TQ_SLOT (recalculateStatusBar ())); -        connect (m_document, TQT_SIGNAL (sizeChanged (const TQSize &)), -                 this, TQT_SLOT (setStatusBarDocSize (const TQSize &))); +        connect (m_document, TQ_SIGNAL (sizeChanged (const TQSize &)), +                 this, TQ_SLOT (setStatusBarDocSize (const TQSize &)));          // Caption (url, modified) -        connect (m_document, TQT_SIGNAL (documentModified ()), -                 this, TQT_SLOT (slotUpdateCaption ())); -        connect (m_document, TQT_SIGNAL (documentOpened ()), -                 this, TQT_SLOT (slotUpdateCaption ())); -        connect (m_document, TQT_SIGNAL (documentSaved ()), -                 this, TQT_SLOT (slotUpdateCaption ())); +        connect (m_document, TQ_SIGNAL (documentModified ()), +                 this, TQ_SLOT (slotUpdateCaption ())); +        connect (m_document, TQ_SIGNAL (documentOpened ()), +                 this, TQ_SLOT (slotUpdateCaption ())); +        connect (m_document, TQ_SIGNAL (documentSaved ()), +                 this, TQ_SLOT (slotUpdateCaption ()));          // File/Reload action only available with non-empty URL -        connect (m_document, TQT_SIGNAL (documentSaved ()), -                 this, TQT_SLOT (slotEnableReload ())); +        connect (m_document, TQ_SIGNAL (documentSaved ()), +                 this, TQ_SLOT (slotEnableReload ())); -        connect (m_document, TQT_SIGNAL (documentSaved ()), -                 this, TQT_SLOT (slotEnableSettingsShowPath ())); +        connect (m_document, TQ_SIGNAL (documentSaved ()), +                 this, TQ_SLOT (slotEnableSettingsShowPath ()));          // Command history          if (m_commandHistory)          { -            connect (m_commandHistory, TQT_SIGNAL (documentRestored ()), -                     this, TQT_SLOT (slotDocumentRestored ()));  // caption "!modified" -            connect (m_document, TQT_SIGNAL (documentSaved ()), -                     m_commandHistory, TQT_SLOT (documentSaved ())); +            connect (m_commandHistory, TQ_SIGNAL (documentRestored ()), +                     this, TQ_SLOT (slotDocumentRestored ()));  // caption "!modified" +            connect (m_document, TQ_SIGNAL (documentSaved ()), +                     m_commandHistory, TQ_SLOT (documentSaved ()));          }          else          { @@ -768,10 +768,10 @@ void kpMainWindow::setDocument (kpDocument *newDoc)          }          // Sync document -> views -        connect (m_document, TQT_SIGNAL (contentsChanged (const TQRect &)), -                 m_viewManager, TQT_SLOT (updateViews (const TQRect &))); -        connect (m_document, TQT_SIGNAL (sizeChanged (int, int)), -                 m_viewManager, TQT_SLOT (adjustViewsToEnvironment ())); +        connect (m_document, TQ_SIGNAL (contentsChanged (const TQRect &)), +                 m_viewManager, TQ_SLOT (updateViews (const TQRect &))); +        connect (m_document, TQ_SIGNAL (sizeChanged (int, int)), +                 m_viewManager, TQ_SLOT (adjustViewsToEnvironment ()));      #if DEBUG_KP_MAIN_WINDOW          kdDebug () << "\tenabling actions" << endl; @@ -814,7 +814,7 @@ void kpMainWindow::setDocument (kpDocument *newDoc)              #if DEBUG_KP_MAIN_WINDOW                  kdDebug () << "\tcreating thumbnail LATER" << endl;              #endif -                TQTimer::singleShot (0, this, TQT_SLOT (slotCreateThumbnail ())); +                TQTimer::singleShot (0, this, TQ_SLOT (slotCreateThumbnail ()));              }          }      #endif @@ -1003,7 +1003,7 @@ void kpMainWindow::slotScrollViewAboutToScroll ()      }  #endif -    TQTimer::singleShot (0, this, TQT_SLOT (slotScrollViewAfterScroll ())); +    TQTimer::singleShot (0, this, TQ_SLOT (slotScrollViewAfterScroll ()));  }  // private slot diff --git a/kolourpaint/kpmainwindow.h b/kolourpaint/kpmainwindow.h index 180ae801..3e54151a 100644 --- a/kolourpaint/kpmainwindow.h +++ b/kolourpaint/kpmainwindow.h @@ -87,7 +87,7 @@ class kpZoomedView;  class kpMainWindow : public TDEMainWindow  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpmainwindow_edit.cpp b/kolourpaint/kpmainwindow_edit.cpp index 61cb7319..81312049 100644 --- a/kolourpaint/kpmainwindow_edit.cpp +++ b/kolourpaint/kpmainwindow_edit.cpp @@ -103,25 +103,25 @@ void kpMainWindow::setupEditMenuActions ()      } -    m_actionCut = KStdAction::cut (TQT_TQOBJECT(this), TQT_SLOT (slotCut ()), ac); -    m_actionCopy = KStdAction::copy (TQT_TQOBJECT(this), TQT_SLOT (slotCopy ()), ac); -    m_actionPaste = KStdAction::paste (TQT_TQOBJECT(this), TQT_SLOT (slotPaste ()), ac); +    m_actionCut = KStdAction::cut (this, TQ_SLOT (slotCut ()), ac); +    m_actionCopy = KStdAction::copy (this, TQ_SLOT (slotCopy ()), ac); +    m_actionPaste = KStdAction::paste (this, TQ_SLOT (slotPaste ()), ac);      m_actionPasteInNewWindow = new TDEAction (i18n ("Paste in &New Window"),          TQt::CTRL + TQt::SHIFT + TQt::Key_V, -        TQT_TQOBJECT(this), TQT_SLOT (slotPasteInNewWindow ()), ac, "edit_paste_in_new_window"); +        this, TQ_SLOT (slotPasteInNewWindow ()), ac, "edit_paste_in_new_window"); -    //m_actionDelete = KStdAction::clear (this, TQT_SLOT (slotDelete ()), ac); +    //m_actionDelete = KStdAction::clear (this, TQ_SLOT (slotDelete ()), ac);      m_actionDelete = new TDEAction (i18n ("&Delete Selection"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotDelete ()), ac, "edit_clear"); +        this, TQ_SLOT (slotDelete ()), ac, "edit_clear"); -    m_actionSelectAll = KStdAction::selectAll (TQT_TQOBJECT(this), TQT_SLOT (slotSelectAll ()), ac); -    m_actionDeselect = KStdAction::deselect (TQT_TQOBJECT(this), TQT_SLOT (slotDeselect ()), ac); +    m_actionSelectAll = KStdAction::selectAll (this, TQ_SLOT (slotSelectAll ()), ac); +    m_actionDeselect = KStdAction::deselect (this, TQ_SLOT (slotDeselect ()), ac);      m_actionCopyToFile = new TDEAction (i18n ("C&opy to File..."), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotCopyToFile ()), ac, "edit_copy_to_file"); +        this, TQ_SLOT (slotCopyToFile ()), ac, "edit_copy_to_file");      m_actionPasteFromFile = new TDEAction (i18n ("Paste &From File..."), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotPasteFromFile ()), ac, "edit_paste_from_file"); +        this, TQ_SLOT (slotPasteFromFile ()), ac, "edit_paste_from_file");      m_editMenuDocumentActionsEnabled = false; @@ -129,8 +129,8 @@ void kpMainWindow::setupEditMenuActions ()      // Paste should always be enabled, as long as there is something paste      // (independent of whether we have a document or not) -    connect (TQApplication::clipboard (), TQT_SIGNAL (dataChanged ()), -             TQT_TQOBJECT(this), TQT_SLOT (slotEnablePaste ())); +    connect (TQApplication::clipboard (), TQ_SIGNAL (dataChanged ()), +             this, TQ_SLOT (slotEnablePaste ()));      slotEnablePaste ();  } diff --git a/kolourpaint/kpmainwindow_file.cpp b/kolourpaint/kpmainwindow_file.cpp index bc408f2c..d9da99d2 100644 --- a/kolourpaint/kpmainwindow_file.cpp +++ b/kolourpaint/kpmainwindow_file.cpp @@ -67,41 +67,41 @@ void kpMainWindow::setupFileMenuActions ()  #endif      TDEActionCollection *ac = actionCollection (); -    m_actionNew = KStdAction::openNew (TQT_TQOBJECT(this), TQT_SLOT (slotNew ()), ac); -    m_actionOpen = KStdAction::open (TQT_TQOBJECT(this), TQT_SLOT (slotOpen ()), ac); +    m_actionNew = KStdAction::openNew (this, TQ_SLOT (slotNew ()), ac); +    m_actionOpen = KStdAction::open (this, TQ_SLOT (slotOpen ()), ac); -    m_actionOpenRecent = KStdAction::openRecent (TQT_TQOBJECT(this), TQT_SLOT (slotOpenRecent (const KURL &)), ac); -    m_actionOpenRecent->loadEntries (kapp->config ()); +    m_actionOpenRecent = KStdAction::openRecent (this, TQ_SLOT (slotOpenRecent (const KURL &)), ac); +    m_actionOpenRecent->loadEntries (tdeApp->config ());  #if DEBUG_KP_MAIN_WINDOW      kdDebug () << "\trecent URLs=" << m_actionOpenRecent->items () << endl;  #endif -    m_actionSave = KStdAction::save (TQT_TQOBJECT(this), TQT_SLOT (slotSave ()), ac); -    m_actionSaveAs = KStdAction::saveAs (TQT_TQOBJECT(this), TQT_SLOT (slotSaveAs ()), ac); +    m_actionSave = KStdAction::save (this, TQ_SLOT (slotSave ()), ac); +    m_actionSaveAs = KStdAction::saveAs (this, TQ_SLOT (slotSaveAs ()), ac);      m_actionExport = new TDEAction (i18n ("E&xport..."), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotExport ()), ac, "file_export"); +        this, TQ_SLOT (slotExport ()), ac, "file_export");      m_actionScan = new TDEAction (i18n ("Scan..."), SmallIcon ("scanner"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotScan ()), ac, "file_scan"); +        this, TQ_SLOT (slotScan ()), ac, "file_scan"); -    //m_actionRevert = KStdAction::revert (this, TQT_SLOT (slotRevert ()), ac); +    //m_actionRevert = KStdAction::revert (this, TQ_SLOT (slotRevert ()), ac);      m_actionReload = new TDEAction (i18n ("Reloa&d"), TDEStdAccel::reload (), -        TQT_TQOBJECT(this), TQT_SLOT (slotReload ()), ac, "file_revert"); +        this, TQ_SLOT (slotReload ()), ac, "file_revert");      slotEnableReload (); -    m_actionPrint = KStdAction::print (TQT_TQOBJECT(this), TQT_SLOT (slotPrint ()), ac); -    m_actionPrintPreview = KStdAction::printPreview (TQT_TQOBJECT(this), TQT_SLOT (slotPrintPreview ()), ac); +    m_actionPrint = KStdAction::print (this, TQ_SLOT (slotPrint ()), ac); +    m_actionPrintPreview = KStdAction::printPreview (this, TQ_SLOT (slotPrintPreview ()), ac); -    m_actionMail = KStdAction::mail (TQT_TQOBJECT(this), TQT_SLOT (slotMail ()), ac); +    m_actionMail = KStdAction::mail (this, TQ_SLOT (slotMail ()), ac);      m_actionSetAsWallpaperCentered = new TDEAction (i18n ("Set as Wa&llpaper (Centered)"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotSetAsWallpaperCentered ()), ac, "file_set_as_wallpaper_centered"); +        this, TQ_SLOT (slotSetAsWallpaperCentered ()), ac, "file_set_as_wallpaper_centered");      m_actionSetAsWallpaperTiled = new TDEAction (i18n ("Set as Wallpaper (&Tiled)"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotSetAsWallpaperTiled ()), ac, "file_set_as_wallpaper_tiled"); +        this, TQ_SLOT (slotSetAsWallpaperTiled ()), ac, "file_set_as_wallpaper_tiled"); -    m_actionClose = KStdAction::close (TQT_TQOBJECT(this), TQT_SLOT (slotClose ()), ac); -    m_actionQuit = KStdAction::quit (TQT_TQOBJECT(this), TQT_SLOT (slotQuit ()), ac); +    m_actionClose = KStdAction::close (this, TQ_SLOT (slotClose ()), ac); +    m_actionQuit = KStdAction::quit (this, TQ_SLOT (slotQuit ()), ac);      m_scanDialog = 0; @@ -146,7 +146,7 @@ void kpMainWindow::addRecentURL (const KURL &url)          return; -    TDEConfig *cfg = kapp->config (); +    TDEConfig *cfg = tdeApp->config ();      // TDEConfig::readEntry() does not actually reread from disk, hence doesn't      // realise what other processes have done e.g. Settings / Show Path @@ -232,9 +232,9 @@ TQSize kpMainWindow::defaultDocSize () const  {      // TDEConfig::readEntry() does not actually reread from disk, hence doesn't      // realise what other processes have done e.g. Settings / Show Path -    kapp->config ()->reparseConfiguration (); +    tdeApp->config ()->reparseConfiguration (); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);      TDEConfigBase *cfg = cfgGroupSaver.config ();      TQSize docSize = cfg->readSizeEntry (kpSettingLastDocSize); @@ -261,7 +261,7 @@ void kpMainWindow::saveDefaultDocSize (const TQSize &size)      kdDebug () << "\tCONFIG: saving Last Doc Size = " << size << endl;  #endif -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingLastDocSize, size); @@ -451,8 +451,8 @@ void kpMainWindow::slotScan ()      #if DEBUG_KP_MAIN_WINDOW          kdDebug () << "\tcreated scanDialog=" << m_scanDialog << endl;      #endif -        connect (m_scanDialog, TQT_SIGNAL (finalImage (const TQImage &, int)), -                 TQT_SLOT (slotScanned (const TQImage &, int))); +        connect (m_scanDialog, TQ_SIGNAL (finalImage (const TQImage &, int)), +                 TQ_SLOT (slotScanned (const TQImage &, int)));      } @@ -605,11 +605,11 @@ KURL kpMainWindow::askForSaveURL (const TQString &caption,  #define SETUP_READ_CFG()                                                          \      if (!reparsedConfiguration)                                                   \      {                                                                             \ -        kapp->config ()->reparseConfiguration ();                                 \ +        tdeApp->config ()->reparseConfiguration ();                                 \          reparsedConfiguration = true;                                             \      }                                                                             \                                                                                    \ -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), forcedSaveOptionsGroup);    \ +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), forcedSaveOptionsGroup);    \      TDEConfigBase *cfg = cfgGroupSaver.config (); @@ -704,8 +704,8 @@ KURL kpMainWindow::askForSaveURL (const TQString &caption,      if (localOnly)          fd.setMode (KFile::File | KFile::LocalOnly); -    connect (&fd, TQT_SIGNAL (filterChanged (const TQString &)), -             saveOptionsWidget, TQT_SLOT (setMimeType (const TQString &))); +    connect (&fd, TQ_SIGNAL (filterChanged (const TQString &)), +             saveOptionsWidget, TQ_SLOT (setMimeType (const TQString &)));      if (fd.exec ()) @@ -715,7 +715,7 @@ KURL kpMainWindow::askForSaveURL (const TQString &caption,          newSaveOptions.printDebug ("\tnewSaveOptions");      #endif -        TDEConfigGroupSaver cfgGroupSaver (kapp->config (), forcedSaveOptionsGroup); +        TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), forcedSaveOptionsGroup);          TDEConfigBase *cfg = cfgGroupSaver.config ();          // Save options user forced - probably want to use them in future @@ -1262,7 +1262,7 @@ void kpMainWindow::slotMail ()          }      } -    kapp->invokeMailer ( +    tdeApp->invokeMailer (          TQString()/*to*/,          TQString()/*cc*/,          TQString()/*bcc*/, diff --git a/kolourpaint/kpmainwindow_help.cpp b/kolourpaint/kpmainwindow_help.cpp index db2a9b01..4a1709ab 100644 --- a/kolourpaint/kpmainwindow_help.cpp +++ b/kolourpaint/kpmainwindow_help.cpp @@ -57,7 +57,7 @@ void kpMainWindow::setupHelpMenuActions ()      // -- Thurston      d->m_actionHelpTakingScreenshots = new TDEAction (          i18n ("Acquiring &Screenshots"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotHelpTakingScreenshots ()), +        this, TQ_SLOT (slotHelpTakingScreenshots ()),          ac, "help_taking_screenshots"); @@ -185,10 +185,10 @@ void kpMainWindow::slotHelpTakingScreenshots ()          true/*separator line*/);      KActiveLabel *messageLabel = new KActiveLabel (message, &dlg); -    disconnect (messageLabel, TQT_SIGNAL (linkClicked (const TQString &)), -                messageLabel, TQT_SLOT (openLink (const TQString &))); -    connect (messageLabel, TQT_SIGNAL (linkClicked (const TQString &)), -             TQT_TQOBJECT(this), TQT_SLOT (slotHelpTakingScreenshotsFollowLink (const TQString &))); +    disconnect (messageLabel, TQ_SIGNAL (linkClicked (const TQString &)), +                messageLabel, TQ_SLOT (openLink (const TQString &))); +    connect (messageLabel, TQ_SIGNAL (linkClicked (const TQString &)), +             this, TQ_SLOT (slotHelpTakingScreenshotsFollowLink (const TQString &)));      dlg.setMainWidget (messageLabel); diff --git a/kolourpaint/kpmainwindow_image.cpp b/kolourpaint/kpmainwindow_image.cpp index cb3bca73..5e29a493 100644 --- a/kolourpaint/kpmainwindow_image.cpp +++ b/kolourpaint/kpmainwindow_image.cpp @@ -90,37 +90,37 @@ void kpMainWindow::setupImageMenuActions ()      TDEActionCollection *ac = actionCollection ();      m_actionResizeScale = new TDEAction (i18n ("R&esize / Scale..."), TQt::CTRL + TQt::Key_E, -        TQT_TQOBJECT(this), TQT_SLOT (slotResizeScale ()), ac, "image_resize_scale"); +        this, TQ_SLOT (slotResizeScale ()), ac, "image_resize_scale");      m_actionCrop = new TDEAction (i18n ("Se&t as Image (Crop)"), TQt::CTRL + TQt::Key_T, -        TQT_TQOBJECT(this), TQT_SLOT (slotCrop ()), ac, "image_crop"); +        this, TQ_SLOT (slotCrop ()), ac, "image_crop");      m_actionAutoCrop = new TDEAction (autoCropText (), TQt::CTRL + TQt::Key_U, -        TQT_TQOBJECT(this), TQT_SLOT (slotAutoCrop ()), ac, "image_auto_crop"); +        this, TQ_SLOT (slotAutoCrop ()), ac, "image_auto_crop");      m_actionFlip = new TDEAction (i18n ("&Flip..."), TQt::CTRL + TQt::Key_F, -        TQT_TQOBJECT(this), TQT_SLOT (slotFlip ()), ac, "image_flip"); +        this, TQ_SLOT (slotFlip ()), ac, "image_flip");      m_actionRotate = new TDEAction (i18n ("&Rotate..."), TQt::CTRL + TQt::Key_R, -        TQT_TQOBJECT(this), TQT_SLOT (slotRotate ()), ac, "image_rotate"); +        this, TQ_SLOT (slotRotate ()), ac, "image_rotate");      m_actionSkew = new TDEAction (i18n ("S&kew..."), TQt::CTRL + TQt::Key_K, -        TQT_TQOBJECT(this), TQT_SLOT (slotSkew ()), ac, "image_skew"); +        this, TQ_SLOT (slotSkew ()), ac, "image_skew");      m_actionConvertToBlackAndWhite = new TDEAction (i18n ("Reduce to Mo&nochrome (Dithered)"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotConvertToBlackAndWhite ()), ac, "image_convert_to_black_and_white"); +        this, TQ_SLOT (slotConvertToBlackAndWhite ()), ac, "image_convert_to_black_and_white");      m_actionConvertToGrayscale = new TDEAction (i18n ("Reduce to &Grayscale"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotConvertToGrayscale ()), ac, "image_convert_to_grayscale"); +        this, TQ_SLOT (slotConvertToGrayscale ()), ac, "image_convert_to_grayscale");      m_actionInvertColors = new TDEAction (i18n ("&Invert Colors"), TQt::CTRL + TQt::Key_I, -        TQT_TQOBJECT(this), TQT_SLOT (slotInvertColors ()), ac, "image_invert_colors"); +        this, TQ_SLOT (slotInvertColors ()), ac, "image_invert_colors");      m_actionClear = new TDEAction (i18n ("C&lear"), TQt::CTRL + TQt::SHIFT + TQt::Key_N, -        TQT_TQOBJECT(this), TQT_SLOT (slotClear ()), ac, "image_clear"); +        this, TQ_SLOT (slotClear ()), ac, "image_clear");      m_actionMoreEffects = new TDEAction (i18n ("&More Effects..."), TQt::CTRL + TQt::Key_M, -        TQT_TQOBJECT(this), TQT_SLOT (slotMoreEffects ()), ac, "image_more_effects"); +        this, TQ_SLOT (slotMoreEffects ()), ac, "image_more_effects");      enableImageMenuDocumentActions (false);  } @@ -317,7 +317,7 @@ void kpMainWindow::slotResizeScale ()      {          d->m_resizeScaleDialogLastKeepAspect = dialog.keepAspectRatio (); -        TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +        TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);          TDEConfigBase *cfg = cfgGroupSaver.config ();          cfg->writeEntry (kpSettingResizeScaleLastKeepAspect, @@ -464,7 +464,7 @@ void kpMainWindow::slotMoreEffects ()      {          d->m_moreEffectsDialogLastEffect = dialog.selectedEffect (); -        TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +        TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);          TDEConfigBase *cfg = cfgGroupSaver.config ();          cfg->writeEntry (kpSettingMoreEffectsLastEffect, diff --git a/kolourpaint/kpmainwindow_settings.cpp b/kolourpaint/kpmainwindow_settings.cpp index b3a7448e..27150dce 100644 --- a/kolourpaint/kpmainwindow_settings.cpp +++ b/kolourpaint/kpmainwindow_settings.cpp @@ -57,19 +57,19 @@ void kpMainWindow::setupSettingsMenuActions ()      createStandardStatusBarAction (); -    m_actionFullScreen = KStdAction::fullScreen (TQT_TQOBJECT(this), TQT_SLOT (slotFullScreen ()), ac, +    m_actionFullScreen = KStdAction::fullScreen (this, TQ_SLOT (slotFullScreen ()), ac,                                                   this/*window*/);      m_actionShowPath = new TDEToggleAction (i18n ("Show &Path"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotShowPathToggled ()), ac, "settings_show_path"); +        this, TQ_SLOT (slotShowPathToggled ()), ac, "settings_show_path");      m_actionShowPath->setCheckedState (i18n ("Hide &Path"));      slotEnableSettingsShowPath (); -    m_actionKeyBindings = KStdAction::keyBindings (TQT_TQOBJECT(this), TQT_SLOT (slotKeyBindings ()), ac); -    m_actionConfigureToolbars = KStdAction::configureToolbars (TQT_TQOBJECT(this), TQT_SLOT (slotConfigureToolBars ()), ac); -    // m_actionConfigure = KStdAction::preferences (TQT_TQOBJECT(this), TQT_SLOT (slotConfigure ()), ac); +    m_actionKeyBindings = KStdAction::keyBindings (this, TQ_SLOT (slotKeyBindings ()), ac); +    m_actionConfigureToolbars = KStdAction::configureToolbars (this, TQ_SLOT (slotConfigureToolBars ()), ac); +    // m_actionConfigure = KStdAction::preferences (this, TQ_SLOT (slotConfigure ()), ac);      enableSettingsMenuDocumentActions (false); @@ -116,7 +116,7 @@ void kpMainWindow::slotShowPathToggled ()      slotUpdateCaption (); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingShowPath, m_configShowPath); @@ -165,7 +165,7 @@ void kpMainWindow::slotConfigureToolBars ()          tool ()->endShapeInternal (); -    //saveMainWindowSettings (kapp->config (), autoSaveGroup ()); +    //saveMainWindowSettings (tdeApp->config (), autoSaveGroup ());      KEditToolbar dialog (actionCollection (),                           TQString()/*default ui.rc file*/, @@ -174,8 +174,8 @@ void kpMainWindow::slotConfigureToolBars ()      // Clicking on OK after Apply brings up the dialog (below) again.      // Bug with KEditToolBar.      dialog.showButtonApply (false); -    connect (&dialog, TQT_SIGNAL (newToolbarConfig ()), -             this, TQT_SLOT (slotNewToolBarConfig ())); +    connect (&dialog, TQ_SIGNAL (newToolbarConfig ()), +             this, TQ_SLOT (slotNewToolBarConfig ()));      dialog.exec ();  } @@ -198,7 +198,7 @@ void kpMainWindow::slotNewToolBarConfig ()          TQString::fromLatin1 ("ToolBarSettingsChanged"));      //createGUI(); -    //applyMainWindowSettings (kapp->config (), autoSaveGroup ()); +    //applyMainWindowSettings (tdeApp->config (), autoSaveGroup ());  } diff --git a/kolourpaint/kpmainwindow_text.cpp b/kolourpaint/kpmainwindow_text.cpp index 9fd87672..9c876091 100644 --- a/kolourpaint/kpmainwindow_text.cpp +++ b/kolourpaint/kpmainwindow_text.cpp @@ -50,22 +50,22 @@ void kpMainWindow::setupTextToolBarActions ()      TDEActionCollection *ac = actionCollection ();      m_actionTextFontFamily = new TDEFontAction (i18n ("Font Family"), 0/*shortcut*/, -        TQT_TQOBJECT(this), TQT_SLOT (slotTextFontFamilyChanged ()), ac, "text_font_family"); +        this, TQ_SLOT (slotTextFontFamilyChanged ()), ac, "text_font_family");      m_actionTextFontSize = new TDEFontSizeAction (i18n ("Font Size"), 0/*shortcut*/, -        TQT_TQOBJECT(this), TQT_SLOT (slotTextFontSizeChanged ()), ac, "text_font_size"); +        this, TQ_SLOT (slotTextFontSizeChanged ()), ac, "text_font_size");      m_actionTextBold = new TDEToggleAction (i18n ("Bold"),          "format-text-bold"/*icon*/, 0/*shortcut*/, -        TQT_TQOBJECT(this), TQT_SLOT (slotTextBoldChanged ()), ac, "format-text-bold"); +        this, TQ_SLOT (slotTextBoldChanged ()), ac, "format-text-bold");      m_actionTextItalic = new TDEToggleAction (i18n ("Italic"),          "format-text-italic"/*icon*/, 0/*shortcut*/, -        TQT_TQOBJECT(this), TQT_SLOT (slotTextItalicChanged ()), ac, "format-text-italic"); +        this, TQ_SLOT (slotTextItalicChanged ()), ac, "format-text-italic");      m_actionTextUnderline = new TDEToggleAction (i18n ("Underline"),          "format-text-underline"/*icon*/, 0/*shortcut*/, -        TQT_TQOBJECT(this), TQT_SLOT (slotTextUnderlineChanged ()), ac, "text_underline"); +        this, TQ_SLOT (slotTextUnderlineChanged ()), ac, "text_underline");      m_actionTextStrikeThru = new TDEToggleAction (i18n ("Strike Through"),          "format-text-strikethrough"/*icon*/, 0/*shortcut*/, -        TQT_TQOBJECT(this), TQT_SLOT (slotTextStrikeThruChanged ()), ac, "text_strike_thru"); +        this, TQ_SLOT (slotTextStrikeThruChanged ()), ac, "text_strike_thru");      readAndApplyTextSettings (); @@ -77,7 +77,7 @@ void kpMainWindow::setupTextToolBarActions ()  // private  void kpMainWindow::readAndApplyTextSettings ()  { -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupText); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupText);      TDEConfigBase *cfg = cfgGroupSaver.config ();      m_actionTextFontFamily->setFont (cfg->readEntry (kpSettingFontFamily, TQString::fromLatin1 ("Times"))); @@ -141,7 +141,7 @@ void kpMainWindow::slotTextFontFamilyChanged ()      if (m_mainView)          m_mainView->setFocus (); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupText); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupText);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingFontFamily, m_actionTextFontFamily->font ());      cfg->sync (); @@ -174,7 +174,7 @@ void kpMainWindow::slotTextFontSizeChanged ()      if (m_mainView)          m_mainView->setFocus (); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupText); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupText);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingFontSize, m_actionTextFontSize->fontSize ());      cfg->sync (); @@ -199,7 +199,7 @@ void kpMainWindow::slotTextBoldChanged ()      if (m_toolText && m_toolText->hasBegun ())          m_toolText->slotBoldChanged (m_actionTextBold->isChecked ()); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupText); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupText);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingBold, m_actionTextBold->isChecked ());      cfg->sync (); @@ -222,7 +222,7 @@ void kpMainWindow::slotTextItalicChanged ()      if (m_toolText && m_toolText->hasBegun ())          m_toolText->slotItalicChanged (m_actionTextItalic->isChecked ()); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupText); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupText);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingItalic, m_actionTextItalic->isChecked ());      cfg->sync (); @@ -245,7 +245,7 @@ void kpMainWindow::slotTextUnderlineChanged ()      if (m_toolText && m_toolText->hasBegun ())          m_toolText->slotUnderlineChanged (m_actionTextUnderline->isChecked ()); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupText); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupText);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingUnderline, m_actionTextUnderline->isChecked ());      cfg->sync (); @@ -268,7 +268,7 @@ void kpMainWindow::slotTextStrikeThruChanged ()      if (m_toolText && m_toolText->hasBegun ())          m_toolText->slotStrikeThruChanged (m_actionTextStrikeThru->isChecked ()); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupText); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupText);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingStrikeThru, m_actionTextStrikeThru->isChecked ());      cfg->sync (); diff --git a/kolourpaint/kpmainwindow_tools.cpp b/kolourpaint/kpmainwindow_tools.cpp index 50bd74ed..0c77de8e 100644 --- a/kolourpaint/kpmainwindow_tools.cpp +++ b/kolourpaint/kpmainwindow_tools.cpp @@ -103,23 +103,23 @@ void kpMainWindow::setupToolActions ()      m_actionPrevToolOptionGroup1 = new kpSingleKeyTriggersAction (          i18n ("Previous Tool Option (Group #1)"),          kpTool::shortcutForKey (TQt::Key_1), -        TQT_TQOBJECT(this), TQT_SLOT (slotActionPrevToolOptionGroup1 ()), +        this, TQ_SLOT (slotActionPrevToolOptionGroup1 ()),          ac, "prev_tool_option_group_1");      m_actionNextToolOptionGroup1 = new kpSingleKeyTriggersAction (          i18n ("Next Tool Option (Group #1)"),          kpTool::shortcutForKey (TQt::Key_2), -        TQT_TQOBJECT(this), TQT_SLOT (slotActionNextToolOptionGroup1 ()), +        this, TQ_SLOT (slotActionNextToolOptionGroup1 ()),          ac, "next_tool_option_group_1");      m_actionPrevToolOptionGroup2 = new kpSingleKeyTriggersAction (          i18n ("Previous Tool Option (Group #2)"),          kpTool::shortcutForKey (TQt::Key_3), -        TQT_TQOBJECT(this), TQT_SLOT (slotActionPrevToolOptionGroup2 ()), +        this, TQ_SLOT (slotActionPrevToolOptionGroup2 ()),          ac, "prev_tool_option_group_2");      m_actionNextToolOptionGroup2 = new kpSingleKeyTriggersAction (          i18n ("Next Tool Option (Group #2)"),          kpTool::shortcutForKey (TQt::Key_4), -        TQT_TQOBJECT(this), TQT_SLOT (slotActionNextToolOptionGroup2 ()), +        this, TQ_SLOT (slotActionNextToolOptionGroup2 ()),          ac, "next_tool_option_group_2");  } @@ -127,10 +127,10 @@ void kpMainWindow::setupToolActions ()  void kpMainWindow::createToolBox ()  {      m_toolToolBar = new kpToolToolBar (i18n ("Tool Box"), this, 2/*columns/rows*/, "Tool Box"); -    connect (m_toolToolBar, TQT_SIGNAL (sigToolSelected (kpTool *)), -             this, TQT_SLOT (slotToolSelected (kpTool *))); -    connect (m_toolToolBar, TQT_SIGNAL (toolWidgetOptionSelected ()), -             this, TQT_SLOT (updateToolOptionPrevNextActionsEnabled ())); +    connect (m_toolToolBar, TQ_SIGNAL (sigToolSelected (kpTool *)), +             this, TQ_SLOT (slotToolSelected (kpTool *))); +    connect (m_toolToolBar, TQ_SIGNAL (toolWidgetOptionSelected ()), +             this, TQ_SLOT (updateToolOptionPrevNextActionsEnabled ()));      for (TQPtrList <kpTool>::const_iterator it = m_tools.begin ();           it != m_tools.end (); @@ -331,55 +331,55 @@ void kpMainWindow::slotToolSelected (kpTool *tool)      if (previousTool)      { -        disconnect (previousTool, TQT_SIGNAL (movedAndAboutToDraw (const TQPoint &, const TQPoint &, int, bool *)), -                    this, TQT_SLOT (slotDragScroll (const TQPoint &, const TQPoint &, int, bool *))); -        disconnect (previousTool, TQT_SIGNAL (endedDraw (const TQPoint &)), -                    this, TQT_SLOT (slotEndDragScroll ())); -        disconnect (previousTool, TQT_SIGNAL (cancelledShape (const TQPoint &)), -                    this, TQT_SLOT (slotEndDragScroll ())); - -        disconnect (previousTool, TQT_SIGNAL (userMessageChanged (const TQString &)), -                    this, TQT_SLOT (recalculateStatusBarMessage ())); -        disconnect (previousTool, TQT_SIGNAL (userShapePointsChanged (const TQPoint &, const TQPoint &)), -                    this, TQT_SLOT (recalculateStatusBarShape ())); -        disconnect (previousTool, TQT_SIGNAL (userShapeSizeChanged (const TQSize &)), -                    this, TQT_SLOT (recalculateStatusBarShape ())); - -        disconnect (m_colorToolBar, TQT_SIGNAL (colorsSwapped (const kpColor &, const kpColor &)), -                    previousTool, TQT_SLOT (slotColorsSwappedInternal (const kpColor &, const kpColor &))); -        disconnect (m_colorToolBar, TQT_SIGNAL (foregroundColorChanged (const kpColor &)), -                    previousTool, TQT_SLOT (slotForegroundColorChangedInternal (const kpColor &))); -        disconnect (m_colorToolBar, TQT_SIGNAL (backgroundColorChanged (const kpColor &)), -                    previousTool, TQT_SLOT (slotBackgroundColorChangedInternal (const kpColor &))); -        disconnect (m_colorToolBar, TQT_SIGNAL (colorSimilarityChanged (double, int)), -                    previousTool, TQT_SLOT (slotColorSimilarityChangedInternal (double, int))); +        disconnect (previousTool, TQ_SIGNAL (movedAndAboutToDraw (const TQPoint &, const TQPoint &, int, bool *)), +                    this, TQ_SLOT (slotDragScroll (const TQPoint &, const TQPoint &, int, bool *))); +        disconnect (previousTool, TQ_SIGNAL (endedDraw (const TQPoint &)), +                    this, TQ_SLOT (slotEndDragScroll ())); +        disconnect (previousTool, TQ_SIGNAL (cancelledShape (const TQPoint &)), +                    this, TQ_SLOT (slotEndDragScroll ())); + +        disconnect (previousTool, TQ_SIGNAL (userMessageChanged (const TQString &)), +                    this, TQ_SLOT (recalculateStatusBarMessage ())); +        disconnect (previousTool, TQ_SIGNAL (userShapePointsChanged (const TQPoint &, const TQPoint &)), +                    this, TQ_SLOT (recalculateStatusBarShape ())); +        disconnect (previousTool, TQ_SIGNAL (userShapeSizeChanged (const TQSize &)), +                    this, TQ_SLOT (recalculateStatusBarShape ())); + +        disconnect (m_colorToolBar, TQ_SIGNAL (colorsSwapped (const kpColor &, const kpColor &)), +                    previousTool, TQ_SLOT (slotColorsSwappedInternal (const kpColor &, const kpColor &))); +        disconnect (m_colorToolBar, TQ_SIGNAL (foregroundColorChanged (const kpColor &)), +                    previousTool, TQ_SLOT (slotForegroundColorChangedInternal (const kpColor &))); +        disconnect (m_colorToolBar, TQ_SIGNAL (backgroundColorChanged (const kpColor &)), +                    previousTool, TQ_SLOT (slotBackgroundColorChangedInternal (const kpColor &))); +        disconnect (m_colorToolBar, TQ_SIGNAL (colorSimilarityChanged (double, int)), +                    previousTool, TQ_SLOT (slotColorSimilarityChangedInternal (double, int)));      }      if (tool)      { -        connect (tool, TQT_SIGNAL (movedAndAboutToDraw (const TQPoint &, const TQPoint &, int, bool *)), -                 this, TQT_SLOT (slotDragScroll (const TQPoint &, const TQPoint &, int, bool *))); -        connect (tool, TQT_SIGNAL (endedDraw (const TQPoint &)), -                 this, TQT_SLOT (slotEndDragScroll ())); -        connect (tool, TQT_SIGNAL (cancelledShape (const TQPoint &)), -                 this, TQT_SLOT (slotEndDragScroll ())); - -        connect (tool, TQT_SIGNAL (userMessageChanged (const TQString &)), -                 this, TQT_SLOT (recalculateStatusBarMessage ())); -        connect (tool, TQT_SIGNAL (userShapePointsChanged (const TQPoint &, const TQPoint &)), -                 this, TQT_SLOT (recalculateStatusBarShape ())); -        connect (tool, TQT_SIGNAL (userShapeSizeChanged (const TQSize &)), -                 this, TQT_SLOT (recalculateStatusBarShape ())); +        connect (tool, TQ_SIGNAL (movedAndAboutToDraw (const TQPoint &, const TQPoint &, int, bool *)), +                 this, TQ_SLOT (slotDragScroll (const TQPoint &, const TQPoint &, int, bool *))); +        connect (tool, TQ_SIGNAL (endedDraw (const TQPoint &)), +                 this, TQ_SLOT (slotEndDragScroll ())); +        connect (tool, TQ_SIGNAL (cancelledShape (const TQPoint &)), +                 this, TQ_SLOT (slotEndDragScroll ())); + +        connect (tool, TQ_SIGNAL (userMessageChanged (const TQString &)), +                 this, TQ_SLOT (recalculateStatusBarMessage ())); +        connect (tool, TQ_SIGNAL (userShapePointsChanged (const TQPoint &, const TQPoint &)), +                 this, TQ_SLOT (recalculateStatusBarShape ())); +        connect (tool, TQ_SIGNAL (userShapeSizeChanged (const TQSize &)), +                 this, TQ_SLOT (recalculateStatusBarShape ()));          recalculateStatusBar (); -        connect (m_colorToolBar, TQT_SIGNAL (colorsSwapped (const kpColor &, const kpColor &)), -                 tool, TQT_SLOT (slotColorsSwappedInternal (const kpColor &, const kpColor &))); -        connect (m_colorToolBar, TQT_SIGNAL (foregroundColorChanged (const kpColor &)), -                 tool, TQT_SLOT (slotForegroundColorChangedInternal (const kpColor &))); -        connect (m_colorToolBar, TQT_SIGNAL (backgroundColorChanged (const kpColor &)), -                 tool, TQT_SLOT (slotBackgroundColorChangedInternal (const kpColor &))); -        connect (m_colorToolBar, TQT_SIGNAL (colorSimilarityChanged (double, int)), -                 tool, TQT_SLOT (slotColorSimilarityChangedInternal (double, int))); +        connect (m_colorToolBar, TQ_SIGNAL (colorsSwapped (const kpColor &, const kpColor &)), +                 tool, TQ_SLOT (slotColorsSwappedInternal (const kpColor &, const kpColor &))); +        connect (m_colorToolBar, TQ_SIGNAL (foregroundColorChanged (const kpColor &)), +                 tool, TQ_SLOT (slotForegroundColorChangedInternal (const kpColor &))); +        connect (m_colorToolBar, TQ_SIGNAL (backgroundColorChanged (const kpColor &)), +                 tool, TQ_SLOT (slotBackgroundColorChangedInternal (const kpColor &))); +        connect (m_colorToolBar, TQ_SIGNAL (colorSimilarityChanged (double, int)), +                 tool, TQ_SLOT (slotColorSimilarityChangedInternal (double, int)));          saveLastTool (); @@ -392,7 +392,7 @@ void kpMainWindow::slotToolSelected (kpTool *tool)  // private  void kpMainWindow::readLastTool ()  { -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupTools); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupTools);      TDEConfigBase *cfg = cfgGroupSaver.config ();      m_lastToolNumber = cfg->readNumEntry (kpSettingLastTool, -1); @@ -424,7 +424,7 @@ void kpMainWindow::saveLastTool ()          return; -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupTools); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupTools);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingLastTool, number); diff --git a/kolourpaint/kpmainwindow_view.cpp b/kolourpaint/kpmainwindow_view.cpp index f76b6183..0f7151a0 100644 --- a/kolourpaint/kpmainwindow_view.cpp +++ b/kolourpaint/kpmainwindow_view.cpp @@ -67,18 +67,18 @@ void kpMainWindow::setupViewMenuActions ()      m_actionFullScreen->setEnabled (false);*/ -    m_actionActualSize = KStdAction::actualSize (TQT_TQOBJECT(this), TQT_SLOT (slotActualSize ()), ac); -    /*m_actionFitToPage = KStdAction::fitToPage (TQT_TQOBJECT(this), TQT_SLOT (slotFitToPage ()), ac); -    m_actionFitToWidth = KStdAction::fitToWidth (TQT_TQOBJECT(this), TQT_SLOT (slotFitToWidth ()), ac); -    m_actionFitToHeight = KStdAction::fitToHeight (TQT_TQOBJECT(this), TQT_SLOT (slotFitToHeight ()), ac);*/ +    m_actionActualSize = KStdAction::actualSize (this, TQ_SLOT (slotActualSize ()), ac); +    /*m_actionFitToPage = KStdAction::fitToPage (this, TQ_SLOT (slotFitToPage ()), ac); +    m_actionFitToWidth = KStdAction::fitToWidth (this, TQ_SLOT (slotFitToWidth ()), ac); +    m_actionFitToHeight = KStdAction::fitToHeight (this, TQ_SLOT (slotFitToHeight ()), ac);*/ -    m_actionZoomIn = KStdAction::zoomIn (TQT_TQOBJECT(this), TQT_SLOT (slotZoomIn ()), ac); -    m_actionZoomOut = KStdAction::zoomOut (TQT_TQOBJECT(this), TQT_SLOT (slotZoomOut ()), ac); +    m_actionZoomIn = KStdAction::zoomIn (this, TQ_SLOT (slotZoomIn ()), ac); +    m_actionZoomOut = KStdAction::zoomOut (this, TQ_SLOT (slotZoomOut ()), ac);      m_actionZoom = new TDESelectAction (i18n ("&Zoom"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotZoom ()), actionCollection (), "view_zoom_to"); +        this, TQ_SLOT (slotZoom ()), actionCollection (), "view_zoom_to");      m_actionZoom->setEditable (true);      // create the zoom list for the 1st call to zoomTo() below @@ -91,7 +91,7 @@ void kpMainWindow::setupViewMenuActions ()      m_actionShowGrid = new TDEToggleAction (i18n ("Show &Grid"), CTRL + Key_G, -        TQT_TQOBJECT(this), TQT_SLOT (slotShowGridToggled ()), actionCollection (), "view_show_grid"); +        this, TQ_SLOT (slotShowGridToggled ()), actionCollection (), "view_show_grid");      m_actionShowGrid->setCheckedState (i18n ("Hide &Grid")); @@ -99,12 +99,12 @@ void kpMainWindow::setupViewMenuActions ()      //       Testcase: Press CTRL+H twice on a fresh KolourPaint.      //                 The second CTRL+H doesn't close the thumbnail.      m_actionShowThumbnail = new TDEToggleAction (i18n ("Show T&humbnail"), CTRL + Key_H, -        TQT_TQOBJECT(this), TQT_SLOT (slotShowThumbnailToggled ()), actionCollection (), "view_show_thumbnail"); +        this, TQ_SLOT (slotShowThumbnailToggled ()), actionCollection (), "view_show_thumbnail");      m_actionShowThumbnail->setCheckedState (i18n ("Hide T&humbnail"));      // Please do not use setCheckedState() here - it wouldn't make sense      m_actionZoomedThumbnail = new TDEToggleAction (i18n ("Zoo&med Thumbnail Mode"), 0, -        TQT_TQOBJECT(this), TQT_SLOT (slotZoomedThumbnailToggled ()), actionCollection (), "view_zoomed_thumbnail"); +        this, TQ_SLOT (slotZoomedThumbnailToggled ()), actionCollection (), "view_zoomed_thumbnail");      // For consistency with the above action, don't use setCheckedState()      // @@ -114,7 +114,7 @@ void kpMainWindow::setupViewMenuActions ()      d->m_actionShowThumbnailRectangle = new TDEToggleAction (          i18n ("Enable Thumbnail &Rectangle"),          0, -        TQT_TQOBJECT(this), TQT_SLOT (slotThumbnailShowRectangleToggled ()), +        this, TQ_SLOT (slotThumbnailShowRectangleToggled ()),          actionCollection (), "view_show_thumbnail_rectangle"); @@ -511,7 +511,7 @@ void kpMainWindow::zoomTo (int zoomLevel, bool centerUnderCursor)      //       caused mainly by m_scrollView->center()      //      // TODO: remove flicker completely -    //TQTimer::singleShot (0, TQT_TQOBJECT(this), TQT_SLOT (finishZoomTo ())); +    //TQTimer::singleShot (0, this, TQ_SLOT (finishZoomTo ()));      // Later: I don't think there is an update() that needs to be queued      //        - let's reduce latency instead. @@ -729,7 +729,7 @@ void kpMainWindow::slotShowGridToggled ()      updateMainViewGrid (); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupGeneral); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupGeneral);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingShowGrid, m_configShowGrid = m_actionShowGrid->isChecked ()); @@ -822,8 +822,8 @@ void kpMainWindow::notifyThumbnailGeometryChanged ()      if (!m_thumbnailSaveConfigTimer)      {          m_thumbnailSaveConfigTimer = new TQTimer (this); -        connect (m_thumbnailSaveConfigTimer, TQT_SIGNAL (timeout ()), -                 TQT_TQOBJECT(this), TQT_SLOT (slotSaveThumbnailGeometry ())); +        connect (m_thumbnailSaveConfigTimer, TQ_SIGNAL (timeout ()), +                 this, TQ_SLOT (slotSaveThumbnailGeometry ()));      }      m_thumbnailSaveConfigTimer->start (500/*msec*/, true/*single shot*/); @@ -853,7 +853,7 @@ void kpMainWindow::slotSaveThumbnailGeometry ()                  << endl;  #endif -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupThumbnail); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupThumbnail);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingThumbnailGeometry, m_configThumbnailGeometry); @@ -869,7 +869,7 @@ void kpMainWindow::slotShowThumbnailToggled ()      m_configThumbnailShown = m_actionShowThumbnail->isChecked (); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupThumbnail); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupThumbnail);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingThumbnailShown, m_configThumbnailShown); @@ -904,7 +904,7 @@ void kpMainWindow::slotZoomedThumbnailToggled ()      m_configZoomedThumbnail = m_actionZoomedThumbnail->isChecked (); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupThumbnail); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupThumbnail);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingThumbnailZoomed, m_configZoomedThumbnail); @@ -923,7 +923,7 @@ void kpMainWindow::slotThumbnailShowRectangleToggled ()      d->m_configThumbnailShowRectangle = d->m_actionShowThumbnailRectangle->isChecked (); -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupThumbnail); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupThumbnail);      TDEConfigBase *cfg = cfgGroupSaver.config ();      cfg->writeEntry (kpSettingThumbnailShowRectangle, d->m_configThumbnailShowRectangle); @@ -1121,8 +1121,8 @@ void kpMainWindow::updateThumbnail ()      #if DEBUG_KP_MAIN_WINDOW          kdDebug () << "\t\tconnecting thumbnail::visibilityChange to destroy slot" << endl;      #endif -        connect (m_thumbnail, TQT_SIGNAL (visibilityChanged (bool)), -                 TQT_TQOBJECT(this), TQT_SLOT (slotDestroyThumbnailIfNotVisible (bool))); +        connect (m_thumbnail, TQ_SIGNAL (visibilityChanged (bool)), +                 this, TQ_SLOT (slotDestroyThumbnailIfNotVisible (bool)));      #if DEBUG_KP_MAIN_WINDOW          kdDebug () << "\t\tDONE" << endl;      #endif @@ -1143,8 +1143,8 @@ void kpMainWindow::updateThumbnail ()          destroyThumbnailView (); -        disconnect (m_thumbnail, TQT_SIGNAL (visibilityChanged (bool)), -                    TQT_TQOBJECT(this), TQT_SLOT (slotDestroyThumbnailIfNotVisible (bool))); +        disconnect (m_thumbnail, TQ_SIGNAL (visibilityChanged (bool)), +                    this, TQ_SLOT (slotDestroyThumbnailIfNotVisible (bool)));          m_thumbnail->deleteLater (); m_thumbnail = 0;      } diff --git a/kolourpaint/kpselection.cpp b/kolourpaint/kpselection.cpp index 2728f3cb..32434e9d 100644 --- a/kolourpaint/kpselection.cpp +++ b/kolourpaint/kpselection.cpp @@ -784,7 +784,7 @@ TQPixmap kpSelection::transparentForegroundTextPixmap () const      // we can identify the transparent pixels for manually creating      // the mask.      pixmapPainter.setPen ( -        TQColor (mostContrastingRGB (m_textStyle.effectiveBackgroundColor ().toTQRgb () & TQRGB_MASK))); +        TQColor (mostContrastingRGB (m_textStyle.effectiveBackgroundColor ().toTQRgb () & TQT_RGB_MASK)));      pixmapPainter.setFont (font); @@ -1435,7 +1435,7 @@ void kpSelection::flip (bool horiz, bool vert)      #if DEBUG_KP_SELECTION && 1          kdDebug () << "\thave transparency mask - flipping that" << endl;      #endif -        kpPixmapFX::flip (TQT_TQPIXMAP(&m_transparencyMask), horiz, vert); +        kpPixmapFX::flip (&m_transparencyMask, horiz, vert);      } diff --git a/kolourpaint/kpselection.h b/kolourpaint/kpselection.h index eb5025ae..17ad0461 100644 --- a/kolourpaint/kpselection.h +++ b/kolourpaint/kpselection.h @@ -54,7 +54,7 @@ class TQSize;   */  class kpSelection : public TQObject  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpselectiondrag.h b/kolourpaint/kpselectiondrag.h index 3a6f88b7..edda7089 100644 --- a/kolourpaint/kpselectiondrag.h +++ b/kolourpaint/kpselectiondrag.h @@ -37,7 +37,7 @@  class kpSelectionDrag : public TQImageDrag  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpsinglekeytriggersaction.h b/kolourpaint/kpsinglekeytriggersaction.h index 51784672..03389eb8 100644 --- a/kolourpaint/kpsinglekeytriggersaction.h +++ b/kolourpaint/kpsinglekeytriggersaction.h @@ -59,7 +59,7 @@ protected:  class kpSingleKeyTriggersAction : public TDEAction,                                    public kpSingleKeyTriggersActionInterface  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpthumbnail.cpp b/kolourpaint/kpthumbnail.cpp index dbf6ff01..5aa2a4fa 100644 --- a/kolourpaint/kpthumbnail.cpp +++ b/kolourpaint/kpthumbnail.cpp @@ -109,10 +109,10 @@ void kpThumbnail::setView (kpThumbnailView *view)      if (m_view)      { -        disconnect (m_view, TQT_SIGNAL (destroyed ()), -                    this, TQT_SLOT (slotViewDestroyed ())); -        disconnect (m_view, TQT_SIGNAL (zoomLevelChanged (int, int)), -                    this, TQT_SLOT (updateCaption ())); +        disconnect (m_view, TQ_SIGNAL (destroyed ()), +                    this, TQ_SLOT (slotViewDestroyed ())); +        disconnect (m_view, TQ_SIGNAL (zoomLevelChanged (int, int)), +                    this, TQ_SLOT (updateCaption ()));          boxLayout ()->remove (m_view);      } @@ -121,10 +121,10 @@ void kpThumbnail::setView (kpThumbnailView *view)      if (m_view)      { -        connect (m_view, TQT_SIGNAL (destroyed ()), -                 this, TQT_SLOT (slotViewDestroyed ())); -        connect (m_view, TQT_SIGNAL (zoomLevelChanged (int, int)), -                 this, TQT_SLOT (updateCaption ())); +        connect (m_view, TQ_SIGNAL (destroyed ()), +                 this, TQ_SLOT (slotViewDestroyed ())); +        connect (m_view, TQ_SIGNAL (zoomLevelChanged (int, int)), +                 this, TQ_SLOT (updateCaption ()));          updateCaption ();          boxLayout ()->addWidget (m_view); diff --git a/kolourpaint/kpthumbnail.h b/kolourpaint/kpthumbnail.h index f74403e4..79b6483d 100644 --- a/kolourpaint/kpthumbnail.h +++ b/kolourpaint/kpthumbnail.h @@ -37,7 +37,7 @@ class kpThumbnailView;  class kpThumbnail : public TQDockWindow  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kptool.cpp b/kolourpaint/kptool.cpp index fea1cf58..a8b78672 100644 --- a/kolourpaint/kptool.cpp +++ b/kolourpaint/kptool.cpp @@ -151,13 +151,13 @@ void kpTool::createAction ()      m_action = new kpToolAction (text (), iconName (), shortcutForKey (m_key), -                                 this, TQT_SLOT (slotActionActivated ()), +                                 this, TQ_SLOT (slotActionActivated ()),                                   m_mainWindow->actionCollection (), name ());      m_action->setExclusiveGroup (TQString::fromLatin1 ("Tool Box Actions"));      m_action->setWhatsThis (description ()); -    connect (m_action, TQT_SIGNAL (toolTipChanged (const TQString &)), -             this, TQT_SLOT (slotActionToolTipChanged (const TQString &))); +    connect (m_action, TQ_SIGNAL (toolTipChanged (const TQString &)), +             this, TQ_SLOT (slotActionToolTipChanged (const TQString &)));  } @@ -942,7 +942,7 @@ void kpTool::mousePressEvent (TQMouseEvent *e)      // state of all the buttons - not just the one that triggered the event (button())      TQt::ButtonState buttonState = e->stateAfter (); -    if (m_mainWindow && e->button () == Qt::MidButton) +    if (m_mainWindow && e->button () == TQt::MidButton)      {          const TQString text = TQApplication::clipboard ()->text (TQClipboard::Selection);      #if DEBUG_KP_TOOL && 1 @@ -1046,7 +1046,7 @@ void kpTool::mouseMoveEvent (TQMouseEvent *e)                 << " viewUnderCursorTQt=" << (v1 ? v1->name () : "(none)")                 << " viewUnderStartPoint=" << (v2 ? v2->name () : "(none)")                 << endl; -    kdDebug () << "\tfocusWidget=" << kapp->focusWidget () << endl; +    kdDebug () << "\tfocusWidget=" << tdeApp->focusWidget () << endl;  #endif      TQt::ButtonState buttonState = e->stateAfter (); @@ -1133,7 +1133,7 @@ void kpTool::mouseReleaseEvent (TQMouseEvent *e)          endDrawInternal (m_currentPoint, TQRect (m_startPoint, m_currentPoint).normalize ());      } -    if ((e->stateAfter () & Qt::MouseButtonMask) == 0) +    if ((e->stateAfter () & TQt::MouseButtonMask) == 0)      {          releasedAllButtons ();      } @@ -1239,7 +1239,7 @@ void kpTool::keyPressEvent (TQKeyEvent *e)              // TODO: what about the modifiers              TQMouseEvent me (TQEvent::MouseButtonPress,                              view->mapFromGlobal (TQCursor::pos ()), -                            Qt::LeftButton, +                            TQt::LeftButton,                              0);              mousePressEvent (&me);              e->accept (); @@ -1336,8 +1336,8 @@ void kpTool::keyReleaseEvent (TQKeyEvent *e)          {              TQMouseEvent me (TQEvent::MouseButtonRelease,                              view->mapFromGlobal (TQCursor::pos ()), -                            Qt::LeftButton, -                            Qt::LeftButton); +                            TQt::LeftButton, +                            TQt::LeftButton);              mouseReleaseEvent (&me);              e->accept ();          } @@ -1469,17 +1469,17 @@ void kpTool::leaveEvent (TQEvent *)  int kpTool::mouseButton (const TQt::ButtonState &buttonState)  {      // we have nothing to do with mid-buttons -    if (buttonState & Qt::MidButton) +    if (buttonState & TQt::MidButton)          return -1;      // both left & right together is quite meaningless... -    TQt::ButtonState bothButtons = (TQt::ButtonState) (Qt::LeftButton | Qt::RightButton); +    TQt::ButtonState bothButtons = (TQt::ButtonState) (TQt::LeftButton | TQt::RightButton);      if ((buttonState & bothButtons) == bothButtons)          return -1; -    if (buttonState & Qt::LeftButton) +    if (buttonState & TQt::LeftButton)          return 0; -    else if (buttonState & Qt::RightButton) +    else if (buttonState & TQt::RightButton)          return 1;      else          return -1; diff --git a/kolourpaint/kptool.h b/kolourpaint/kptool.h index 2a630144..36fc6cb0 100644 --- a/kolourpaint/kptool.h +++ b/kolourpaint/kptool.h @@ -57,7 +57,7 @@ class kpToolToolBar;  // Base class for all tools  class kpTool : public TQObject  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpview.cpp b/kolourpaint/kpview.cpp index c130c0d9..8447b966 100644 --- a/kolourpaint/kpview.cpp +++ b/kolourpaint/kpview.cpp @@ -122,7 +122,7 @@ kpView::kpView (kpDocument *document,      setBackgroundMode (TQt::NoBackground);  // no flicker -    setFocusPolicy (TQ_WheelFocus); +    setFocusPolicy (TQWidget::WheelFocus);      setMouseTracking (true);  // mouseMoveEvent's even when no mousebtn down      setKeyCompression (true);      setInputMethodEnabled (true);  // ensure using InputMethod @@ -297,55 +297,55 @@ void kpView::showBuddyViewScrollableContainerRectangle (bool yes)          // Got these connect statements by analysing deps of          // updateBuddyViewScrollableContainerRectangle() rect update code. -        connect (this, TQT_SIGNAL (zoomLevelChanged (int, int)), -                 this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); -        connect (this, TQT_SIGNAL (originChanged (const TQPoint &)), -                 this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); +        connect (this, TQ_SIGNAL (zoomLevelChanged (int, int)), +                 this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ())); +        connect (this, TQ_SIGNAL (originChanged (const TQPoint &)), +                 this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ()));          if (buddyViewScrollableContainer ())          { -            connect (buddyViewScrollableContainer (), TQT_SIGNAL (contentsMovingSoon (int, int)), -                     this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); -            connect (buddyViewScrollableContainer (), TQT_SIGNAL (resized ()), -                     this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            connect (buddyViewScrollableContainer (), TQ_SIGNAL (contentsMovingSoon (int, int)), +                     this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            connect (buddyViewScrollableContainer (), TQ_SIGNAL (resized ()), +                     this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ()));          }          if (buddyView ())          { -            connect (buddyView (), TQT_SIGNAL (zoomLevelChanged (int, int)), -                     this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); -            connect (buddyView (), TQT_SIGNAL (originChanged (const TQPoint &)), -                     this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            connect (buddyView (), TQ_SIGNAL (zoomLevelChanged (int, int)), +                     this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            connect (buddyView (), TQ_SIGNAL (originChanged (const TQPoint &)), +                     this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ())); -            connect (buddyView (), TQT_SIGNAL (sizeChanged (int, int)), -                     this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            connect (buddyView (), TQ_SIGNAL (sizeChanged (int, int)), +                     this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ()));          }      }      else      { -        disconnect (this, TQT_SIGNAL (zoomLevelChanged (int, int)), -                    this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); -        disconnect (this, TQT_SIGNAL (originChanged (const TQPoint &)), -                    this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); +        disconnect (this, TQ_SIGNAL (zoomLevelChanged (int, int)), +                    this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ())); +        disconnect (this, TQ_SIGNAL (originChanged (const TQPoint &)), +                    this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ()));          if (buddyViewScrollableContainer ())          { -            disconnect (buddyViewScrollableContainer (), TQT_SIGNAL (contentsMovingSoon (int, int)), -                        this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); -            disconnect (buddyViewScrollableContainer (), TQT_SIGNAL (resized ()), -                        this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            disconnect (buddyViewScrollableContainer (), TQ_SIGNAL (contentsMovingSoon (int, int)), +                        this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            disconnect (buddyViewScrollableContainer (), TQ_SIGNAL (resized ()), +                        this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ()));          }          if (buddyView ())          { -            disconnect (buddyView (), TQT_SIGNAL (zoomLevelChanged (int, int)), -                        this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); -            disconnect (buddyView (), TQT_SIGNAL (originChanged (const TQPoint &)), -                        this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            disconnect (buddyView (), TQ_SIGNAL (zoomLevelChanged (int, int)), +                        this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            disconnect (buddyView (), TQ_SIGNAL (originChanged (const TQPoint &)), +                        this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ())); -            disconnect (buddyView (), TQT_SIGNAL (sizeChanged (int, int)), -                        this, TQT_SLOT (updateBuddyViewScrollableContainerRectangle ())); +            disconnect (buddyView (), TQ_SIGNAL (sizeChanged (int, int)), +                        this, TQ_SLOT (updateBuddyViewScrollableContainerRectangle ()));          }      } @@ -969,7 +969,7 @@ void kpView::mouseMoveEvent (TQMouseEvent *e)      // TODO: This is wrong if you leaveEvent the mainView by mouseMoving on the      //       mainView, landing on top of the thumbnailView cleverly put on top      //       of the mainView. -    setHasMouse (TQT_TQRECT_OBJECT(rect ()).contains (e->pos ())); +    setHasMouse (rect ().contains (e->pos ()));      if (tool ())          tool ()->mouseMoveEvent (e); @@ -1003,7 +1003,7 @@ void kpView::mouseReleaseEvent (TQMouseEvent *e)                 << endl;  #endif -    setHasMouse (TQT_TQRECT_OBJECT(rect ()).contains (e->pos ())); +    setHasMouse (rect ().contains (e->pos ()));      if (tool ())          tool ()->mouseReleaseEvent (e); @@ -1343,7 +1343,7 @@ void kpView::paintEventDrawSelection (TQPixmap *destPixmap, const TQRect &docRec          destPixmapPainter.setRasterOp (TQt::XorROP);          destPixmapPainter.setPen (TQPen (TQt::white, 1, TQt::DotLine)); -        destPixmapPainter.setBackgroundMode (Qt::OpaqueMode); +        destPixmapPainter.setBackgroundMode (TQt::OpaqueMode);          destPixmapPainter.setBackgroundColor (TQt::blue);          TQBitmap maskBitmap; diff --git a/kolourpaint/kpview.h b/kolourpaint/kpview.h index a43eb12e..23fca33c 100644 --- a/kolourpaint/kpview.h +++ b/kolourpaint/kpview.h @@ -58,7 +58,7 @@ class kpViewScrollableContainer;   */  class kpView : public TQWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpviewmanager.cpp b/kolourpaint/kpviewmanager.cpp index 71b58a2c..8764b91b 100644 --- a/kolourpaint/kpviewmanager.cpp +++ b/kolourpaint/kpviewmanager.cpp @@ -229,8 +229,8 @@ void kpViewManager::setTextCursorEnabled (bool yes)      if (yes)      {          m_textCursorBlinkTimer = new TQTimer (this); -        connect (m_textCursorBlinkTimer, TQT_SIGNAL (timeout ()), -                 this, TQT_SLOT (slotTextCursorBlink ())); +        connect (m_textCursorBlinkTimer, TQ_SIGNAL (timeout ()), +                 this, TQ_SLOT (slotTextCursorBlink ()));          slotTextCursorBlink ();      }      // TODO: What if !yes - shouldn't it clear the cursor? diff --git a/kolourpaint/kpviewmanager.h b/kolourpaint/kpviewmanager.h index d609d7d6..43379162 100644 --- a/kolourpaint/kpviewmanager.h +++ b/kolourpaint/kpviewmanager.h @@ -46,7 +46,7 @@ class kpTempPixmap;  class kpViewManager : public TQObject  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/kpviewscrollablecontainer.cpp b/kolourpaint/kpviewscrollablecontainer.cpp index 50d6ec9c..47c842d9 100644 --- a/kolourpaint/kpviewscrollablecontainer.cpp +++ b/kolourpaint/kpviewscrollablecontainer.cpp @@ -234,7 +234,7 @@ void kpGrip::keyReleaseEvent (TQKeyEvent *e)  void kpGrip::mousePressEvent (TQMouseEvent *e)  {      if (m_startPoint == KP_INVALID_POINT && -        (e->stateAfter () & Qt::MouseButtonMask) == Qt::LeftButton) +        (e->stateAfter () & TQt::MouseButtonMask) == TQt::LeftButton)      {          m_startPoint = e->pos ();          m_currentPoint = e->pos (); @@ -290,7 +290,7 @@ void kpGrip::mouseMoveEvent (TQMouseEvent *e)      if (m_startPoint == KP_INVALID_POINT)      { -        if ((e->stateAfter () & Qt::MouseButtonMask) == 0) +        if ((e->stateAfter () & TQt::MouseButtonMask) == 0)              setUserMessage (haventBegunDrawUserMessage ());          return;      } @@ -320,7 +320,7 @@ void kpGrip::mouseReleaseEvent (TQMouseEvent *e)                          (m_type & Bottom) ? dy : 0);      } -    if ((e->stateAfter () & Qt::MouseButtonMask) == 0) +    if ((e->stateAfter () & TQt::MouseButtonMask) == 0)      {          m_shouldReleaseMouseButtons = false;          setUserMessage (TQString()); @@ -424,11 +424,11 @@ kpViewScrollableContainer::kpViewScrollableContainer (kpMainWindow *parent,      connectGripSignals (m_bottomRightGrip); -    connect (this, TQT_SIGNAL (contentsMoving (int, int)), -             this, TQT_SLOT (slotContentsMoving (int, int))); +    connect (this, TQ_SIGNAL (contentsMoving (int, int)), +             this, TQ_SLOT (slotContentsMoving (int, int))); -    connect (m_dragScrollTimer, TQT_SIGNAL (timeout ()), -             this, TQT_SLOT (slotDragScroll ())); +    connect (m_dragScrollTimer, TQ_SIGNAL (timeout ()), +             this, TQ_SLOT (slotDragScroll ()));  }  kpViewScrollableContainer::~kpViewScrollableContainer () @@ -458,20 +458,20 @@ int kpViewScrollableContainer::contentsYSoon ()  // protected  void kpViewScrollableContainer::connectGripSignals (kpGrip *grip)  { -    connect (grip, TQT_SIGNAL (beganDraw ()), -             this, TQT_SLOT (slotGripBeganDraw ())); -    connect (grip, TQT_SIGNAL (continuedDraw (int, int, bool)), -             this, TQT_SLOT (slotGripContinuedDraw (int, int, bool))); -    connect (grip, TQT_SIGNAL (cancelledDraw ()), -             this, TQT_SLOT (slotGripCancelledDraw ())); -    connect (grip, TQT_SIGNAL (endedDraw (int, int)), -             this, TQT_SLOT (slotGripEndedDraw (int, int))); +    connect (grip, TQ_SIGNAL (beganDraw ()), +             this, TQ_SLOT (slotGripBeganDraw ())); +    connect (grip, TQ_SIGNAL (continuedDraw (int, int, bool)), +             this, TQ_SLOT (slotGripContinuedDraw (int, int, bool))); +    connect (grip, TQ_SIGNAL (cancelledDraw ()), +             this, TQ_SLOT (slotGripCancelledDraw ())); +    connect (grip, TQ_SIGNAL (endedDraw (int, int)), +             this, TQ_SLOT (slotGripEndedDraw (int, int))); -    connect (grip, TQT_SIGNAL (statusMessageChanged (const TQString &)), -             this, TQT_SLOT (slotGripStatusMessageChanged (const TQString &))); +    connect (grip, TQ_SIGNAL (statusMessageChanged (const TQString &)), +             this, TQ_SLOT (slotGripStatusMessageChanged (const TQString &))); -    connect (grip, TQT_SIGNAL (releasedAllButtons ()), -             this, TQT_SLOT (recalculateStatusMessage ())); +    connect (grip, TQ_SIGNAL (releasedAllButtons ()), +             this, TQ_SLOT (recalculateStatusMessage ()));  } @@ -946,7 +946,7 @@ void kpViewScrollableContainer::slotContentsMoving (int x, int y)      // Reduce flicker - don't let TQScrollView scroll to-be-erased lines      eraseResizeLines (); -    TQTimer::singleShot (0, this, TQT_SLOT (slotContentsMoved ())); +    TQTimer::singleShot (0, this, TQ_SLOT (slotContentsMoved ()));  }  // protected slot @@ -972,19 +972,19 @@ void kpViewScrollableContainer::slotContentsMoved ()  // protected  void kpViewScrollableContainer::disconnectViewSignals ()  { -    disconnect (m_view, TQT_SIGNAL (sizeChanged (const TQSize &)), -                this, TQT_SLOT (updateGrips ())); -    disconnect (m_view, TQT_SIGNAL (destroyed ()), -                this, TQT_SLOT (slotViewDestroyed ())); +    disconnect (m_view, TQ_SIGNAL (sizeChanged (const TQSize &)), +                this, TQ_SLOT (updateGrips ())); +    disconnect (m_view, TQ_SIGNAL (destroyed ()), +                this, TQ_SLOT (slotViewDestroyed ()));  }  // protected  void kpViewScrollableContainer::connectViewSignals ()  { -    connect (m_view, TQT_SIGNAL (sizeChanged (const TQSize &)), -             this, TQT_SLOT (updateGrips ())); -    connect (m_view, TQT_SIGNAL (destroyed ()), -             this, TQT_SLOT (slotViewDestroyed ())); +    connect (m_view, TQ_SIGNAL (sizeChanged (const TQSize &)), +             this, TQ_SLOT (updateGrips ())); +    connect (m_view, TQ_SIGNAL (destroyed ()), +             this, TQ_SLOT (slotViewDestroyed ()));  } diff --git a/kolourpaint/kpviewscrollablecontainer.h b/kolourpaint/kpviewscrollablecontainer.h index ea6783dc..ff2f9aec 100644 --- a/kolourpaint/kpviewscrollablecontainer.h +++ b/kolourpaint/kpviewscrollablecontainer.h @@ -47,7 +47,7 @@ class kpMainWindow;  // TODO: refactor by sharing iface's with kpTool  class kpGrip : public TQWidget  { -Q_OBJECT +TQ_OBJECT  public: @@ -115,7 +115,7 @@ protected:  class kpViewScrollableContainer : public TQScrollView  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/patches/checkerboard-faster-render.diff b/kolourpaint/patches/checkerboard-faster-render.diff index 8c9c6402..824106ca 100644 --- a/kolourpaint/patches/checkerboard-faster-render.diff +++ b/kolourpaint/patches/checkerboard-faster-render.diff @@ -34,17 +34,17 @@ QPainter::fillRect().  QPainter::drawPixmap() seems much faster.  For  +    {  +        for (int x = 0; x < rep; x++)  +        { -+            QColor col; ++            TQColor col;  +  +            if ((parityAsInt + x + y) % 2)  +            {  +                if (!isPreview) -+                    col = QColor (213, 213, 213); ++                    col = TQColor (213, 213, 213);  +                else -+                    col = QColor (224, 224, 224); ++                    col = TQColor (224, 224, 224);  +            }  +            else -+                col = Qt::white; ++                col = TQt::white;  +  +            painter.fillRect (x * cellSize, y * cellSize,  +                              cellSize, cellSize, diff --git a/kolourpaint/patches/color_eraser_speedup.diff b/kolourpaint/patches/color_eraser_speedup.diff index d57ece28..b6e51d5d 100644 --- a/kolourpaint/patches/color_eraser_speedup.diff +++ b/kolourpaint/patches/color_eraser_speedup.diff @@ -64,7 +64,7 @@ diff -u -p -r1.9 kptoolpen.cpp  +        painter.begin (&pixmap);           painter.setPen (color (m_mouseButton)); --        QImage image; +-        TQImage image;  -        if (m_mode & WashesPixmaps)  -        {           #if DEBUG_KP_TOOL_PEN @@ -83,8 +83,8 @@ diff -u -p -r1.9 kptoolpen.cpp  @@ -453,10 +451,21 @@ void kpToolPen::draw (const QPoint &this           else if (m_mode & (DrawsPixmaps | WashesPixmaps))           { -             QRgb colorToReplace; -+            QImage image; +             TQRgb colorToReplace; ++            TQImage image;  +            QRegion region;               if (m_mode & WashesPixmaps) diff --git a/kolourpaint/patches/doc_resize_no_flicker.diff b/kolourpaint/patches/doc_resize_no_flicker.diff index 6398e47a..a3593b95 100644 --- a/kolourpaint/patches/doc_resize_no_flicker.diff +++ b/kolourpaint/patches/doc_resize_no_flicker.diff @@ -118,9 +118,9 @@ diff -u -p -r1.7 kpviewscrollablecontainer.cpp   // protected  -void kpViewScrollableContainer::repaintWidgetAtResizeLineViewRect ( --    QWidget *widget, const QRect &resizeLineViewRect) +-    TQWidget *widget, const QRect &resizeLineViewRect)  +void kpViewScrollableContainer::repaintWidgetRegion ( -+    QWidget *widget, ++    TQWidget *widget,  +    const QRegion &viewRegion)   {  -    const QRect resizeLineGlobalRect = mapViewToGlobal (resizeLineViewRect); @@ -144,7 +144,7 @@ diff -u -p -r1.7 kpviewscrollablecontainer.cpp  +  +    if (!redrawWidgetRegion.isEmpty ())       { -         // TODO: should be "!widget->testWFlags (Qt::WRepaintNoErase)" +         // TODO: should be "!widget->testWFlags (TQt::WRepaintNoErase)"           //       but for some reason, doesn't work for viewport().           const bool erase = !dynamic_cast <kpView *> (widget);  -        widget->repaint (redrawWidgetRect, erase); @@ -153,7 +153,7 @@ diff -u -p -r1.7 kpviewscrollablecontainer.cpp   }   // protected --void kpViewScrollableContainer::repaintWidgetAtResizeLines (QWidget *widget) +-void kpViewScrollableContainer::repaintWidgetAtResizeLines (TQWidget *widget)  +void kpViewScrollableContainer::eraseResizeLines (const QRegion &viewRegion)   {  -    repaintWidgetAtResizeLineViewRect (widget, rightResizeLineRect ()); @@ -202,25 +202,25 @@ diff -u -p -r1.7 kpviewscrollablecontainer.cpp  +       QPainter p (viewport (), true/*unclipped*/); -     p.setRasterOp (Qt::NotROP); +     p.setRasterOp (TQt::NotROP);  -    const QRect rightRect = rightResizeLineRect ();  -    if (rightRect.isValid ()) --        p.fillRect (mapViewToViewport (rightRect), Qt::white); +-        p.fillRect (mapViewToViewport (rightRect), TQt::white);  -  -    const QRect bottomRect = bottomResizeLineRect ();  -    if (bottomRect.isValid ()) --        p.fillRect (mapViewToViewport (bottomRect), Qt::white); +-        p.fillRect (mapViewToViewport (bottomRect), TQt::white);  -  -    const QRect bottomRightRect = bottomRightResizeLineRect ();  -    if (bottomRightRect.isValid ()) --        p.fillRect (mapViewToViewport (bottomRightRect), Qt::white); +-        p.fillRect (mapViewToViewport (bottomRightRect), TQt::white);  +    const QMemArray <QRect> rects = mapViewToViewport (viewRegion).rects ();  +    for (QMemArray <QRect>::ConstIterator it = rects.begin ();  +         it != rects.end ();  +         it++)  +    { -+        p.fillRect (*it, Qt::white); ++        p.fillRect (*it, TQt::white);  +    }       p.end (); @@ -353,8 +353,8 @@ diff -u -p -r1.7 kpviewscrollablecontainer.cpp  +    }  +#endif  + -     updateResizeLines (QMAX (1, TQMAX (m_view->width () + viewDX, m_view->zoomDocToViewX (1))), -                        QMAX (1, TQMAX (m_view->height () + viewDY, m_view->zoomDocToViewY (1))), +     updateResizeLines (TQMAX (1, TQMAX (m_view->width () + viewDX, m_view->zoomDocToViewX (1))), +                        TQMAX (1, TQMAX (m_view->height () + viewDY, m_view->zoomDocToViewY (1))),                          viewDX, viewDY);       emit continuedDocResize (newDocSize ()); @@ -389,7 +389,7 @@ diff -u -p -r1.7 kpviewscrollablecontainer.cpp  +    //m_resizeLinesNeedErase = false;  + -     QTimer::singleShot (0, this, SLOT (slotContentsMoved ())); +     QTimer::singleShot (0, this, TQ_SLOT (slotContentsMoved ()));   }  @@ -874,9 +982,27 @@ void kpViewScrollableContainer::slotCont                  << " grip=" << grip << endl; @@ -455,7 +455,7 @@ diff -u -p -r1.7 kpviewscrollablecontainer.cpp  +    }  +}  + -+// protected virtual [base QWidget] ++// protected virtual [base TQWidget]  +void kpViewScrollableContainer::windowActivationChange (bool wasActive)  +{  +#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER && 1 @@ -466,7 +466,7 @@ diff -u -p -r1.7 kpviewscrollablecontainer.cpp  +    QScrollView::windowActivationChange (wasActive);  +  +    // Wait for m_view to update -+    QTimer::singleShot (0, this, SLOT (windowActivationChanged ())); ++    QTimer::singleShot (0, this, TQ_SLOT (windowActivationChanged ()));  +}  +  + @@ -502,11 +502,11 @@ diff -u -p -r1.3 kpviewscrollablecontainer.h       QRect mapViewToGlobal (const QRect &viewRect);  +    QRegion mapViewToGlobal (const QRegion &viewRegion); --    void repaintWidgetAtResizeLineViewRect (QWidget *widget, +-    void repaintWidgetAtResizeLineViewRect (TQWidget *widget,  -                                            const QRect &resizeLineViewRect); --    void repaintWidgetAtResizeLines (QWidget *widget); +-    void repaintWidgetAtResizeLines (TQWidget *widget);  -    void eraseResizeLines (); -+    void repaintWidgetRegion (QWidget *widget, ++    void repaintWidgetRegion (TQWidget *widget,  +        const QRegion &viewRegion);  +    void eraseResizeLines (const QRegion &viewRegion); @@ -519,7 +519,7 @@ diff -u -p -r1.3 kpviewscrollablecontainer.h       virtual void viewportPaintEvent (QPaintEvent *e);       virtual void paintEvent (QPaintEvent *e); -+protected Q_SLOTS: ++protected slots:  +    void windowActivationChanged ();  +protected:  +    virtual void windowActivationChange (bool wasActive); @@ -534,7 +534,7 @@ diff -u -p -r1.3 kpviewscrollablecontainer.h       int m_resizeRoundedLastViewDX, m_resizeRoundedLastViewDY;  +    int m_resizeLinesDontPaintClever;       bool m_haveMovedFromOriginalDocSize; -     QString m_gripStatusMessage; +     TQString m_gripStatusMessage;   };  Index: kpwidgetmapper.cpp  =================================================================== @@ -551,11 +551,11 @@ diff -u -p -r1.1 kpwidgetmapper.cpp   #include <qwidget.h> -@@ -54,6 +55,17 @@ QRect fromGlobal (const QWidget *widget, +@@ -54,6 +55,17 @@ QRect fromGlobal (const TQWidget *widget,       return QRect (topLeft.x (), topLeft.y (), rect.width (), rect.height ());   } -+QRegion fromGlobal (const QWidget *widget, const QRegion ®ion) ++QRegion fromGlobal (const TQWidget *widget, const QRegion ®ion)  +{  +    if (!widget || region.isEmpty ())  +        return region; @@ -567,13 +567,13 @@ diff -u -p -r1.1 kpwidgetmapper.cpp  +}  + - QPoint toGlobal (const QWidget *widget, const QPoint &point) + QPoint toGlobal (const TQWidget *widget, const QPoint &point)   { -@@ -72,5 +84,16 @@ QRect toGlobal (const QWidget *widget, c +@@ -72,5 +84,16 @@ QRect toGlobal (const TQWidget *widget, c       return QRect (topLeft.x (), topLeft.y (), rect.width (), rect.height ());   } -+QRegion toGlobal (const QWidget *widget, const QRegion ®ion) ++QRegion toGlobal (const TQWidget *widget, const QRegion ®ion)  +{  +    if (!widget || region.isEmpty ())  +        return region; @@ -594,7 +594,7 @@ diff -u -p -r1.1 kpwidgetmapper.h  --- kpwidgetmapper.h	10 Jul 2004 11:38:09 -0000	1.1  +++ kpwidgetmapper.h	30 Jul 2004 11:37:21 -0000  @@ -32,15 +32,18 @@ - class QWidget; + class TQWidget;   class QPoint;   class QRect;  +class QRegion; @@ -602,13 +602,13 @@ diff -u -p -r1.1 kpwidgetmapper.h   namespace kpWidgetMapper   { -     QPoint fromGlobal (const QWidget *widget, const QPoint &point); -     QRect fromGlobal (const QWidget *widget, const QRect &rect); -+    QRegion fromGlobal (const QWidget *widget, const QRegion ®ion); +     QPoint fromGlobal (const TQWidget *widget, const QPoint &point); +     QRect fromGlobal (const TQWidget *widget, const QRect &rect); ++    QRegion fromGlobal (const TQWidget *widget, const QRegion ®ion); -     QPoint toGlobal (const QWidget *widget, const QPoint &point); -     QRect toGlobal (const QWidget *widget, const QRect &rect); -+    QRegion toGlobal (const QWidget *widget, const QRegion ®ion); +     QPoint toGlobal (const TQWidget *widget, const QPoint &point); +     QRect toGlobal (const TQWidget *widget, const QRect &rect); ++    QRegion toGlobal (const TQWidget *widget, const QRegion ®ion);   } diff --git a/kolourpaint/pixmapfx/kpcoloreffect.h b/kolourpaint/pixmapfx/kpcoloreffect.h index 793978de..d92fee5c 100644 --- a/kolourpaint/pixmapfx/kpcoloreffect.h +++ b/kolourpaint/pixmapfx/kpcoloreffect.h @@ -73,7 +73,7 @@ private:  class kpColorEffectWidget : public TQWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/pixmapfx/kpeffectbalance.cpp b/kolourpaint/pixmapfx/kpeffectbalance.cpp index a6b0a7ac..d9b503d6 100644 --- a/kolourpaint/pixmapfx/kpeffectbalance.cpp +++ b/kolourpaint/pixmapfx/kpeffectbalance.cpp @@ -327,28 +327,28 @@ kpEffectBalanceWidget::kpEffectBalanceWidget (bool actOnSelection,      // (no need for settingsChangedDelayed() since BCG effect is so fast :)) -    connect (m_brightnessInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SIGNAL (settingsChangedNoWaitCursor ())); -    connect (m_contrastInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SIGNAL (settingsChangedNoWaitCursor ())); - -    connect (m_gammaInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (recalculateGammaLabel ())); -    connect (m_gammaInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SIGNAL (settingsChangedNoWaitCursor ())); - -    connect (m_channelsComboBox, TQT_SIGNAL (activated (int)), -             this, TQT_SIGNAL (settingsChanged ())); - -    connect (brightnessResetPushButton, TQT_SIGNAL (clicked ()), -             this, TQT_SLOT (resetBrightness ())); -    connect (contrastResetPushButton, TQT_SIGNAL (clicked ()), -             this, TQT_SLOT (resetContrast ())); -    connect (gammaResetPushButton, TQT_SIGNAL (clicked ()), -             this, TQT_SLOT (resetGamma ())); - -    connect (resetPushButton, TQT_SIGNAL (clicked ()), -             this, TQT_SLOT (resetAll ())); +    connect (m_brightnessInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SIGNAL (settingsChangedNoWaitCursor ())); +    connect (m_contrastInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SIGNAL (settingsChangedNoWaitCursor ())); + +    connect (m_gammaInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (recalculateGammaLabel ())); +    connect (m_gammaInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SIGNAL (settingsChangedNoWaitCursor ())); + +    connect (m_channelsComboBox, TQ_SIGNAL (activated (int)), +             this, TQ_SIGNAL (settingsChanged ())); + +    connect (brightnessResetPushButton, TQ_SIGNAL (clicked ()), +             this, TQ_SLOT (resetBrightness ())); +    connect (contrastResetPushButton, TQ_SIGNAL (clicked ()), +             this, TQ_SLOT (resetContrast ())); +    connect (gammaResetPushButton, TQ_SIGNAL (clicked ()), +             this, TQ_SLOT (resetGamma ())); + +    connect (resetPushButton, TQ_SIGNAL (clicked ()), +             this, TQ_SLOT (resetAll ()));      recalculateGammaLabel (); diff --git a/kolourpaint/pixmapfx/kpeffectbalance.h b/kolourpaint/pixmapfx/kpeffectbalance.h index 2357a72c..17155cfb 100644 --- a/kolourpaint/pixmapfx/kpeffectbalance.h +++ b/kolourpaint/pixmapfx/kpeffectbalance.h @@ -73,7 +73,7 @@ protected:  class kpEffectBalanceWidget : public kpColorEffectWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/pixmapfx/kpeffectblursharpen.cpp b/kolourpaint/pixmapfx/kpeffectblursharpen.cpp index 000b2114..f92ac99d 100644 --- a/kolourpaint/pixmapfx/kpeffectblursharpen.cpp +++ b/kolourpaint/pixmapfx/kpeffectblursharpen.cpp @@ -149,11 +149,11 @@ kpEffectBlurSharpenWidget::kpEffectBlurSharpenWidget (bool actOnSelection,      lay->setColStretch (1, 1); -    connect (m_amountInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SIGNAL (settingsChangedDelayed ())); +    connect (m_amountInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SIGNAL (settingsChangedDelayed ())); -    connect (m_amountInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (slotUpdateTypeLabel ())); +    connect (m_amountInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (slotUpdateTypeLabel ()));  }  kpEffectBlurSharpenWidget::~kpEffectBlurSharpenWidget () diff --git a/kolourpaint/pixmapfx/kpeffectblursharpen.h b/kolourpaint/pixmapfx/kpeffectblursharpen.h index 5f42b712..0c4e148c 100644 --- a/kolourpaint/pixmapfx/kpeffectblursharpen.h +++ b/kolourpaint/pixmapfx/kpeffectblursharpen.h @@ -73,7 +73,7 @@ protected:  class kpEffectBlurSharpenWidget : public kpColorEffectWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/pixmapfx/kpeffectemboss.cpp b/kolourpaint/pixmapfx/kpeffectemboss.cpp index 87cb7d14..9ed8eb17 100644 --- a/kolourpaint/pixmapfx/kpeffectemboss.cpp +++ b/kolourpaint/pixmapfx/kpeffectemboss.cpp @@ -131,8 +131,8 @@ kpEffectEmbossWidget::kpEffectEmbossWidget (bool actOnSelection,      lay->setColStretch (1, 1); -    connect (m_amountInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SIGNAL (settingsChanged ())); +    connect (m_amountInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SIGNAL (settingsChanged ()));  #endif      m_enableCheckBox = new TQCheckBox (i18n ("E&nable"), this); @@ -144,8 +144,8 @@ kpEffectEmbossWidget::kpEffectEmbossWidget (bool actOnSelection,      // (settingsChangedDelayed() instead of settingsChanged() so that the      //  user can quickly press OK to apply effect to document directly and      //  not have to wait for the also slow preview) -    connect (m_enableCheckBox, TQT_SIGNAL (toggled (bool)), -             this, TQT_SIGNAL (settingsChangedDelayed ())); +    connect (m_enableCheckBox, TQ_SIGNAL (toggled (bool)), +             this, TQ_SIGNAL (settingsChangedDelayed ()));  }  kpEffectEmbossWidget::~kpEffectEmbossWidget () diff --git a/kolourpaint/pixmapfx/kpeffectemboss.h b/kolourpaint/pixmapfx/kpeffectemboss.h index dfb4847e..fbd9f3fc 100644 --- a/kolourpaint/pixmapfx/kpeffectemboss.h +++ b/kolourpaint/pixmapfx/kpeffectemboss.h @@ -65,7 +65,7 @@ protected:  class kpEffectEmbossWidget : public kpColorEffectWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/pixmapfx/kpeffectflatten.cpp b/kolourpaint/pixmapfx/kpeffectflatten.cpp index 51d74381..a6b482bb 100644 --- a/kolourpaint/pixmapfx/kpeffectflatten.cpp +++ b/kolourpaint/pixmapfx/kpeffectflatten.cpp @@ -168,13 +168,13 @@ kpEffectFlattenWidget::kpEffectFlattenWidget (bool actOnSelection,      lay->addWidget (colorButtonContainer); -    connect (m_enableCheckBox, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotEnableChanged (bool))); +    connect (m_enableCheckBox, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotEnableChanged (bool))); -    connect (m_color1Button, TQT_SIGNAL (changed (const TQColor &)), -             this, TQT_SIGNAL (settingsChanged ())); -    connect (m_color2Button, TQT_SIGNAL (changed (const TQColor &)), -             this, TQT_SIGNAL (settingsChanged ())); +    connect (m_color1Button, TQ_SIGNAL (changed (const TQColor &)), +             this, TQ_SIGNAL (settingsChanged ())); +    connect (m_color2Button, TQ_SIGNAL (changed (const TQColor &)), +             this, TQ_SIGNAL (settingsChanged ()));  }  kpEffectFlattenWidget::~kpEffectFlattenWidget () diff --git a/kolourpaint/pixmapfx/kpeffectflatten.h b/kolourpaint/pixmapfx/kpeffectflatten.h index 78252f5d..0b471b0b 100644 --- a/kolourpaint/pixmapfx/kpeffectflatten.h +++ b/kolourpaint/pixmapfx/kpeffectflatten.h @@ -75,7 +75,7 @@ protected:  class kpEffectFlattenWidget : public kpColorEffectWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/pixmapfx/kpeffectinvert.cpp b/kolourpaint/pixmapfx/kpeffectinvert.cpp index d6229aca..20a55726 100644 --- a/kolourpaint/pixmapfx/kpeffectinvert.cpp +++ b/kolourpaint/pixmapfx/kpeffectinvert.cpp @@ -192,15 +192,15 @@ kpEffectInvertWidget::kpEffectInvertWidget (bool actOnSelection,      m_inSignalHandler = false; -    connect (m_redCheckBox, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotRGBCheckBoxToggled ())); -    connect (m_greenCheckBox, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotRGBCheckBoxToggled ())); -    connect (m_blueCheckBox, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotRGBCheckBoxToggled ())); - -    connect (m_allCheckBox, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotAllCheckBoxToggled ())); +    connect (m_redCheckBox, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotRGBCheckBoxToggled ())); +    connect (m_greenCheckBox, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotRGBCheckBoxToggled ())); +    connect (m_blueCheckBox, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotRGBCheckBoxToggled ())); + +    connect (m_allCheckBox, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotAllCheckBoxToggled ()));  }  kpEffectInvertWidget::~kpEffectInvertWidget () diff --git a/kolourpaint/pixmapfx/kpeffectinvert.h b/kolourpaint/pixmapfx/kpeffectinvert.h index cfe5b6b5..1c975ddf 100644 --- a/kolourpaint/pixmapfx/kpeffectinvert.h +++ b/kolourpaint/pixmapfx/kpeffectinvert.h @@ -90,7 +90,7 @@ protected:  class kpEffectInvertWidget : public kpColorEffectWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/pixmapfx/kpeffectreducecolors.cpp b/kolourpaint/pixmapfx/kpeffectreducecolors.cpp index 910e78ac..528acf27 100644 --- a/kolourpaint/pixmapfx/kpeffectreducecolors.cpp +++ b/kolourpaint/pixmapfx/kpeffectreducecolors.cpp @@ -154,10 +154,10 @@ TQImage convertImageDepth (const TQImage &image, int depth, bool dither)      TQImage retImage = image.convertDepth (depth, -        Qt::AutoColor | -        (dither ? Qt::DiffuseDither : Qt::ThresholdDither) | -        Qt::ThresholdAlphaDither | -        (dither ? Qt::PreferDither : Qt::AvoidDither)); +        TQt::AutoColor | +        (dither ? TQt::DiffuseDither : TQt::ThresholdDither) | +        TQt::ThresholdAlphaDither | +        (dither ? TQt::PreferDither : TQt::AvoidDither));  #if DEBUG_KP_EFFECT_REDUCE_COLORS && 0      kdDebug () << "After colour reduction:" << endl; @@ -361,16 +361,16 @@ kpEffectReduceColorsWidget::kpEffectReduceColorsWidget (bool actOnSelection,      lay->addWidget (m_24BitRadioButton); -    connect (m_blackAndWhiteRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SIGNAL (settingsChanged ())); -    connect (m_blackAndWhiteDitheredRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SIGNAL (settingsChanged ())); -    connect (m_8BitRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SIGNAL (settingsChanged ())); -    connect (m_8BitDitheredRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SIGNAL (settingsChanged ())); -    connect (m_24BitRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SIGNAL (settingsChanged ())); +    connect (m_blackAndWhiteRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SIGNAL (settingsChanged ())); +    connect (m_blackAndWhiteDitheredRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SIGNAL (settingsChanged ())); +    connect (m_8BitRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SIGNAL (settingsChanged ())); +    connect (m_8BitDitheredRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SIGNAL (settingsChanged ())); +    connect (m_24BitRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SIGNAL (settingsChanged ()));  }  kpEffectReduceColorsWidget::~kpEffectReduceColorsWidget () diff --git a/kolourpaint/pixmapfx/kpeffectreducecolors.h b/kolourpaint/pixmapfx/kpeffectreducecolors.h index 0dfd18e2..3be807b0 100644 --- a/kolourpaint/pixmapfx/kpeffectreducecolors.h +++ b/kolourpaint/pixmapfx/kpeffectreducecolors.h @@ -72,7 +72,7 @@ protected:  class kpEffectReduceColorsWidget : public kpColorEffectWidget  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/pixmapfx/kpeffectsdialog.cpp b/kolourpaint/pixmapfx/kpeffectsdialog.cpp index c23c028f..87ef6859 100644 --- a/kolourpaint/pixmapfx/kpeffectsdialog.cpp +++ b/kolourpaint/pixmapfx/kpeffectsdialog.cpp @@ -84,8 +84,8 @@ kpEffectsDialog::kpEffectsDialog (bool actOnSelection,          setCaption (i18n ("More Image Effects")); -    connect (m_delayedUpdateTimer, TQT_SIGNAL (timeout ()), -             this, TQT_SLOT (slotUpdateWithWaitCursor ())); +    connect (m_delayedUpdateTimer, TQ_SIGNAL (timeout ()), +             this, TQ_SLOT (slotUpdateWithWaitCursor ()));      TQHBox *effectContainer = new TQHBox (mainWidget ()); @@ -116,8 +116,8 @@ kpEffectsDialog::kpEffectsDialog (bool actOnSelection,      addCustomWidgetToBack (m_settingsGroupBox); -    connect (m_effectsComboBox, TQT_SIGNAL (activated (int)), -             this, TQT_SLOT (selectEffect (int))); +    connect (m_effectsComboBox, TQ_SIGNAL (activated (int)), +             this, TQ_SLOT (selectEffect (int)));      selectEffect (0); @@ -308,12 +308,12 @@ void kpEffectsDialog::selectEffect (int which)      #endif -        connect (m_colorEffectWidget, TQT_SIGNAL (settingsChangedNoWaitCursor ()), -                 this, TQT_SLOT (slotUpdate ())); -        connect (m_colorEffectWidget, TQT_SIGNAL (settingsChanged ()), -                 this, TQT_SLOT (slotUpdateWithWaitCursor ())); -        connect (m_colorEffectWidget, TQT_SIGNAL (settingsChangedDelayed ()), -                 this, TQT_SLOT (slotDelayedUpdate ())); +        connect (m_colorEffectWidget, TQ_SIGNAL (settingsChangedNoWaitCursor ()), +                 this, TQ_SLOT (slotUpdate ())); +        connect (m_colorEffectWidget, TQ_SIGNAL (settingsChanged ()), +                 this, TQ_SLOT (slotUpdateWithWaitCursor ())); +        connect (m_colorEffectWidget, TQ_SIGNAL (settingsChangedDelayed ()), +                 this, TQ_SLOT (slotDelayedUpdate ()));          slotUpdateWithWaitCursor ();      #if DEBUG_KP_EFFECTS_DIALOG          kdDebug () << "\tafter slotUpdateWithWaitCursor, previewGroupBox.size=" diff --git a/kolourpaint/pixmapfx/kpeffectsdialog.h b/kolourpaint/pixmapfx/kpeffectsdialog.h index a0621a70..4432e18c 100644 --- a/kolourpaint/pixmapfx/kpeffectsdialog.h +++ b/kolourpaint/pixmapfx/kpeffectsdialog.h @@ -47,7 +47,7 @@ class kpMainWindow;  class kpEffectsDialog : public kpToolPreviewDialog  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/pixmapfx/kppixmapfx.cpp b/kolourpaint/pixmapfx/kppixmapfx.cpp index ac5fca44..cbc69b1d 100644 --- a/kolourpaint/pixmapfx/kppixmapfx.cpp +++ b/kolourpaint/pixmapfx/kppixmapfx.cpp @@ -694,9 +694,9 @@ void kpPixmapFX::setPixmapAt (TQPixmap *destPixmapPtr, const TQRect &destRect,               0, 0,               destRect.width (), destRect.height ());  #else -    bitBlt (TQT_TQPAINTDEVICE(destPixmapPtr), +    bitBlt (destPixmapPtr,              destRect.x (), destRect.y (), -            TQT_TQPAINTDEVICE(const_cast<TQPixmap*>(&srcPixmap)), +            const_cast<TQPixmap*>(&srcPixmap),              0, 0,              destRect.width (), destRect.height (),              TQt::CopyROP, @@ -705,9 +705,9 @@ void kpPixmapFX::setPixmapAt (TQPixmap *destPixmapPtr, const TQRect &destRect,      if (srcPixmap.mask ())      {          TQBitmap mask = getNonNullMask (*destPixmapPtr); -        bitBlt (TQT_TQPAINTDEVICE(&mask), +        bitBlt (&mask,                  destRect.x (), destRect.y (), -                TQT_TQPAINTDEVICE(const_cast<TQBitmap*>(srcPixmap.mask ())), +                const_cast<TQBitmap*>(srcPixmap.mask ()),                  0, 0,                  destRect.width (), destRect.height (),                  TQt::CopyROP, diff --git a/kolourpaint/tools/kptoolaction.h b/kolourpaint/tools/kptoolaction.h index c1d77159..0f60861a 100644 --- a/kolourpaint/tools/kptoolaction.h +++ b/kolourpaint/tools/kptoolaction.h @@ -37,7 +37,7 @@  class kpToolAction : public TDEToggleAction,                       public kpSingleKeyTriggersActionInterface  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolairspray.cpp b/kolourpaint/tools/kptoolairspray.cpp index dc2b4a23..5450a79e 100644 --- a/kolourpaint/tools/kptoolairspray.cpp +++ b/kolourpaint/tools/kptoolairspray.cpp @@ -65,7 +65,7 @@ kpToolAirSpray::kpToolAirSpray (kpMainWindow *mainWindow)        m_currentCommand (0)  {      m_timer = new TQTimer (this); -    connect (m_timer, TQT_SIGNAL (timeout ()), this, TQT_SLOT (actuallyDraw ())); +    connect (m_timer, TQ_SIGNAL (timeout ()), this, TQ_SLOT (actuallyDraw ()));  }  kpToolAirSpray::~kpToolAirSpray () @@ -95,8 +95,8 @@ void kpToolAirSpray::begin ()          if (m_toolWidgetSpraycanSize)          {              m_size = m_toolWidgetSpraycanSize->spraycanSize (); -            connect (m_toolWidgetSpraycanSize, TQT_SIGNAL (spraycanSizeChanged (int)), -                     this, TQT_SLOT (slotSpraycanSizeChanged (int))); +            connect (m_toolWidgetSpraycanSize, TQ_SIGNAL (spraycanSizeChanged (int)), +                     this, TQ_SLOT (slotSpraycanSizeChanged (int)));              m_toolWidgetSpraycanSize->show ();          } @@ -110,8 +110,8 @@ void kpToolAirSpray::end ()  {      if (m_toolWidgetSpraycanSize)      { -        disconnect (m_toolWidgetSpraycanSize, TQT_SIGNAL (spraycanSizeChanged (int)), -                    this, TQT_SLOT (slotSpraycanSizeChanged (int))); +        disconnect (m_toolWidgetSpraycanSize, TQ_SIGNAL (spraycanSizeChanged (int)), +                    this, TQ_SLOT (slotSpraycanSizeChanged (int)));          m_toolWidgetSpraycanSize = 0;      } diff --git a/kolourpaint/tools/kptoolairspray.h b/kolourpaint/tools/kptoolairspray.h index e74159ca..ebafd075 100644 --- a/kolourpaint/tools/kptoolairspray.h +++ b/kolourpaint/tools/kptoolairspray.h @@ -46,7 +46,7 @@ class kpViewManager;  class kpToolAirSpray : public kpTool  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolbrush.h b/kolourpaint/tools/kptoolbrush.h index 425b558a..6c7e6f4f 100644 --- a/kolourpaint/tools/kptoolbrush.h +++ b/kolourpaint/tools/kptoolbrush.h @@ -33,7 +33,7 @@  class kpToolBrush : public kpToolPen  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolcolorpicker.h b/kolourpaint/tools/kptoolcolorpicker.h index 47601860..b8e16a41 100644 --- a/kolourpaint/tools/kptoolcolorpicker.h +++ b/kolourpaint/tools/kptoolcolorpicker.h @@ -41,7 +41,7 @@ class kpColorToolBar;  class kpToolColorPicker : public kpTool  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolcolorwasher.h b/kolourpaint/tools/kptoolcolorwasher.h index 41910638..9b183c69 100644 --- a/kolourpaint/tools/kptoolcolorwasher.h +++ b/kolourpaint/tools/kptoolcolorwasher.h @@ -33,7 +33,7 @@  class kpToolColorWasher : public kpToolPen  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolcurve.h b/kolourpaint/tools/kptoolcurve.h index 7510c8fc..2e9a3355 100644 --- a/kolourpaint/tools/kptoolcurve.h +++ b/kolourpaint/tools/kptoolcurve.h @@ -35,7 +35,7 @@ class kpMainWindow;  class kpToolCurve : public kpToolPolygon  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolellipse.h b/kolourpaint/tools/kptoolellipse.h index 2ac8db48..574c609c 100644 --- a/kolourpaint/tools/kptoolellipse.h +++ b/kolourpaint/tools/kptoolellipse.h @@ -35,7 +35,7 @@ class kpMainWindow;  class kpToolEllipse : public kpToolRectangle  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptooleraser.h b/kolourpaint/tools/kptooleraser.h index f80335ca..f05a7097 100644 --- a/kolourpaint/tools/kptooleraser.h +++ b/kolourpaint/tools/kptooleraser.h @@ -33,7 +33,7 @@  class kpToolEraser : public kpToolPen  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolflip.cpp b/kolourpaint/tools/kptoolflip.cpp index 49aed85f..c3d13f9b 100644 --- a/kolourpaint/tools/kptoolflip.cpp +++ b/kolourpaint/tools/kptoolflip.cpp @@ -171,10 +171,10 @@ kpToolFlipDialog::kpToolFlipDialog (bool actOnSelection, TQWidget *parent)          m_verticalFlipRadioButton->setChecked (s_lastIsVerticalFlip);          m_horizontalFlipRadioButton->setChecked (!s_lastIsVerticalFlip); -        connect (m_verticalFlipRadioButton, TQT_SIGNAL (toggled (bool)), -                 this, TQT_SLOT (slotIsVerticalFlipChanged ())); -        connect (m_horizontalFlipRadioButton, TQT_SIGNAL (toggled (bool)), -                 this, TQT_SLOT (slotIsVerticalFlipChanged ())); +        connect (m_verticalFlipRadioButton, TQ_SIGNAL (toggled (bool)), +                 this, TQ_SLOT (slotIsVerticalFlipChanged ())); +        connect (m_horizontalFlipRadioButton, TQ_SIGNAL (toggled (bool)), +                 this, TQ_SLOT (slotIsVerticalFlipChanged ()));      }  } diff --git a/kolourpaint/tools/kptoolflip.h b/kolourpaint/tools/kptoolflip.h index 1def23bd..b35cbc38 100644 --- a/kolourpaint/tools/kptoolflip.h +++ b/kolourpaint/tools/kptoolflip.h @@ -64,7 +64,7 @@ private:  class kpToolFlipDialog : public KDialogBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolfloodfill.h b/kolourpaint/tools/kptoolfloodfill.h index 67ef8446..271060e7 100644 --- a/kolourpaint/tools/kptoolfloodfill.h +++ b/kolourpaint/tools/kptoolfloodfill.h @@ -47,7 +47,7 @@ class kpToolFloodFillCommand;  class kpToolFloodFill : public kpTool  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolline.h b/kolourpaint/tools/kptoolline.h index 44b8f5da..66509504 100644 --- a/kolourpaint/tools/kptoolline.h +++ b/kolourpaint/tools/kptoolline.h @@ -35,7 +35,7 @@ class kpMainWindow;  class kpToolLine : public kpToolPolygon  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolpen.cpp b/kolourpaint/tools/kptoolpen.cpp index 387f4bb7..fe8ab3c5 100644 --- a/kolourpaint/tools/kptoolpen.cpp +++ b/kolourpaint/tools/kptoolpen.cpp @@ -133,8 +133,8 @@ void kpToolPen::begin ()      if (m_mode & SquareBrushes)      {          m_toolWidgetEraserSize = tb->toolWidgetEraserSize (); -        connect (m_toolWidgetEraserSize, TQT_SIGNAL (eraserSizeChanged (int)), -                 this, TQT_SLOT (slotEraserSizeChanged (int))); +        connect (m_toolWidgetEraserSize, TQ_SIGNAL (eraserSizeChanged (int)), +                 this, TQ_SLOT (slotEraserSizeChanged (int)));          m_toolWidgetEraserSize->show ();          slotEraserSizeChanged (m_toolWidgetEraserSize->eraserSize ()); @@ -145,8 +145,8 @@ void kpToolPen::begin ()      if (m_mode & DiverseBrushes)      {          m_toolWidgetBrush = tb->toolWidgetBrush (); -        connect (m_toolWidgetBrush, TQT_SIGNAL (brushChanged (const TQPixmap &, bool)), -                 this, TQT_SLOT (slotBrushChanged (const TQPixmap &, bool))); +        connect (m_toolWidgetBrush, TQ_SIGNAL (brushChanged (const TQPixmap &, bool)), +                 this, TQ_SLOT (slotBrushChanged (const TQPixmap &, bool)));          m_toolWidgetBrush->show ();          slotBrushChanged (m_toolWidgetBrush->brush (), @@ -163,15 +163,15 @@ void kpToolPen::end ()  {      if (m_toolWidgetEraserSize)      { -        disconnect (m_toolWidgetEraserSize, TQT_SIGNAL (eraserSizeChanged (int)), -                    this, TQT_SLOT (slotEraserSizeChanged (int))); +        disconnect (m_toolWidgetEraserSize, TQ_SIGNAL (eraserSizeChanged (int)), +                    this, TQ_SLOT (slotEraserSizeChanged (int)));          m_toolWidgetEraserSize = 0;      }      if (m_toolWidgetBrush)      { -        disconnect (m_toolWidgetBrush, TQT_SIGNAL (brushChanged (const TQPixmap &, bool)), -                    this, TQT_SLOT (slotBrushChanged (const TQPixmap &, bool))); +        disconnect (m_toolWidgetBrush, TQ_SIGNAL (brushChanged (const TQPixmap &, bool)), +                    this, TQ_SLOT (slotBrushChanged (const TQPixmap &, bool)));          m_toolWidgetBrush = 0;      } diff --git a/kolourpaint/tools/kptoolpen.h b/kolourpaint/tools/kptoolpen.h index 9bbcbb37..c7a01e20 100644 --- a/kolourpaint/tools/kptoolpen.h +++ b/kolourpaint/tools/kptoolpen.h @@ -47,7 +47,7 @@ class kpViewManager;  class kpToolPen : public kpTool  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolpolygon.cpp b/kolourpaint/tools/kptoolpolygon.cpp index 00a70b02..65f380c7 100644 --- a/kolourpaint/tools/kptoolpolygon.cpp +++ b/kolourpaint/tools/kptoolpolygon.cpp @@ -79,23 +79,23 @@ static const char *pointArrayToString (const TQPointArray &pointArray)  #endif -static TQPen makeMaskPen (const kpColor &color, int lineWidth, Qt::PenStyle lineStyle) +static TQPen makeMaskPen (const kpColor &color, int lineWidth, TQt::PenStyle lineStyle)  {      return TQPen (color.maskColor (),                   lineWidth == 1 ? 0/*closer to looking width 1*/ : lineWidth, lineStyle, -                 Qt::RoundCap, Qt::RoundJoin); +                 TQt::RoundCap, TQt::RoundJoin);  } -static TQPen makePen (const kpColor &color, int lineWidth, Qt::PenStyle lineStyle) +static TQPen makePen (const kpColor &color, int lineWidth, TQt::PenStyle lineStyle)  {      if (color.isOpaque ())      {          return TQPen (color.toTQColor (),                       lineWidth == 1 ? 0/*closer to looking width 1*/ : lineWidth, lineStyle, -                     Qt::RoundCap, Qt::RoundJoin); +                     TQt::RoundCap, TQt::RoundJoin);      }      else -        return Qt::NoPen; +        return TQt::NoPen;  }  static TQBrush makeMaskBrush (const kpColor &foregroundColor, @@ -105,7 +105,7 @@ static TQBrush makeMaskBrush (const kpColor &foregroundColor,      if (toolWidgetFillStyle)          return toolWidgetFillStyle->maskBrush (foregroundColor, backgroundColor);      else -        return Qt::NoBrush; +        return TQt::NoBrush;  }  static TQBrush makeBrush (const kpColor &foregroundColor, @@ -115,7 +115,7 @@ static TQBrush makeBrush (const kpColor &foregroundColor,      if (toolWidgetFillStyle)          return toolWidgetFillStyle->brush (foregroundColor, backgroundColor);      else -        return Qt::NoBrush; +        return TQt::NoBrush;  }  static bool only1PixelInPointArray (const TQPointArray &points) @@ -135,7 +135,7 @@ static bool only1PixelInPointArray (const TQPointArray &points)  static TQPixmap pixmap (const TQPixmap &oldPixmap,                         const TQPointArray &points, const TQRect &rect,                         const kpColor &foregroundColor, kpColor backgroundColor, -                       int lineWidth, Qt::PenStyle lineStyle, +                       int lineWidth, TQt::PenStyle lineStyle,                         kpToolWidgetFillStyle *toolWidgetFillStyle,                         enum kpToolPolygon::Mode mode, bool final = true)  { @@ -370,11 +370,11 @@ void kpToolPolygon::begin ()          if (m_toolWidgetFillStyle)          { -            connect (m_toolWidgetFillStyle, TQT_SIGNAL (fillStyleChanged (kpToolWidgetFillStyle::FillStyle)), -                     this, TQT_SLOT (slotFillStyleChanged (kpToolWidgetFillStyle::FillStyle))); +            connect (m_toolWidgetFillStyle, TQ_SIGNAL (fillStyleChanged (kpToolWidgetFillStyle::FillStyle)), +                     this, TQ_SLOT (slotFillStyleChanged (kpToolWidgetFillStyle::FillStyle)));          } -        connect (m_toolWidgetLineWidth, TQT_SIGNAL (lineWidthChanged (int)), -                 this, TQT_SLOT (slotLineWidthChanged (int))); +        connect (m_toolWidgetLineWidth, TQ_SIGNAL (lineWidthChanged (int)), +                 this, TQ_SLOT (slotLineWidthChanged (int)));          if (m_toolWidgetFillStyle)              m_toolWidgetFillStyle->show (); @@ -404,15 +404,15 @@ void kpToolPolygon::end ()      if (m_toolWidgetFillStyle)      { -        disconnect (m_toolWidgetFillStyle, TQT_SIGNAL (fillStyleChanged (kpToolWidgetFillStyle::FillStyle)), -                    this, TQT_SLOT (slotFillStyleChanged (kpToolWidgetFillStyle::FillStyle))); +        disconnect (m_toolWidgetFillStyle, TQ_SIGNAL (fillStyleChanged (kpToolWidgetFillStyle::FillStyle)), +                    this, TQ_SLOT (slotFillStyleChanged (kpToolWidgetFillStyle::FillStyle)));          m_toolWidgetFillStyle = 0;      }      if (m_toolWidgetLineWidth)      { -        disconnect (m_toolWidgetLineWidth, TQT_SIGNAL (lineWidthChanged (int)), -                    this, TQT_SLOT (slotLineWidthChanged (int))); +        disconnect (m_toolWidgetLineWidth, TQ_SIGNAL (lineWidthChanged (int)), +                    this, TQ_SLOT (slotLineWidthChanged (int)));          m_toolWidgetLineWidth = 0;      } @@ -652,7 +652,7 @@ void kpToolPolygon::updateShape ()      TQPixmap newPixmap = pixmap (oldPixmap,                                  m_points, boundingRect,                                  color (m_mouseButton), color (1 - m_mouseButton), -                                m_lineWidth, Qt::SolidLine, +                                m_lineWidth, TQt::SolidLine,                                  m_toolWidgetFillStyle,                                  m_mode, false/*not final*/); @@ -790,7 +790,7 @@ void kpToolPolygon::endShape (const TQPoint &, const TQRect &)              (text (),               m_points, boundingRect,               color (m_mouseButton), color (1 - m_mouseButton), -             m_lineWidth, Qt::SolidLine, +             m_lineWidth, TQt::SolidLine,               m_toolWidgetFillStyle,               document ()->getPixmapAt (boundingRect),               m_mode, @@ -844,7 +844,7 @@ kpToolPolygonCommand::kpToolPolygonCommand (const TQString &name,                                              const TQPointArray &points,                                              const TQRect &normalizedRect,                                              const kpColor &foregroundColor, const kpColor &backgroundColor, -                                            int lineWidth, Qt::PenStyle lineStyle, +                                            int lineWidth, TQt::PenStyle lineStyle,                                              kpToolWidgetFillStyle *toolWidgetFillStyle,                                              const TQPixmap &originalArea,                                              enum kpToolPolygon::Mode mode, diff --git a/kolourpaint/tools/kptoolpolygon.h b/kolourpaint/tools/kptoolpolygon.h index 788b2a31..e6178025 100644 --- a/kolourpaint/tools/kptoolpolygon.h +++ b/kolourpaint/tools/kptoolpolygon.h @@ -59,7 +59,7 @@ class kpViewManager;  class kpToolPolygon : public kpTool  { -Q_OBJECT +TQ_OBJECT  public: @@ -130,7 +130,7 @@ public:                            const TQPointArray &points,                            const TQRect &normalizedRect,                            const kpColor &foregroundColor, const kpColor &backgroundColor, -                          int lineWidth, Qt::PenStyle lineStyle, +                          int lineWidth, TQt::PenStyle lineStyle,                            kpToolWidgetFillStyle *toolWidgetFillStyle,                            const TQPixmap &originalArea,                            kpToolPolygon::Mode mode, @@ -148,7 +148,7 @@ private:      kpColor m_foregroundColor, m_backgroundColor;      int m_lineWidth; -    Qt::PenStyle m_lineStyle; +    TQt::PenStyle m_lineStyle;      kpToolWidgetFillStyle *m_toolWidgetFillStyle;      TQPixmap m_originalArea; diff --git a/kolourpaint/tools/kptoolpolyline.h b/kolourpaint/tools/kptoolpolyline.h index 3c49f8fa..e3d719f1 100644 --- a/kolourpaint/tools/kptoolpolyline.h +++ b/kolourpaint/tools/kptoolpolyline.h @@ -35,7 +35,7 @@ class kpMainWindow;  class kpToolPolyline : public kpToolPolygon  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolpreviewdialog.cpp b/kolourpaint/tools/kptoolpreviewdialog.cpp index 65afb587..d28ab542 100644 --- a/kolourpaint/tools/kptoolpreviewdialog.cpp +++ b/kolourpaint/tools/kptoolpreviewdialog.cpp @@ -162,13 +162,13 @@ void kpToolPreviewDialog::createPreviewGroupBox ()      m_previewPixmapLabel = new kpResizeSignallingLabel (m_previewGroupBox);      m_previewPixmapLabel->setMinimumSize (150, 110); -    connect (m_previewPixmapLabel, TQT_SIGNAL (resized ()), -             this, TQT_SLOT (updatePreview ())); +    connect (m_previewPixmapLabel, TQ_SIGNAL (resized ()), +             this, TQ_SLOT (updatePreview ()));      TQPushButton *updatePushButton = new TQPushButton (i18n ("&Update"),                                                       m_previewGroupBox); -    connect (updatePushButton, TQT_SIGNAL (clicked ()), -             this, TQT_SLOT (slotUpdateWithWaitCursor ())); +    connect (updatePushButton, TQ_SIGNAL (clicked ()), +             this, TQ_SLOT (slotUpdateWithWaitCursor ()));      TQVBoxLayout *previewLayout = new TQVBoxLayout (m_previewGroupBox, diff --git a/kolourpaint/tools/kptoolpreviewdialog.h b/kolourpaint/tools/kptoolpreviewdialog.h index 42b21701..f5a6b7c9 100644 --- a/kolourpaint/tools/kptoolpreviewdialog.h +++ b/kolourpaint/tools/kptoolpreviewdialog.h @@ -45,7 +45,7 @@ class kpResizeSignallingLabel;  class kpToolPreviewDialog : public KDialogBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolrectangle.cpp b/kolourpaint/tools/kptoolrectangle.cpp index 9e5883ea..efc9cd16 100644 --- a/kolourpaint/tools/kptoolrectangle.cpp +++ b/kolourpaint/tools/kptoolrectangle.cpp @@ -238,7 +238,7 @@ void kpToolRectangle::updatePen (int mouseButton)          if (color (mouseButton).isOpaque ())              m_pen [mouseButton] = TQPen (color (mouseButton).toTQColor ());          else -            m_pen [mouseButton] = TQPen(Qt::NoPen); +            m_pen [mouseButton] = TQPen(TQt::NoPen);          m_maskPen [mouseButton] = TQPen (maskPenColor);      }      else @@ -250,7 +250,7 @@ void kpToolRectangle::updatePen (int mouseButton)                                          TQt::SolidLine);          }          else -            m_pen [mouseButton] = TQPen(Qt::NoPen); +            m_pen [mouseButton] = TQPen(TQt::NoPen);          m_maskPen [mouseButton] = TQPen (maskPenColor,                                          m_toolWidgetLineWidth->lineWidth (),                                          TQt::SolidLine); @@ -276,8 +276,8 @@ void kpToolRectangle::updateBrush (int mouseButton)      }      else      { -        m_brush [mouseButton] = TQBrush(Qt::NoBrush); -        m_maskBrush [mouseButton] = TQBrush(Qt::NoBrush); +        m_brush [mouseButton] = TQBrush(TQt::NoBrush); +        m_maskBrush [mouseButton] = TQBrush(TQt::NoBrush);      }  } @@ -323,16 +323,16 @@ void kpToolRectangle::begin ()      if (tb)      {          m_toolWidgetLineWidth = tb->toolWidgetLineWidth (); -        connect (m_toolWidgetLineWidth, TQT_SIGNAL (lineWidthChanged (int)), -                 this, TQT_SLOT (slotLineWidthChanged ())); +        connect (m_toolWidgetLineWidth, TQ_SIGNAL (lineWidthChanged (int)), +                 this, TQ_SLOT (slotLineWidthChanged ()));          m_toolWidgetLineWidth->show ();          updatePens ();          m_toolWidgetFillStyle = tb->toolWidgetFillStyle (); -        connect (m_toolWidgetFillStyle, TQT_SIGNAL (fillStyleChanged (kpToolWidgetFillStyle::FillStyle)), -                 this, TQT_SLOT (slotFillStyleChanged ())); +        connect (m_toolWidgetFillStyle, TQ_SIGNAL (fillStyleChanged (kpToolWidgetFillStyle::FillStyle)), +                 this, TQ_SLOT (slotFillStyleChanged ()));          m_toolWidgetFillStyle->show ();          updateBrushes (); @@ -356,15 +356,15 @@ void kpToolRectangle::end ()      if (m_toolWidgetLineWidth)      { -        disconnect (m_toolWidgetLineWidth, TQT_SIGNAL (lineWidthChanged (int)), -                    this, TQT_SLOT (slotLineWidthChanged ())); +        disconnect (m_toolWidgetLineWidth, TQ_SIGNAL (lineWidthChanged (int)), +                    this, TQ_SLOT (slotLineWidthChanged ()));          m_toolWidgetLineWidth = 0;      }      if (m_toolWidgetFillStyle)      { -        disconnect (m_toolWidgetFillStyle, TQT_SIGNAL (fillStyleChanged (kpToolWidgetFillStyle::FillStyle)), -                   this, TQT_SLOT (slotFillStyleChanged ())); +        disconnect (m_toolWidgetFillStyle, TQ_SIGNAL (fillStyleChanged (kpToolWidgetFillStyle::FillStyle)), +                   this, TQ_SLOT (slotFillStyleChanged ()));          m_toolWidgetFillStyle = 0;      } diff --git a/kolourpaint/tools/kptoolrectangle.h b/kolourpaint/tools/kptoolrectangle.h index c1f6562b..ede24449 100644 --- a/kolourpaint/tools/kptoolrectangle.h +++ b/kolourpaint/tools/kptoolrectangle.h @@ -49,7 +49,7 @@ class kpViewManager;  class kpToolRectangle : public kpTool  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolresizescale.cpp b/kolourpaint/tools/kptoolresizescale.cpp index 3ced0735..f9a4c461 100644 --- a/kolourpaint/tools/kptoolresizescale.cpp +++ b/kolourpaint/tools/kptoolresizescale.cpp @@ -497,7 +497,7 @@ void kpToolResizeScaleCommand::unexecute ()  // private static  kpToolResizeScaleCommand::Type kpToolResizeScaleDialog::s_lastType = -    kpToolResizeScaleCommand::Resize; +    kpToolResizeScaleCommand::SmoothScale;  // private static  double kpToolResizeScaleDialog::s_lastPercentWidth = 100, @@ -591,8 +591,8 @@ void kpToolResizeScaleDialog::createActOnBox (TQWidget *baseWidget)      m_actOnBox->setStretchFactor (m_actOnCombo, 1); -    connect (m_actOnCombo, TQT_SIGNAL (activated (int)), -             this, TQT_SLOT (slotActOnChanged ())); +    connect (m_actOnCombo, TQ_SIGNAL (activated (int)), +             this, TQ_SLOT (slotActOnChanged ()));  } @@ -634,7 +634,7 @@ static void toolButtonSetLook (TQToolButton *button,      button->setUsesTextLabel (true);      button->setTextLabel (name, false/*no tooltip*/);      button->setAccel (TQAccel::shortcutKey (name)); -    button->setFocusPolicy (TQ_StrongFocus); +    button->setFocusPolicy (TQWidget::StrongFocus);      button->setToggleButton (true);  } @@ -662,40 +662,28 @@ void kpToolResizeScaleDialog::createOperationGroupBox (TQWidget *baseWidget)                "</ul>"                "</qt>")); -    // TODO: ALT+R doesn't select the button. -    m_resizeButton = new TQToolButton (m_operationGroupBox); -    toolButtonSetLook (m_resizeButton, -                       TQString::fromLatin1 ("resize"), -                       i18n ("&Resize")); - -    m_scaleButton = new TQToolButton (m_operationGroupBox); -    toolButtonSetLook (m_scaleButton, -                       TQString::fromLatin1 ("scale"), -                       i18n ("&Scale")); -      m_smoothScaleButton = new TQToolButton (m_operationGroupBox);      toolButtonSetLook (m_smoothScaleButton,                         TQString::fromLatin1 ("smooth_scale"),                         i18n ("S&mooth Scale")); +    m_scaleButton = new TQToolButton (m_operationGroupBox); +    toolButtonSetLook (m_scaleButton, +                       TQString::fromLatin1 ("scale"), +                       i18n ("&Scale")); -    //m_resizeLabel = new TQLabel (i18n ("&Resize"), m_operationGroupBox); -    //m_scaleLabel = new TQLabel (i18n ("&Scale"), m_operationGroupBox); -    //m_smoothScaleLabel = new TQLabel (i18n ("S&mooth scale"), m_operationGroupBox); - - -    //m_resizeLabel->setAlignment (m_resizeLabel->alignment () | TQt::ShowPrefix); -    //m_scaleLabel->setAlignment (m_scaleLabel->alignment () | TQt::ShowPrefix); -    //m_smoothScaleLabel->setAlignment (m_smoothScaleLabel->alignment () | TQt::ShowPrefix); - +    m_resizeButton = new TQToolButton (m_operationGroupBox); +    toolButtonSetLook (m_resizeButton, +                       TQString::fromLatin1 ("resize"), +                       i18n ("&Resize"));      TQButtonGroup *resizeScaleButtonGroup = new TQButtonGroup (baseWidget);      resizeScaleButtonGroup->setExclusive (true);      resizeScaleButtonGroup->hide (); -    resizeScaleButtonGroup->insert (m_resizeButton); -    resizeScaleButtonGroup->insert (m_scaleButton);      resizeScaleButtonGroup->insert (m_smoothScaleButton); +    resizeScaleButtonGroup->insert (m_scaleButton); +    resizeScaleButtonGroup->insert (m_resizeButton);      TQGridLayout *operationLayout = new TQGridLayout (m_operationGroupBox, @@ -703,22 +691,17 @@ void kpToolResizeScaleDialog::createOperationGroupBox (TQWidget *baseWidget)                                                      marginHint () * 2/*don't overlap groupbox title*/,                                                      spacingHint ()); -    operationLayout->addWidget (m_resizeButton, 0, 0, TQt::AlignCenter); -    //operationLayout->addWidget (m_resizeLabel, 1, 0, TQt::AlignCenter); - +    operationLayout->addWidget (m_smoothScaleButton, 0, 0, TQt::AlignCenter);      operationLayout->addWidget (m_scaleButton, 0, 1, TQt::AlignCenter); -    //operationLayout->addWidget (m_scaleLabel, 1, 1, TQt::AlignCenter); - -    operationLayout->addWidget (m_smoothScaleButton, 0, 2, TQt::AlignCenter); -    //operationLayout->addWidget (m_smoothScaleLabel, 1, 2, TQt::AlignCenter); +    operationLayout->addWidget (m_resizeButton, 0, 2, TQt::AlignCenter); -    connect (m_resizeButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotTypeChanged ())); -    connect (m_scaleButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotTypeChanged ())); -    connect (m_smoothScaleButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotTypeChanged ())); +    connect (m_resizeButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotTypeChanged ())); +    connect (m_scaleButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotTypeChanged ())); +    connect (m_smoothScaleButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotTypeChanged ()));  }  // private @@ -800,18 +783,18 @@ void kpToolResizeScaleDialog::createDimensionsGroupBox (TQWidget *baseWidget)      dimensionsLayout->setRowSpacing (4/*row*/, dimensionsLayout->rowSpacing (4) * 2); -    connect (m_newWidthInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (slotWidthChanged (int))); -    connect (m_newHeightInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (slotHeightChanged (int))); +    connect (m_newWidthInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (slotWidthChanged (int))); +    connect (m_newHeightInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (slotHeightChanged (int))); -    connect (m_percentWidthInput, TQT_SIGNAL (valueChanged (double)), -             this, TQT_SLOT (slotPercentWidthChanged (double))); -    connect (m_percentHeightInput, TQT_SIGNAL (valueChanged (double)), -             this, TQT_SLOT (slotPercentHeightChanged (double))); +    connect (m_percentWidthInput, TQ_SIGNAL (valueChanged (double)), +             this, TQ_SLOT (slotPercentWidthChanged (double))); +    connect (m_percentHeightInput, TQ_SIGNAL (valueChanged (double)), +             this, TQ_SLOT (slotPercentHeightChanged (double))); -    connect (m_keepAspectRatioCheckBox, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (setKeepAspectRatio (bool))); +    connect (m_keepAspectRatioCheckBox, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (setKeepAspectRatio (bool)));  } diff --git a/kolourpaint/tools/kptoolresizescale.h b/kolourpaint/tools/kptoolresizescale.h index 9f4d96bd..daa63ec8 100644 --- a/kolourpaint/tools/kptoolresizescale.h +++ b/kolourpaint/tools/kptoolresizescale.h @@ -106,7 +106,7 @@ protected:  class kpToolResizeScaleDialog : public KDialogBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolrotate.cpp b/kolourpaint/tools/kptoolrotate.cpp index 28e05d3e..c70836a5 100644 --- a/kolourpaint/tools/kptoolrotate.cpp +++ b/kolourpaint/tools/kptoolrotate.cpp @@ -300,10 +300,10 @@ void kpToolRotateDialog::createDirectionGroupBox ()      directionLayout->addWidget (m_clockwiseRadioButton, 1, 1, TQt::AlignCenter); -    connect (m_antiClockwiseRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotUpdate ())); -    connect (m_clockwiseRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotUpdate ())); +    connect (m_antiClockwiseRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotUpdate ())); +    connect (m_clockwiseRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotUpdate ()));  }  // private @@ -351,20 +351,20 @@ void kpToolRotateDialog::createAngleGroupBox ()      angleLayout->setColStretch (1, 2);  // Stretch Custom Angle Input -    connect (m_angle90RadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotUpdate ())); -    connect (m_angle180RadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotUpdate ())); -    connect (m_angle270RadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotUpdate ())); +    connect (m_angle90RadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotUpdate ())); +    connect (m_angle180RadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotUpdate ())); +    connect (m_angle270RadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotUpdate ())); -    connect (m_angleCustomRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotAngleCustomRadioButtonToggled (bool))); -    connect (m_angleCustomRadioButton, TQT_SIGNAL (toggled (bool)), -             this, TQT_SLOT (slotUpdate ())); +    connect (m_angleCustomRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotAngleCustomRadioButtonToggled (bool))); +    connect (m_angleCustomRadioButton, TQ_SIGNAL (toggled (bool)), +             this, TQ_SLOT (slotUpdate ())); -    connect (m_angleCustomInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (slotUpdate ())); +    connect (m_angleCustomInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (slotUpdate ()));  } diff --git a/kolourpaint/tools/kptoolrotate.h b/kolourpaint/tools/kptoolrotate.h index be1b51c6..33ec1389 100644 --- a/kolourpaint/tools/kptoolrotate.h +++ b/kolourpaint/tools/kptoolrotate.h @@ -80,7 +80,7 @@ private:  class kpToolRotateDialog : public kpToolPreviewDialog  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolroundedrectangle.h b/kolourpaint/tools/kptoolroundedrectangle.h index 2f451521..89d3616d 100644 --- a/kolourpaint/tools/kptoolroundedrectangle.h +++ b/kolourpaint/tools/kptoolroundedrectangle.h @@ -35,7 +35,7 @@ class kpMainWindow;  class kpToolRoundedRectangle : public kpToolRectangle  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolselection.cpp b/kolourpaint/tools/kptoolselection.cpp index 8fbdee55..c6ee4bba 100644 --- a/kolourpaint/tools/kptoolselection.cpp +++ b/kolourpaint/tools/kptoolselection.cpp @@ -68,10 +68,10 @@ kpToolSelection::kpToolSelection (Mode mode,        m_createNOPTimer (new TQTimer (this)),        m_RMBMoveUpdateGUITimer (new TQTimer (this))  { -    connect (m_createNOPTimer, TQT_SIGNAL (timeout ()), -             this, TQT_SLOT (delayedDraw ())); -    connect (m_RMBMoveUpdateGUITimer, TQT_SIGNAL (timeout ()), -             this, TQT_SLOT (slotRMBMoveUpdateGUI ())); +    connect (m_createNOPTimer, TQ_SIGNAL (timeout ()), +             this, TQ_SLOT (delayedDraw ())); +    connect (m_RMBMoveUpdateGUITimer, TQ_SIGNAL (timeout ()), +             this, TQ_SLOT (slotRMBMoveUpdateGUI ()));  }  kpToolSelection::~kpToolSelection () @@ -180,8 +180,8 @@ void kpToolSelection::begin ()          if (m_toolWidgetOpaqueOrTransparent)          { -            connect (m_toolWidgetOpaqueOrTransparent, TQT_SIGNAL (isOpaqueChanged (bool)), -                     this, TQT_SLOT (slotIsOpaqueChanged ())); +            connect (m_toolWidgetOpaqueOrTransparent, TQ_SIGNAL (isOpaqueChanged (bool)), +                     this, TQ_SLOT (slotIsOpaqueChanged ()));              m_toolWidgetOpaqueOrTransparent->show ();          }      } @@ -225,8 +225,8 @@ void kpToolSelection::end ()      if (m_toolWidgetOpaqueOrTransparent)      { -        disconnect (m_toolWidgetOpaqueOrTransparent, TQT_SIGNAL (isOpaqueChanged (bool)), -                    this, TQT_SLOT (slotIsOpaqueChanged ())); +        disconnect (m_toolWidgetOpaqueOrTransparent, TQ_SIGNAL (isOpaqueChanged (bool)), +                    this, TQ_SLOT (slotIsOpaqueChanged ()));          m_toolWidgetOpaqueOrTransparent = 0;      } @@ -2037,8 +2037,8 @@ kpToolSelectionResizeScaleCommand::kpToolSelectionResizeScaleCommand (      m_newWidth = selection ()->width ();      m_newHeight = selection ()->height (); -    connect (m_smoothScaleTimer, TQT_SIGNAL (timeout ()), -             this, TQT_SLOT (resizeScaleAndMove ())); +    connect (m_smoothScaleTimer, TQ_SIGNAL (timeout ()), +             this, TQ_SLOT (resizeScaleAndMove ()));  }  kpToolSelectionResizeScaleCommand::~kpToolSelectionResizeScaleCommand () diff --git a/kolourpaint/tools/kptoolselection.h b/kolourpaint/tools/kptoolselection.h index ceef111d..81a3093f 100644 --- a/kolourpaint/tools/kptoolselection.h +++ b/kolourpaint/tools/kptoolselection.h @@ -58,7 +58,7 @@ class kpToolWidgetOpaqueOrTransparent;  class kpToolSelection : public kpTool  { -Q_OBJECT +TQ_OBJECT  public: @@ -242,7 +242,7 @@ private:  class kpToolSelectionResizeScaleCommand : public TQObject,                                            public kpNamedCommand  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptoolskew.cpp b/kolourpaint/tools/kptoolskew.cpp index 230db783..5cdeeb9e 100644 --- a/kolourpaint/tools/kptoolskew.cpp +++ b/kolourpaint/tools/kptoolskew.cpp @@ -296,10 +296,10 @@ void kpToolSkewDialog::createAngleGroupBox ()      angleLayout->addWidget (verticalSkewDegreesLabel, 1, 3); -    connect (m_horizontalSkewInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (slotUpdate ())); -    connect (m_verticalSkewInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (slotUpdate ())); +    connect (m_horizontalSkewInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (slotUpdate ())); +    connect (m_verticalSkewInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (slotUpdate ()));  } diff --git a/kolourpaint/tools/kptoolskew.h b/kolourpaint/tools/kptoolskew.h index f1a34025..1f060209 100644 --- a/kolourpaint/tools/kptoolskew.h +++ b/kolourpaint/tools/kptoolskew.h @@ -75,7 +75,7 @@ private:  class kpToolSkewDialog : public kpToolPreviewDialog  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/tools/kptooltext.h b/kolourpaint/tools/kptooltext.h index ec2e117a..e1f31009 100644 --- a/kolourpaint/tools/kptooltext.h +++ b/kolourpaint/tools/kptooltext.h @@ -43,7 +43,7 @@ class kpViewManager;  class kpToolText : public kpToolSelection  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/views/kpthumbnailview.h b/kolourpaint/views/kpthumbnailview.h index b36cd2eb..eebfb130 100644 --- a/kolourpaint/views/kpthumbnailview.h +++ b/kolourpaint/views/kpthumbnailview.h @@ -40,7 +40,7 @@   */  class kpThumbnailView : public kpView  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/views/kpunzoomedthumbnailview.cpp b/kolourpaint/views/kpunzoomedthumbnailview.cpp index 59b91f85..139366eb 100644 --- a/kolourpaint/views/kpunzoomedthumbnailview.cpp +++ b/kolourpaint/views/kpunzoomedthumbnailview.cpp @@ -61,9 +61,9 @@ kpUnzoomedThumbnailView::kpUnzoomedThumbnailView (      if (buddyViewScrollableContainer ())      {          connect (buddyViewScrollableContainer (), -                TQT_SIGNAL (contentsMovingSoon (int, int)), +                TQ_SIGNAL (contentsMovingSoon (int, int)),                  this, -                TQT_SLOT (adjustToEnvironment ())); +                TQ_SLOT (adjustToEnvironment ()));      }      // Call to virtual function - this is why the class is sealed diff --git a/kolourpaint/views/kpunzoomedthumbnailview.h b/kolourpaint/views/kpunzoomedthumbnailview.h index d34b1165..0be89432 100644 --- a/kolourpaint/views/kpunzoomedthumbnailview.h +++ b/kolourpaint/views/kpunzoomedthumbnailview.h @@ -54,7 +54,7 @@ class kpViewScrollableContainer;   */  /*sealed*/ class kpUnzoomedThumbnailView : public kpThumbnailView  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/views/kpzoomedthumbnailview.h b/kolourpaint/views/kpzoomedthumbnailview.h index 97fd4022..69eb2e1f 100644 --- a/kolourpaint/views/kpzoomedthumbnailview.h +++ b/kolourpaint/views/kpzoomedthumbnailview.h @@ -49,7 +49,7 @@   */  /*sealed*/ class kpZoomedThumbnailView : public kpThumbnailView  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/views/kpzoomedview.h b/kolourpaint/views/kpzoomedview.h index 045fee4c..d15bd898 100644 --- a/kolourpaint/views/kpzoomedview.h +++ b/kolourpaint/views/kpzoomedview.h @@ -50,7 +50,7 @@   */  /*sealed*/ class kpZoomedView : public kpView  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kpcolorsimilaritycube.cpp b/kolourpaint/widgets/kpcolorsimilaritycube.cpp index 60299475..8dcf7398 100644 --- a/kolourpaint/widgets/kpcolorsimilaritycube.cpp +++ b/kolourpaint/widgets/kpcolorsimilaritycube.cpp @@ -256,8 +256,8 @@ void kpColorSimilarityCube::drawFace (TQPainter *p,                 << " colorCubeDiagDist=" << kpColorSimilarityCube::colorCubeDiagonalDistance                 << endl                 << "\tbaseBrightness=" << baseBrightness -               << " color[0]=" << ((colors [0].rgb () & TQRGB_MASK) >> ((2 - redOrGreenOrBlue) * 8)) -               << " color[1]=" << ((colors [1].rgb () & TQRGB_MASK) >> ((2 - redOrGreenOrBlue) * 8)) +               << " color[0]=" << ((colors [0].rgb () & TQT_RGB_MASK) >> ((2 - redOrGreenOrBlue) * 8)) +               << " color[1]=" << ((colors [1].rgb () & TQT_RGB_MASK) >> ((2 - redOrGreenOrBlue) * 8))                 << endl;  #endif diff --git a/kolourpaint/widgets/kpcolorsimilaritydialog.cpp b/kolourpaint/widgets/kpcolorsimilaritydialog.cpp index f55f9d14..a2783f2d 100644 --- a/kolourpaint/widgets/kpcolorsimilaritydialog.cpp +++ b/kolourpaint/widgets/kpcolorsimilaritydialog.cpp @@ -69,8 +69,8 @@ kpColorSimilarityDialog::kpColorSimilarityDialog (kpMainWindow *mainWindow,      cubeLayout->addWidget (updatePushButton, 0/*stretch*/, TQt::AlignHCenter); -    connect (updatePushButton, TQT_SIGNAL (clicked ()), -             this, TQT_SLOT (slotColorSimilarityValueChanged ())); +    connect (updatePushButton, TQ_SIGNAL (clicked ()), +             this, TQ_SLOT (slotColorSimilarityValueChanged ()));      TQGroupBox *inputGroupBox = new TQGroupBox (i18n ("RGB Color Cube Distance"), baseWidget); @@ -86,8 +86,8 @@ kpColorSimilarityDialog::kpColorSimilarityDialog (kpMainWindow *mainWindow,      inputLayout->addWidget (m_colorSimilarityInput); -    connect (m_colorSimilarityInput, TQT_SIGNAL (valueChanged (int)), -             this, TQT_SLOT (slotColorSimilarityValueChanged ())); +    connect (m_colorSimilarityInput, TQ_SIGNAL (valueChanged (int)), +             this, TQ_SLOT (slotColorSimilarityValueChanged ()));      TQVBoxLayout *baseLayout = new TQVBoxLayout (baseWidget, 0/*margin*/, spacingHint () * 2); diff --git a/kolourpaint/widgets/kpcolorsimilaritydialog.h b/kolourpaint/widgets/kpcolorsimilaritydialog.h index 29895951..b58ebcbd 100644 --- a/kolourpaint/widgets/kpcolorsimilaritydialog.h +++ b/kolourpaint/widgets/kpcolorsimilaritydialog.h @@ -37,7 +37,7 @@ class kpMainWindow;  class kpColorSimilarityDialog : public KDialogBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kpcolortoolbar.cpp b/kolourpaint/widgets/kpcolortoolbar.cpp index d3bb51e1..67e1e7e8 100644 --- a/kolourpaint/widgets/kpcolortoolbar.cpp +++ b/kolourpaint/widgets/kpcolortoolbar.cpp @@ -462,7 +462,7 @@ static bool ownColorsInitialised = false;  #define rows 2  #define cols 11  kpColorCells::kpColorCells (TQWidget *parent, -                            Qt::Orientation o, +                            TQt::Orientation o,                              const char *name)      : KColorCells (parent, rows, cols),        m_mouseButton (-1) @@ -476,8 +476,8 @@ kpColorCells::kpColorCells (TQWidget *parent,      setAcceptDrops (true);      setAcceptDrags (true); -    connect (this, TQT_SIGNAL (colorDoubleClicked (int)), -             TQT_SLOT (slotColorDoubleClicked (int))); +    connect (this, TQ_SIGNAL (colorDoubleClicked (int)), +             TQ_SLOT (slotColorDoubleClicked (int)));      if (!ownColorsInitialised)      { @@ -514,16 +514,16 @@ kpColorCells::~kpColorCells ()  {  } -Qt::Orientation kpColorCells::orientation () const +TQt::Orientation kpColorCells::orientation () const  {      return m_orientation;  } -void kpColorCells::setOrientation (Qt::Orientation o) +void kpColorCells::setOrientation (TQt::Orientation o)  {      int c, r; -    if (o == Qt::Horizontal) +    if (o == TQt::Horizontal)      {          c = cols;          r = rows; @@ -588,7 +588,7 @@ void kpColorCells::setOrientation (Qt::Orientation o)          int y, x;          int pos; -        if (o == Qt::Horizontal) +        if (o == TQt::Horizontal)          {              y = i / cols;              x = i % cols; @@ -660,23 +660,23 @@ void kpColorCells::mouseReleaseEvent (TQMouseEvent *e)      TQt::ButtonState button = e->button ();  #if DEBUG_KP_COLOR_TOOL_BAR      kdDebug () << "kpColorCells::mouseReleaseEvent(left=" -               << (button & Qt::LeftButton) +               << (button & TQt::LeftButton)                 << ",right=" -               << (button & Qt::RightButton) +               << (button & TQt::RightButton)                 << ")"                 << endl;  #endif -    if (!((button & Qt::LeftButton) && (button & Qt::RightButton))) +    if (!((button & TQt::LeftButton) && (button & TQt::RightButton)))      { -        if (button & Qt::LeftButton) +        if (button & TQt::LeftButton)              m_mouseButton = 0; -        else if (button & Qt::RightButton) +        else if (button & TQt::RightButton)              m_mouseButton = 1;      } -    connect (this, TQT_SIGNAL (colorSelected (int)), this, TQT_SLOT (slotColorSelected (int))); +    connect (this, TQ_SIGNAL (colorSelected (int)), this, TQ_SLOT (slotColorSelected (int)));      KColorCells::mouseReleaseEvent (e); -    disconnect (this, TQT_SIGNAL (colorSelected (int)), this, TQT_SLOT (slotColorSelected (int))); +    disconnect (this, TQ_SIGNAL (colorSelected (int)), this, TQ_SLOT (slotColorSelected (int)));  #if DEBUG_KP_COLOR_TOOL_BAR      kdDebug () << "kpColorCells::mouseReleaseEvent() setting m_mouseButton back to -1" << endl; @@ -783,14 +783,14 @@ void kpTransparentColorCell::mousePressEvent (TQMouseEvent * /*e*/)  // protected virtual [base TQWidget]  void kpTransparentColorCell::mouseReleaseEvent (TQMouseEvent *e)  { -    if (TQT_TQRECT_OBJECT(rect ()).contains (e->pos ())) +    if (rect ().contains (e->pos ()))      { -        if (e->button () == Qt::LeftButton) +        if (e->button () == TQt::LeftButton)          {              emit transparentColorSelected (0);              emit foregroundColorChanged (kpColor::transparent);          } -        else if (e->button () == Qt::RightButton) +        else if (e->button () == TQt::RightButton)          {              emit transparentColorSelected (1);              emit backgroundColorChanged (kpColor::transparent); @@ -819,7 +819,7 @@ void kpTransparentColorCell::drawContents (TQPainter *p)   */  kpColorPalette::kpColorPalette (TQWidget *parent, -                                Qt::Orientation o, +                                TQt::Orientation o,                                  const char *name)      : TQWidget (parent, name),        m_boxLayout (0) @@ -830,16 +830,16 @@ kpColorPalette::kpColorPalette (TQWidget *parent,      m_transparentColorCell = new kpTransparentColorCell (this);      m_transparentColorCell->setSizePolicy (TQSizePolicy::Fixed, TQSizePolicy::Fixed); -    connect (m_transparentColorCell, TQT_SIGNAL (foregroundColorChanged (const kpColor &)), -             this, TQT_SIGNAL (foregroundColorChanged (const kpColor &))); -    connect (m_transparentColorCell, TQT_SIGNAL (backgroundColorChanged (const kpColor &)), -             this, TQT_SIGNAL (backgroundColorChanged (const kpColor &))); +    connect (m_transparentColorCell, TQ_SIGNAL (foregroundColorChanged (const kpColor &)), +             this, TQ_SIGNAL (foregroundColorChanged (const kpColor &))); +    connect (m_transparentColorCell, TQ_SIGNAL (backgroundColorChanged (const kpColor &)), +             this, TQ_SIGNAL (backgroundColorChanged (const kpColor &)));      m_colorCells = new kpColorCells (this); -    connect (m_colorCells, TQT_SIGNAL (foregroundColorChanged (const kpColor &)), -             this, TQT_SIGNAL (foregroundColorChanged (const kpColor &))); -    connect (m_colorCells, TQT_SIGNAL (backgroundColorChanged (const kpColor &)), -             this, TQT_SIGNAL (backgroundColorChanged (const kpColor &))); +    connect (m_colorCells, TQ_SIGNAL (foregroundColorChanged (const kpColor &)), +             this, TQ_SIGNAL (foregroundColorChanged (const kpColor &))); +    connect (m_colorCells, TQ_SIGNAL (backgroundColorChanged (const kpColor &)), +             this, TQ_SIGNAL (backgroundColorChanged (const kpColor &)));      setOrientation (o);  } @@ -849,18 +849,18 @@ kpColorPalette::~kpColorPalette ()  }  // public -Qt::Orientation kpColorPalette::orientation () const +TQt::Orientation kpColorPalette::orientation () const  {      return m_orientation;  } -void kpColorPalette::setOrientation (Qt::Orientation o) +void kpColorPalette::setOrientation (TQt::Orientation o)  {      m_colorCells->setOrientation (o);      delete m_boxLayout; -    if (o == Qt::Horizontal) +    if (o == TQt::Horizontal)      {          m_boxLayout = new TQBoxLayout (this, TQBoxLayout::LeftToRight, 0/*margin*/, 5/*spacing*/);          m_boxLayout->addWidget (m_transparentColorCell, 0/*stretch*/, TQt::AlignVCenter); @@ -965,25 +965,25 @@ kpColorToolBar::kpColorToolBar (const TQString &label, kpMainWindow *mainWindow,      m_dualColorButton = new kpDualColorButton (mainWindow, base);      m_dualColorButton->setSizePolicy (TQSizePolicy::Fixed, TQSizePolicy::Fixed); -    connect (m_dualColorButton, TQT_SIGNAL (colorsSwapped (const kpColor &, const kpColor &)), -             this, TQT_SIGNAL (colorsSwapped (const kpColor &, const kpColor &))); -    connect (m_dualColorButton, TQT_SIGNAL (foregroundColorChanged (const kpColor &)), -             this, TQT_SIGNAL (foregroundColorChanged (const kpColor &))); -    connect (m_dualColorButton, TQT_SIGNAL (backgroundColorChanged (const kpColor &)), -             this, TQT_SIGNAL (backgroundColorChanged (const kpColor &))); +    connect (m_dualColorButton, TQ_SIGNAL (colorsSwapped (const kpColor &, const kpColor &)), +             this, TQ_SIGNAL (colorsSwapped (const kpColor &, const kpColor &))); +    connect (m_dualColorButton, TQ_SIGNAL (foregroundColorChanged (const kpColor &)), +             this, TQ_SIGNAL (foregroundColorChanged (const kpColor &))); +    connect (m_dualColorButton, TQ_SIGNAL (backgroundColorChanged (const kpColor &)), +             this, TQ_SIGNAL (backgroundColorChanged (const kpColor &)));      m_boxLayout->addWidget (m_dualColorButton, 0/*stretch*/);      m_colorPalette = new kpColorPalette (base); -    connect (m_colorPalette, TQT_SIGNAL (foregroundColorChanged (const kpColor &)), -             m_dualColorButton, TQT_SLOT (setForegroundColor (const kpColor &))); -    connect (m_colorPalette, TQT_SIGNAL (backgroundColorChanged (const kpColor &)), -             m_dualColorButton, TQT_SLOT (setBackgroundColor (const kpColor &))); +    connect (m_colorPalette, TQ_SIGNAL (foregroundColorChanged (const kpColor &)), +             m_dualColorButton, TQ_SLOT (setForegroundColor (const kpColor &))); +    connect (m_colorPalette, TQ_SIGNAL (backgroundColorChanged (const kpColor &)), +             m_dualColorButton, TQ_SLOT (setBackgroundColor (const kpColor &)));      m_boxLayout->addWidget (m_colorPalette, 0/*stretch*/);      m_colorSimilarityToolBarItem = new kpColorSimilarityToolBarItem (mainWindow, base);      m_colorSimilarityToolBarItem->setSizePolicy (TQSizePolicy::Fixed, TQSizePolicy::Fixed); -    connect (m_colorSimilarityToolBarItem, TQT_SIGNAL (colorSimilarityChanged (double, int)), -             this, TQT_SIGNAL (colorSimilarityChanged (double, int))); +    connect (m_colorSimilarityToolBarItem, TQ_SIGNAL (colorSimilarityChanged (double, int)), +             this, TQ_SIGNAL (colorSimilarityChanged (double, int)));      m_boxLayout->addWidget (m_colorSimilarityToolBarItem, 0/*stretch*/);      // HACK: couldn't get TQSpacerItem to work @@ -997,7 +997,7 @@ kpColorToolBar::kpColorToolBar (const TQString &label, kpMainWindow *mainWindow,  }  // virtual -void kpColorToolBar::setOrientation (Qt::Orientation o) +void kpColorToolBar::setOrientation (TQt::Orientation o)  {      // (TQDockWindow::undock() calls us)      bool isOutsideDock = (place () == TQDockWindow::OutsideDock); @@ -1014,7 +1014,7 @@ void kpColorToolBar::setOrientation (Qt::Orientation o)          o = m_lastDockedOrientation;      } -    if (o == Qt::Horizontal) +    if (o == TQt::Horizontal)      {          m_boxLayout->setDirection (TQBoxLayout::LeftToRight);      } diff --git a/kolourpaint/widgets/kpcolortoolbar.h b/kolourpaint/widgets/kpcolortoolbar.h index b4d52a18..d3bff1e3 100644 --- a/kolourpaint/widgets/kpcolortoolbar.h +++ b/kolourpaint/widgets/kpcolortoolbar.h @@ -58,7 +58,7 @@ class kpMainWindow;  //  class kpDualColorButton : public TQFrame  { -Q_OBJECT +TQ_OBJECT  public: @@ -118,17 +118,17 @@ protected:  class kpColorCells : public KColorCells  { -Q_OBJECT +TQ_OBJECT  public:      kpColorCells (TQWidget *parent, -                  Qt::Orientation o = Qt::Horizontal, +                  TQt::Orientation o = TQt::Horizontal,                    const char *name = 0);      virtual ~kpColorCells (); -    Qt::Orientation orientation () const; -    void setOrientation (Qt::Orientation o); +    TQt::Orientation orientation () const; +    void setOrientation (TQt::Orientation o);  signals:      void foregroundColorChanged (const TQColor &color); @@ -139,7 +139,7 @@ signals:      void backgroundColorChanged (const kpColor &color);  protected: -    Qt::Orientation m_orientation; +    TQt::Orientation m_orientation;      virtual void dropEvent (TQDropEvent *e);      virtual void paintCell (TQPainter *painter, int row, int col); @@ -156,7 +156,7 @@ protected slots:  class kpTransparentColorCell : public TQFrame  { -Q_OBJECT +TQ_OBJECT  public: @@ -184,24 +184,24 @@ protected:  class kpColorPalette : public TQWidget  { -Q_OBJECT +TQ_OBJECT  public:      kpColorPalette (TQWidget *parent, -                    Qt::Orientation o = Qt::Horizontal, +                    TQt::Orientation o = TQt::Horizontal,                      const char *name = 0);      virtual ~kpColorPalette (); -    Qt::Orientation orientation () const; -    void setOrientation (Qt::Orientation o); +    TQt::Orientation orientation () const; +    void setOrientation (TQt::Orientation o);  signals:      void foregroundColorChanged (const kpColor &color);      void backgroundColorChanged (const kpColor &color);  protected: -    Qt::Orientation m_orientation; +    TQt::Orientation m_orientation;      TQBoxLayout *m_boxLayout;      kpTransparentColorCell *m_transparentColorCell; @@ -211,7 +211,7 @@ protected:  class kpColorSimilarityToolBarItem : public kpColorSimilarityCube  { -Q_OBJECT +TQ_OBJECT  public: @@ -247,7 +247,7 @@ private:  class kpColorToolBar : public TDEToolBar  { -Q_OBJECT +TQ_OBJECT  public: @@ -290,9 +290,9 @@ public slots:  private:      kpMainWindow *m_mainWindow; -    Qt::Orientation m_lastDockedOrientation; +    TQt::Orientation m_lastDockedOrientation;      bool m_lastDockedOrientationSet; -    virtual void setOrientation (Qt::Orientation o); +    virtual void setOrientation (TQt::Orientation o);      TQBoxLayout *m_boxLayout;      kpDualColorButton *m_dualColorButton; diff --git a/kolourpaint/widgets/kpresizesignallinglabel.h b/kolourpaint/widgets/kpresizesignallinglabel.h index 6d876a77..3fd2b1ac 100644 --- a/kolourpaint/widgets/kpresizesignallinglabel.h +++ b/kolourpaint/widgets/kpresizesignallinglabel.h @@ -34,7 +34,7 @@  class kpResizeSignallingLabel : public TQLabel  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kpsqueezedtextlabel.h b/kolourpaint/widgets/kpsqueezedtextlabel.h index eeaace62..e601d901 100644 --- a/kolourpaint/widgets/kpsqueezedtextlabel.h +++ b/kolourpaint/widgets/kpsqueezedtextlabel.h @@ -36,7 +36,7 @@  // not the middle.  class kpSqueezedTextLabel : public TQLabel  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kptooltoolbar.cpp b/kolourpaint/widgets/kptooltoolbar.cpp index 6e559fa8..0df59f2e 100644 --- a/kolourpaint/widgets/kptooltoolbar.cpp +++ b/kolourpaint/widgets/kptooltoolbar.cpp @@ -72,7 +72,7 @@ protected:      // virtual [base TQWidget]      void mouseDoubleClickEvent (TQMouseEvent *e)      { -        if (e->button () == Qt::LeftButton && m_tool) +        if (e->button () == TQt::LeftButton && m_tool)              m_tool->globalDraw ();      } @@ -131,8 +131,8 @@ kpToolToolBar::kpToolToolBar (const TQString &label, kpMainWindow *mainWindow, i           it != m_toolWidgets.end ();           it++)      { -        connect (*it, TQT_SIGNAL (optionSelected (int, int)), -                 this, TQT_SIGNAL (toolWidgetOptionSelected ())); +        connect (*it, TQ_SIGNAL (optionSelected (int, int)), +                 this, TQ_SIGNAL (toolWidgetOptionSelected ()));      }  #if DEBUG_KP_TOOL_TOOL_BAR @@ -151,7 +151,7 @@ kpToolToolBar::kpToolToolBar (const TQString &label, kpMainWindow *mainWindow, i      m_buttonGroup = new TQButtonGroup ();  // invisible      m_buttonGroup->setExclusive (true); -    connect (m_buttonGroup, TQT_SIGNAL (clicked (int)), TQT_SLOT (slotToolButtonClicked ())); +    connect (m_buttonGroup, TQ_SIGNAL (clicked (int)), TQ_SLOT (slotToolButtonClicked ()));      hideAllToolWidgets ();  } @@ -247,10 +247,10 @@ void kpToolToolBar::registerTool (kpTool *tool)      m_buttonToolPairs.append (kpButtonToolPair (b, tool)); -    connect (tool, TQT_SIGNAL (actionActivated ()), -             this, TQT_SLOT (slotToolActionActivated ())); -    connect (tool, TQT_SIGNAL (actionToolTipChanged (const TQString &)), -             this, TQT_SLOT (slotToolActionToolTipChanged ())); +    connect (tool, TQ_SIGNAL (actionActivated ()), +             this, TQ_SLOT (slotToolActionActivated ())); +    connect (tool, TQ_SIGNAL (actionToolTipChanged (const TQString &)), +             this, TQ_SLOT (slotToolActionToolTipChanged ()));  }  // public @@ -265,10 +265,10 @@ void kpToolToolBar::unregisterTool (kpTool *tool)              delete ((*it).m_button);              m_buttonToolPairs.erase (it); -            disconnect (tool, TQT_SIGNAL (actionActivated ()), -                        this, TQT_SLOT (slotToolActionActivated ())); -            disconnect (tool, TQT_SIGNAL (actionToolTipChanged (const TQString &)), -                        this, TQT_SLOT (slotToolActionToolTipChanged ())); +            disconnect (tool, TQ_SIGNAL (actionActivated ()), +                        this, TQ_SLOT (slotToolActionActivated ())); +            disconnect (tool, TQ_SIGNAL (actionToolTipChanged (const TQString &)), +                        this, TQ_SLOT (slotToolActionToolTipChanged ()));              break;          }      } @@ -548,11 +548,11 @@ void kpToolToolBar::slotToolActionToolTipChanged ()  // public slot virtual [base TQDockWindow] -void kpToolToolBar::setOrientation (Qt::Orientation o) +void kpToolToolBar::setOrientation (TQt::Orientation o)  {  #if DEBUG_KP_TOOL_TOOL_BAR      kdDebug () << "kpToolToolBar::setOrientation(" -               << (o == Qt::Vertical ? "vertical" : "horizontal") +               << (o == TQt::Vertical ? "vertical" : "horizontal")                 << ") called!" << endl;  #endif @@ -575,7 +575,7 @@ void kpToolToolBar::setOrientation (Qt::Orientation o)      delete m_toolLayout;      delete m_baseLayout; -    if (o == Qt::Vertical) +    if (o == TQt::Vertical)      {          m_baseLayout = new TQBoxLayout (m_baseWidget, TQBoxLayout::TopToBottom,                                         5/*margin*/, @@ -586,7 +586,7 @@ void kpToolToolBar::setOrientation (Qt::Orientation o)                                          0/*margin*/,                                          0/*spacing*/);      } -    else // if (o == Qt::Horizontal) +    else // if (o == TQt::Horizontal)      {          m_baseLayout = new TQBoxLayout (m_baseWidget, TQBoxLayout::LeftToRight,                                         5/*margin*/, @@ -616,7 +616,7 @@ void kpToolToolBar::setOrientation (Qt::Orientation o)          {              m_baseLayout->addWidget (*it,                  0/*stretch*/, -                o == Qt::Vertical ? TQt::AlignHCenter : TQt::AlignVCenter); +                o == TQt::Vertical ? TQt::AlignHCenter : TQt::AlignVCenter);          }      } @@ -624,9 +624,9 @@ void kpToolToolBar::setOrientation (Qt::Orientation o)  }  // private -void kpToolToolBar::addButton (TQButton *button, Qt::Orientation o, int num) +void kpToolToolBar::addButton (TQButton *button, TQt::Orientation o, int num)  { -    if (o == Qt::Vertical) +    if (o == TQt::Vertical)          m_toolLayout->addWidget (button, num / m_vertCols, num % m_vertCols);      else      { diff --git a/kolourpaint/widgets/kptooltoolbar.h b/kolourpaint/widgets/kptooltoolbar.h index 5a5f8f7a..ae7de140 100644 --- a/kolourpaint/widgets/kptooltoolbar.h +++ b/kolourpaint/widgets/kptooltoolbar.h @@ -53,7 +53,7 @@ class kpToolWidgetSpraycanSize;  class kpToolToolBar : public TDEToolBar  { -Q_OBJECT +TQ_OBJECT  public: @@ -100,12 +100,12 @@ private slots:      void slotToolActionToolTipChanged ();  public slots: -    virtual void setOrientation (Qt::Orientation o); +    virtual void setOrientation (TQt::Orientation o);  private: -    void addButton (TQButton *button, Qt::Orientation o, int num); +    void addButton (TQButton *button, TQt::Orientation o, int num); -    Qt::Orientation m_lastDockedOrientation; +    TQt::Orientation m_lastDockedOrientation;      bool m_lastDockedOrientationSet;      int m_vertCols; diff --git a/kolourpaint/widgets/kptoolwidgetbase.cpp b/kolourpaint/widgets/kptoolwidgetbase.cpp index e70be6db..8c55015e 100644 --- a/kolourpaint/widgets/kptoolwidgetbase.cpp +++ b/kolourpaint/widgets/kptoolwidgetbase.cpp @@ -172,7 +172,7 @@ TQPair <int, int> kpToolWidgetBase::defaultSelectedRowAndCol () const      if (name ())      { -        TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupTools); +        TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupTools);          TDEConfigBase *cfg = cfgGroupSaver.config ();          TQString nameString = TQString::fromLatin1 (name ()); @@ -188,7 +188,7 @@ TQPair <int, int> kpToolWidgetBase::defaultSelectedRowAndCol () const                 << endl;  #endif -    return tqMakePair (row, col); +    return qMakePair (row, col);  }  // public @@ -215,7 +215,7 @@ void kpToolWidgetBase::saveSelectedAsDefault () const      if (!name ())          return; -    TDEConfigGroupSaver cfgGroupSaver (kapp->config (), kpSettingsGroupTools); +    TDEConfigGroupSaver cfgGroupSaver (tdeApp->config (), kpSettingsGroupTools);      TDEConfigBase *cfg = cfgGroupSaver.config ();      TQString nameString = TQString::fromLatin1 (name ()); @@ -541,7 +541,7 @@ void kpToolWidgetBase::mousePressEvent (TQMouseEvent *e)  {      e->ignore (); -    if (e->button () != Qt::LeftButton) +    if (e->button () != TQt::LeftButton)          return; diff --git a/kolourpaint/widgets/kptoolwidgetbase.h b/kolourpaint/widgets/kptoolwidgetbase.h index bd0847c2..6fd4775a 100644 --- a/kolourpaint/widgets/kptoolwidgetbase.h +++ b/kolourpaint/widgets/kptoolwidgetbase.h @@ -43,7 +43,7 @@ class TQPainter;  // TODO: frame becomes a combobox when its parent kpToolToolBar becomes too small  class kpToolWidgetBase : public TQFrame  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kptoolwidgetbrush.h b/kolourpaint/widgets/kptoolwidgetbrush.h index eee631f1..b3fdd4b1 100644 --- a/kolourpaint/widgets/kptoolwidgetbrush.h +++ b/kolourpaint/widgets/kptoolwidgetbrush.h @@ -35,7 +35,7 @@  class kpToolWidgetBrush : public kpToolWidgetBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kptoolwidgeterasersize.h b/kolourpaint/widgets/kptoolwidgeterasersize.h index e326ee35..1d9c7031 100644 --- a/kolourpaint/widgets/kptoolwidgeterasersize.h +++ b/kolourpaint/widgets/kptoolwidgeterasersize.h @@ -37,7 +37,7 @@ class kpColor;  class kpToolWidgetEraserSize : public kpToolWidgetBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kptoolwidgetfillstyle.cpp b/kolourpaint/widgets/kptoolwidgetfillstyle.cpp index d13ae932..9cd5c42d 100644 --- a/kolourpaint/widgets/kptoolwidgetfillstyle.cpp +++ b/kolourpaint/widgets/kptoolwidgetfillstyle.cpp @@ -149,7 +149,7 @@ TQBrush kpToolWidgetFillStyle::maskBrushForFillStyle (FillStyle fs,      switch (fs)      {      case NoFill: -        return Qt::NoBrush; +        return TQt::NoBrush;          break;      case FillWithBackground:          return TQBrush (backgroundColor.maskColor ()); @@ -158,7 +158,7 @@ TQBrush kpToolWidgetFillStyle::maskBrushForFillStyle (FillStyle fs,          return TQBrush (foregroundColor.maskColor ());          break;      default: -        return Qt::NoBrush; +        return TQt::NoBrush;          break;      }  } @@ -182,22 +182,22 @@ TQBrush kpToolWidgetFillStyle::brushForFillStyle (FillStyle fs,      switch (fs)      {      case NoFill: -        return Qt::NoBrush; +        return TQt::NoBrush;          break;      case FillWithBackground:          if (backgroundColor.isOpaque ())              return TQBrush (backgroundColor.toTQColor ());          else -            return Qt::NoBrush; +            return TQt::NoBrush;          break;      case FillWithForeground:          if (foregroundColor.isOpaque ())              return TQBrush (foregroundColor.toTQColor ());          else -            return Qt::NoBrush; +            return TQt::NoBrush;          break;      default: -        return Qt::NoBrush; +        return TQt::NoBrush;          break;      }  } diff --git a/kolourpaint/widgets/kptoolwidgetfillstyle.h b/kolourpaint/widgets/kptoolwidgetfillstyle.h index a8b96ee5..bec64d24 100644 --- a/kolourpaint/widgets/kptoolwidgetfillstyle.h +++ b/kolourpaint/widgets/kptoolwidgetfillstyle.h @@ -37,7 +37,7 @@ class kpColor;  class kpToolWidgetFillStyle : public kpToolWidgetBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kptoolwidgetlinewidth.h b/kolourpaint/widgets/kptoolwidgetlinewidth.h index b83e6c0c..a91be73f 100644 --- a/kolourpaint/widgets/kptoolwidgetlinewidth.h +++ b/kolourpaint/widgets/kptoolwidgetlinewidth.h @@ -33,7 +33,7 @@  class kpToolWidgetLineWidth : public kpToolWidgetBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kptoolwidgetopaqueortransparent.h b/kolourpaint/widgets/kptoolwidgetopaqueortransparent.h index 175a5f15..9605b89e 100644 --- a/kolourpaint/widgets/kptoolwidgetopaqueortransparent.h +++ b/kolourpaint/widgets/kptoolwidgetopaqueortransparent.h @@ -34,7 +34,7 @@  class kpToolWidgetOpaqueOrTransparent : public kpToolWidgetBase  { -Q_OBJECT +TQ_OBJECT  public: diff --git a/kolourpaint/widgets/kptoolwidgetspraycansize.cpp b/kolourpaint/widgets/kptoolwidgetspraycansize.cpp index d435c72b..d14942e4 100644 --- a/kolourpaint/widgets/kptoolwidgetspraycansize.cpp +++ b/kolourpaint/widgets/kptoolwidgetspraycansize.cpp @@ -79,7 +79,7 @@ kpToolWidgetSpraycanSize::kpToolWidgetSpraycanSize (TQWidget *parent, const char          {              for (int x = 0; x < image.width (); x++)              { -                if ((image.pixel (x, y) & TQRGB_MASK) == 0/*black*/) +                if ((image.pixel (x, y) & TQT_RGB_MASK) == 0/*black*/)                      painter.drawPoint (x, y);  // mark as opaque              }          } diff --git a/kolourpaint/widgets/kptoolwidgetspraycansize.h b/kolourpaint/widgets/kptoolwidgetspraycansize.h index 5f0a9e39..70341cce 100644 --- a/kolourpaint/widgets/kptoolwidgetspraycansize.h +++ b/kolourpaint/widgets/kptoolwidgetspraycansize.h @@ -33,7 +33,7 @@  class kpToolWidgetSpraycanSize : public kpToolWidgetBase  { -Q_OBJECT +TQ_OBJECT  public: | 
