summaryrefslogtreecommitdiffstats
path: root/kview/photobook
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-19 19:03:33 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-19 19:03:33 +0000
commite69e8b1d09fb579316595b4e6a850e717358a8b1 (patch)
treea24fc20865f65772f530d16177520190594ffdd2 /kview/photobook
parenteecec9afb81fdebb0f22e9da22635874c403f854 (diff)
downloadtdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.tar.gz
tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.zip
TQt4 port kdegraphics
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1237557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kview/photobook')
-rw-r--r--kview/photobook/photobook.cpp28
-rw-r--r--kview/photobook/photobook.h17
2 files changed, 24 insertions, 21 deletions
diff --git a/kview/photobook/photobook.cpp b/kview/photobook/photobook.cpp
index 2558279a..ce6c5d1e 100644
--- a/kview/photobook/photobook.cpp
+++ b/kview/photobook/photobook.cpp
@@ -4,7 +4,7 @@ Copyright (c) 2004,2005 Charles Samuels <charles@kde.org>
This file is hereby licensed under the GNU General Public License version
2 or later at your option.
- This file is licensed under the Qt Public License version 1 with the
+ This file is licensed under the TQt Public License version 1 with the
condition that the licensed will be governed under the Laws of California
(USA) instead of Norway. Disputes will be settled in Santa Clara county
courts.
@@ -44,10 +44,10 @@ Copyright (c) 2004,2005 Charles Samuels <charles@kde.org>
#include <kstdaccel.h>
#include <kstandarddirs.h>
-Previews::Previews(PhotoBook *parent, const TQStringList &mimetypes)
- : KFileIconView(parent, 0)
+Previews::Previews(PhotoBook *tqparent, const TQStringList &mimetypes)
+ : KFileIconView(tqparent, 0)
{
- mPhotoBook = parent;
+ mPhotoBook = tqparent;
mMimeTypes = mimetypes;
connect(&mDirLister, TQT_SIGNAL(clear()), TQT_SLOT(slotClearView()));
@@ -149,15 +149,15 @@ void Previews::goToFirst()
-PhotoBook::PhotoBook(TQWidget *parent, PhotoBookPart *part, const char *name)
- : TQSplitter(parent, name)
+PhotoBook::PhotoBook(TQWidget *tqparent, PhotoBookPart *part, const char *name)
+ : TQSplitter(tqparent, name)
{
TQStringList mimetypes;
KTrader::OfferList offers = KTrader::self()->query(
"KImageViewer/Viewer", "KParts/ReadOnlyPart",
- "DesktopEntryName == 'kviewviewer'", TQString::null
+ "DesktopEntryName == 'kviewviewer'", TQString()
);
for (
@@ -167,7 +167,7 @@ PhotoBook::PhotoBook(TQWidget *parent, PhotoBookPart *part, const char *name)
{
KService::Ptr service = *i;
mViewer = KParts::ComponentFactory::
- createPartInstanceFromService<KParts::ReadOnlyPart>( service, this, 0, this );
+ createPartInstanceFromService<KParts::ReadOnlyPart>( service, this, 0, TQT_TQOBJECT(this) );
// is this the correct way to get the supported mimetypes?
if (mViewer)
@@ -220,24 +220,24 @@ void PhotoBook::updateButton( bool nextExist, bool previousExit)
K_EXPORT_COMPONENT_FACTORY(libphotobook, PhotoBookFactory )
PhotoBookPart::PhotoBookPart(
- TQWidget *parentWidget, const char *widgetName,
- TQObject *parent, const char *name,
+ TQWidget *tqparentWidget, const char *widgetName,
+ TQObject *tqparent, const char *name,
const TQStringList&
)
- : KParts::ReadOnlyPart(parent, name)
+ : KParts::ReadOnlyPart(tqparent, name)
{
setInstance(PhotoBookFactory::instance());
new PhotoBookBrowserExtension(this);
- bv = new PhotoBook(parentWidget, this, widgetName);
+ bv = new PhotoBook(tqparentWidget, this, widgetName);
setWidget(bv);
connect(
bv, TQT_SIGNAL(emitUpdateButton(bool, bool)),
this, TQT_SLOT(slotUpdateButton(bool, bool))
);
- m_pNextAction = KStdAction::next(bv, TQT_SLOT(next()), actionCollection(), "next");
- m_pPreviousAction = KStdAction::prior(bv, TQT_SLOT(previous()), actionCollection(), "previous");
+ m_pNextAction = KStdAction::next(TQT_TQOBJECT(bv), TQT_SLOT(next()), actionCollection(), "next");
+ m_pPreviousAction = KStdAction::prior(TQT_TQOBJECT(bv), TQT_SLOT(previous()), actionCollection(), "previous");
setXMLFile( "photobookui.rc" );
diff --git a/kview/photobook/photobook.h b/kview/photobook/photobook.h
index adae0e23..51065027 100644
--- a/kview/photobook/photobook.h
+++ b/kview/photobook/photobook.h
@@ -4,7 +4,7 @@ Copyright (c) 2004 Charles Samuels <charles@kde.org>
This file is hereby licensed under the GNU General Public License version
2 or later at your option.
- This file is licensed under the Qt Public License version 1 with the
+ This file is licensed under the TQt Public License version 1 with the
condition that the licensed will be governed under the Laws of California
(USA) instead of Norway. Disputes will be settled in Santa Clara county
courts.
@@ -50,15 +50,15 @@ Copyright (c) 2004 Charles Samuels <charles@kde.org>
class Previews;
class PhotoBookPart;
-class PhotoBook : public QSplitter
+class PhotoBook : public TQSplitter
{
-Q_OBJECT
+TQ_OBJECT
Previews *mList;
KAction *mFit;
KParts::ReadOnlyPart *mViewer;
public:
- PhotoBook(TQWidget *parent, PhotoBookPart *part, const char *name=0);
+ PhotoBook(TQWidget *tqparent, PhotoBookPart *part, const char *name=0);
void openURL(const KURL &url);
void updateButton(bool, bool );
@@ -73,13 +73,14 @@ signals:
class Previews : public KFileIconView
{
Q_OBJECT
+ TQ_OBJECT
KDirLister mDirLister;
PhotoBook *mPhotoBook;
TQStringList mMimeTypes;
public:
- Previews(PhotoBook *parent, const TQStringList &mimetypes);
+ Previews(PhotoBook *tqparent, const TQStringList &mimetypes);
~Previews();
void openURL(const KURL &url);
@@ -106,14 +107,15 @@ private slots:
class PhotoBookPart : public KParts::ReadOnlyPart
{
Q_OBJECT
+ TQ_OBJECT
PhotoBook *bv;
KAction *m_pPreviousAction;
KAction *m_pNextAction;
public:
PhotoBookPart(
- TQWidget *parentWidget, const char *widgetName,
- TQObject *parent, const char *name=0,
+ TQWidget *tqparentWidget, const char *widgetName,
+ TQObject *tqparent, const char *name=0,
const TQStringList& args = TQStringList()
);
~PhotoBookPart();
@@ -131,6 +133,7 @@ typedef KParts::GenericFactory<PhotoBookPart> PhotoBookFactory;
class PhotoBookBrowserExtension : public KParts::BrowserExtension
{
Q_OBJECT
+ TQ_OBJECT
public:
PhotoBookBrowserExtension(PhotoBookPart *p);
};