summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/imageeditor/editor/imagewindow.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-20 02:53:53 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-20 02:53:53 +0000
commitd31c5384fafd8be1afb5eae8d150aa03e1180555 (patch)
treeaca870c79d6146f309a4120474f126fb75ebaa87 /digikam/utilities/imageeditor/editor/imagewindow.h
parent9be3ae63454c07422eeeef84a1921e40583d6354 (diff)
downloaddigikam-d31c5384fafd8be1afb5eae8d150aa03e1180555.tar.gz
digikam-d31c5384fafd8be1afb5eae8d150aa03e1180555.zip
TQt4 port Digikam
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/digikam@1232832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'digikam/utilities/imageeditor/editor/imagewindow.h')
-rw-r--r--digikam/utilities/imageeditor/editor/imagewindow.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/digikam/utilities/imageeditor/editor/imagewindow.h b/digikam/utilities/imageeditor/editor/imagewindow.h
index c9f9e62..7416a82 100644
--- a/digikam/utilities/imageeditor/editor/imagewindow.h
+++ b/digikam/utilities/imageeditor/editor/imagewindow.h
@@ -25,9 +25,9 @@
#ifndef IMAGEWINDOW_H
#define IMAGEWINDOW_H
-// Qt includes.
+// TQt includes.
-#include <qstring.h>
+#include <tqstring.h>
// KDE includes.
@@ -38,8 +38,8 @@
#include "editorwindow.h"
#include "imageinfo.h"
-class QDragMoveEvent;
-class QDropEvent;
+class TQDragMoveEvent;
+class TQDropEvent;
namespace Digikam
{
@@ -51,18 +51,19 @@ class SlideShowSettings;
class ImageWindow : public EditorWindow
{
Q_OBJECT
+ TQ_OBJECT
public:
~ImageWindow();
void loadURL(const KURL::List& urlList, const KURL& urlCurrent,
- const QString& caption=QString(),
+ const TQString& caption=TQString(),
bool allowSaving=true);
void loadImageInfos(const ImageInfoList &imageInfoList,
ImageInfo *imageInfoCurrent,
- const QString& caption, bool allowSaving);
+ const TQString& caption, bool allowSaving);
static ImageWindow* imagewindow();
static bool imagewindowCreated();
@@ -82,11 +83,11 @@ signals:
private:
- void loadCurrentList(const QString& caption, bool allowSaving);
- void closeEvent(QCloseEvent* e);
+ void loadCurrentList(const TQString& caption, bool allowSaving);
+ void closeEvent(TQCloseEvent* e);
- void dragMoveEvent(QDragMoveEvent *e);
- void dropEvent(QDropEvent *e);
+ void dragMoveEvent(TQDragMoveEvent *e);
+ void dropEvent(TQDropEvent *e);
void setupActions();
void setupConnections();
@@ -140,7 +141,7 @@ private slots:
void slotAssignRating(int rating);
void slotFileMetadataChanged(const KURL &);
- void slotChangeTheme(const QString& theme);
+ void slotChangeTheme(const TQString& theme);
private: