diff options
Diffstat (limited to 'krec/krecglobal.h')
-rw-r--r-- | krec/krecglobal.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/krec/krecglobal.h b/krec/krecglobal.h index 6955eb14..f29a786d 100644 --- a/krec/krecglobal.h +++ b/krec/krecglobal.h @@ -14,10 +14,10 @@ #ifndef KREC_GLOBAL_H #define KREC_GLOBAL_H -#include <qobject.h> -#include <qstring.h> -#include <qstringlist.h> -#include <qdict.h> +#include <tqobject.h> +#include <tqstring.h> +#include <tqstringlist.h> +#include <tqdict.h> class KConfig; class QWidget; @@ -25,10 +25,10 @@ class KStatusBar; class KRecExportItem; -class KRecGlobal : public QObject { +class KRecGlobal : public TQObject { Q_OBJECT private: - KRecGlobal( QObject* =0, const char* =0 ); + KRecGlobal( TQObject* =0, const char* =0 ); ~KRecGlobal(); public: @@ -41,13 +41,13 @@ public: /** * Sets the MainWidget. */ - void setMainWidget( QWidget* ); + void setMainWidget( TQWidget* ); /** * Returns a pointer to the mainwidget. * Usefull to display Messageboxes, etc correctly without beeing a - * QWidget or knowing about a parent QWidget. + * TQWidget or knowing about a parent TQWidget. */ - QWidget* mainWidget(); + TQWidget* mainWidget(); /// @return kapp->config() static KConfig* kconfig(); @@ -58,7 +58,7 @@ public: * Puts a message into the statusbar. * Usefull for showing messages without knowing about the Statusbar. */ - void message( const QString & ); + void message( const TQString & ); /// Registers a KRecExportItem static bool registerExport( KRecExportItem* ); @@ -66,13 +66,13 @@ public: * Returns a new KRecExportItem for the specified exportFormat. * If now Item can be found the return value is 0. */ - KRecExportItem* getExportItem( const QString &exportFormat ); + KRecExportItem* getExportItem( const TQString &exportFormat ); /// - KRecExportItem* getExportItemForEnding( const QString & ); + KRecExportItem* getExportItemForEnding( const TQString & ); /// Returns a list of exportFormats. - QStringList exportFormats() const; + TQStringList exportFormats() const; /// Returns a list of fileendings. - QString exportFormatEndings() const; + TQString exportFormatEndings() const; /** * Gets/Sets the actual mode for formating time values. @@ -85,10 +85,10 @@ public: int frameBase(); void setFrameBase( int ); private: - QWidget *_qwidget; + TQWidget *_qwidget; KStatusBar *_statusbar; - QDict <KRecExportItem> *_exports; - QStringList _exportformats; + TQDict <KRecExportItem> *_exports; + TQStringList _exportformats; int _timeformatcache, _framebasecache; }; |