summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kautoconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/kautoconfig.h')
-rw-r--r--kopete/libkopete/kautoconfig.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/kopete/libkopete/kautoconfig.h b/kopete/libkopete/kautoconfig.h
index a4cd243b..f3122fee 100644
--- a/kopete/libkopete/kautoconfig.h
+++ b/kopete/libkopete/kautoconfig.h
@@ -20,8 +20,8 @@
#ifndef KAUTOCONFIG_H
#define KAUTOCONFIG_H
-#include <qobject.h>
-#include <qptrlist.h>
+#include <tqobject.h>
+#include <tqptrlist.h>
#include "kopete_export.h"
@@ -53,11 +53,11 @@ class QWidget;
* If one of the widgets needs special treatment it can be specified to be
* ignored using the ignoreSubWidget() function.
*
- * KAutoConfig uses the QSqlPropertyMap class to determine if it can do
+ * KAutoConfig uses the TQSqlPropertyMap class to determine if it can do
* anything to a widget. Note that KAutoConfig doesn't require a database,
* it simply uses the functionality that is built into the QSqlPropertyMap
* class. New widgets can be added to the map using
- * QSqlPropertyMap::installDefaultMap(). Note that you can't just add any
+ * TQSqlPropertyMap::installDefaultMap(). Note that you can't just add any
* class. The class must have a matching Q_PROPERTY(...) macro defined.
*
* For example (note that KColorButton is already added and it doesn't need to
@@ -65,18 +65,18 @@ class QWidget;
*
* kcolorbutton.h defines the following property:
* \code
- * Q_PROPERTY( QColor color READ color WRITE setColor )
+ * Q_PROPERTY( TQColor color READ color WRITE setColor )
* \endcode
*
* To add KColorButton the following code would be inserted in the main.
*
* \code
- * QSqlPropertyMap *map = QSqlPropertyMap::defaultMap();
+ * TQSqlPropertyMap *map = TQSqlPropertyMap::defaultMap();
* map.insert("KColorButton", "color");
- * QSqlPropertyMap::installDefaultMap(map);
+ * TQSqlPropertyMap::installDefaultMap(map);
* \endcode
*
- * If you add a new widget to the QSqlPropertyMap and wish to be notified when
+ * If you add a new widget to the TQSqlPropertyMap and wish to be notified when
* it is modified you should add its signal using addWidgetChangedSignal().
* If the Apply and Default buttons and enabled/disabled by KAutoConfigDialog
* automatically then this must be done.
@@ -85,7 +85,7 @@ class QWidget;
* @since 3.2
* @author Benjamin C Meyer <ben+kdelibs at meyerhome dot net>
*/
-class KOPETE_EXPORT KAutoConfig : public QObject {
+class KOPETE_EXPORT KAutoConfig : public TQObject {
Q_OBJECT
@@ -103,7 +103,7 @@ signals:
* contains the one or more modified setting.
* @see settingsChanged()
*/
- void settingsChanged( QWidget *widget );
+ void settingsChanged( TQWidget *widget );
/**
* If retrieveSettings() was told to track changes then if
@@ -123,7 +123,7 @@ public:
* @param parent - Parent object.
* @param name - Object name.
*/
- KAutoConfig( KConfig *kconfig, QObject *parent=0, const char *name=0 );
+ KAutoConfig( KConfig *kconfig, TQObject *parent=0, const char *name=0 );
/**
* Constructor.
@@ -132,7 +132,7 @@ public:
* @param parent - Parent object.
* @param name - Object name.
*/
- KAutoConfig( QObject *parent=0, const char *name=0 );
+ KAutoConfig( TQObject *parent=0, const char *name=0 );
/**
* Destructor. Deletes private class.
@@ -150,7 +150,7 @@ public:
* group it should be added separately and also ignored.
* @see ignoreSubWidget()
*/
- void addWidget( QWidget *widget, const QString &group );
+ void addWidget( TQWidget *widget, const TQString &group );
/**
* Ignore the specified child widget when performing an action. Doesn't
@@ -159,7 +159,7 @@ public:
* @param widget - Pointer to the widget that should be ignored.
* Note: Widgets that don't have a name are ignored automatically.
**/
- void ignoreSubWidget( QWidget *widget );
+ void ignoreSubWidget( TQWidget *widget );
/**
* Traverse the specified widgets to see if anything is different then the
@@ -185,17 +185,17 @@ public:
*
* Example:
* \code
- * addWidgetChangedSignal( "QCheckbox", SIGNAL(stateChanged(int)) );
+ * addWidgetChangedSignal( "QCheckbox", TQT_SIGNAL(stateChanged(int)) );
* \endcode
*
* This is generally used in conjunction with the addition of a class
- * to QSqlPropertyMap so KAutoConfig can get/set its values.
+ * to TQSqlPropertyMap so KAutoConfig can get/set its values.
*
* @param widgetName - The class name of the widget (className()).
- * @param signal - The signal (with "SIGNAL()" wrapper) that should be called.
+ * @param signal - The signal (with "TQT_SIGNAL()" wrapper) that should be called.
*/
- inline void addWidgetChangedSignal( const QString &widgetName,
- const QCString &signal ){
+ inline void addWidgetChangedSignal( const TQString &widgetName,
+ const TQCString &signal ){
changedMap.insert( widgetName, signal );
}
@@ -248,7 +248,7 @@ protected:
/**
* Map of the classes and the signals that they emit when changed.
*/
- QMap<QString, QCString> changedMap;
+ TQMap<TQString, TQCString> changedMap;
/**
* Recursive function that finds all known children.
@@ -262,8 +262,8 @@ protected:
* @return bool - If a widget was set to something other then its default.
* @see retrieveSettings()
*/
- bool parseChildren( const QWidget *widget,
- QPtrList<QWidget>&currentGroup, bool trackChanges );
+ bool parseChildren( const TQWidget *widget,
+ TQPtrList<TQWidget>&currentGroup, bool trackChanges );
private:
class KAutoConfigPrivate;