From d796c9dd933ab96ec83b9a634feedd5d32e1ba3f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 8 Nov 2011 12:31:36 -0600 Subject: Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731 --- plugins/src/imageformats/mng/main.cpp | 59 +++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 plugins/src/imageformats/mng/main.cpp (limited to 'plugins/src/imageformats/mng/main.cpp') diff --git a/plugins/src/imageformats/mng/main.cpp b/plugins/src/imageformats/mng/main.cpp new file mode 100644 index 000000000..287a5cb21 --- /dev/null +++ b/plugins/src/imageformats/mng/main.cpp @@ -0,0 +1,59 @@ +#ifndef QT_CLEAN_NAMESPACE +#define QT_CLEAN_NAMESPACE +#endif + +#include + +#ifndef QT_NO_IMAGEFORMATPLUGIN + +#ifdef QT_NO_IMAGEIO_MNG +#undef QT_NO_IMAGEIO_MNG +#endif +#include "../../../../src/kernel/qmngio.cpp" + +class MNGFormat : public TQImageFormatPlugin +{ +public: + MNGFormat(); + + TQStringList keys() const; + bool loadImage( const TQString &format, const TQString &filename, TQImage *image ); + bool saveImage( const TQString &format, const TQString &filename, const TQImage &image ); + bool installIOHandler( const TQString & ); +}; + +MNGFormat::MNGFormat() +{ +} + + +TQStringList MNGFormat::keys() const +{ + TQStringList list; + list << "MNG"; + + return list; +} + +bool MNGFormat::loadImage( const TQString &, const TQString &, TQImage * ) +{ + return FALSE; +} + +bool MNGFormat::saveImage( const TQString &, const TQString &, const TQImage& ) +{ + return FALSE; +} + +bool MNGFormat::installIOHandler( const TQString &name ) +{ + if ( name != "MNG" ) + return FALSE; + + qInitMngIO(); + return TRUE; +} + +Q_EXPORT_PLUGIN( MNGFormat ) + +#endif // QT_NO_IMAGEFORMATPLUGIN -- cgit v1.2.3