summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmlibraryobject.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kpovmodeler/pmlibraryobject.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pmlibraryobject.h')
-rw-r--r--kpovmodeler/pmlibraryobject.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/kpovmodeler/pmlibraryobject.h b/kpovmodeler/pmlibraryobject.h
index e3699c8f..070b5c99 100644
--- a/kpovmodeler/pmlibraryobject.h
+++ b/kpovmodeler/pmlibraryobject.h
@@ -23,16 +23,16 @@
#include <config.h>
#endif
-#include <qstring.h>
-#include <qmap.h>
-#include <qvaluelist.h>
+#include <tqstring.h>
+#include <tqmap.h>
+#include <tqvaluelist.h>
#include <kstaticdeleter.h>
-#include <qstringlist.h>
+#include <tqstringlist.h>
class KURL;
class KArchive;
class KTar;
-class QImage;
+class TQImage;
/**
* This class implements a library object.
@@ -67,19 +67,19 @@ public:
/**
* Name of the library object.
*/
- QString name( ) const { return m_name; }
+ TQString name( ) const { return m_name; }
/**
* Textual description of the library object.
*/
- QString description( ) const { return m_description; }
+ TQString description( ) const { return m_description; }
/**
* List of keywords for search of the library object.
*/
- QString keywords( ) const { return m_keywords; }
+ TQString keywords( ) const { return m_keywords; }
/**
* Graphical Preview.
*/
- QImage* preview( );
+ TQImage* preview( );
/**
* True is the preview has been loaded.
*/
@@ -87,34 +87,34 @@ public:
/**
* Objects for the scene
*/
- QByteArray* objects( );
+ TQByteArray* objects( );
bool areObjectsLoaded( ) const { return m_objectsLoaded; }
/**
* Set the library object name
*/
- void setName( const QString& str );
+ void setName( const TQString& str );
/**
* Set the library object description
*/
- void setDescription( const QString& str );
+ void setDescription( const TQString& str );
/**
* Set the library object keywords
*/
- void setKeywords( const QString& str );
+ void setKeywords( const TQString& str );
/**
* Set the preview image
*/
- void setPreview( const QImage& img );
+ void setPreview( const TQImage& img );
/**
* Set the object data
*/
- void setObjects( const QByteArray& obj );
+ void setObjects( const TQByteArray& obj );
/**
* Save the library object to a file
*/
- void save( const QString& fileName );
+ void save( const TQString& fileName );
private:
void loadLibraryInfo( );
@@ -124,13 +124,13 @@ private:
bool m_previewLoaded;
bool m_objectsLoaded;
- QString m_name;
- QString m_description;
- QString m_keywords;
+ TQString m_name;
+ TQString m_description;
+ TQString m_keywords;
KTar* m_data;
- QImage* m_preview;
- QByteArray* m_objects;
- QStringList m_extraFiles;
+ TQImage* m_preview;
+ TQByteArray* m_objects;
+ TQStringList m_extraFiles;
};
#endif