summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/backends/qgpgme/qgpgmecryptoconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/backends/qgpgme/qgpgmecryptoconfig.h')
-rw-r--r--certmanager/lib/backends/qgpgme/qgpgmecryptoconfig.h92
1 files changed, 46 insertions, 46 deletions
diff --git a/certmanager/lib/backends/qgpgme/qgpgmecryptoconfig.h b/certmanager/lib/backends/qgpgme/qgpgmecryptoconfig.h
index bfcb8e5c..20a01d31 100644
--- a/certmanager/lib/backends/qgpgme/qgpgmecryptoconfig.h
+++ b/certmanager/lib/backends/qgpgme/qgpgmecryptoconfig.h
@@ -34,10 +34,10 @@
#define KLEO_QGPGMECRYPTOCONFIG_H
#include <kleo/cryptoconfig.h>
-#include <qdict.h>
-#include <qstringlist.h>
-#include <qobject.h>
-#include <qvariant.h>
+#include <tqdict.h>
+#include <tqstringlist.h>
+#include <tqobject.h>
+#include <tqvariant.h>
class KProcIO;
class QGpgMECryptoConfigComponent;
@@ -46,7 +46,7 @@ class QGpgMECryptoConfigEntry;
* CryptoConfig implementation around the gpgconf command-line tool
* For method docu, see kleo/cryptoconfig.h
*/
-class QGpgMECryptoConfig : public QObject, public Kleo::CryptoConfig {
+class QGpgMECryptoConfig : public TQObject, public Kleo::CryptoConfig {
Q_OBJECT
public:
@@ -56,9 +56,9 @@ public:
QGpgMECryptoConfig();
virtual ~QGpgMECryptoConfig();
- virtual QStringList componentList() const;
+ virtual TQStringList componentList() const;
- virtual Kleo::CryptoConfigComponent* component( const QString& name ) const;
+ virtual Kleo::CryptoConfigComponent* component( const TQString& name ) const;
virtual void clear();
virtual void sync( bool runtime );
@@ -70,25 +70,25 @@ private:
void runGpgConf( bool showErrors );
private:
- QDict<QGpgMECryptoConfigComponent> mComponents;
+ TQDict<QGpgMECryptoConfigComponent> mComponents;
bool mParsed;
};
class QGpgMECryptoConfigGroup;
/// For docu, see kleo/cryptoconfig.h
-class QGpgMECryptoConfigComponent : public QObject, public Kleo::CryptoConfigComponent {
+class QGpgMECryptoConfigComponent : public TQObject, public Kleo::CryptoConfigComponent {
Q_OBJECT
public:
- QGpgMECryptoConfigComponent( QGpgMECryptoConfig*, const QString& name, const QString& description );
+ QGpgMECryptoConfigComponent( QGpgMECryptoConfig*, const TQString& name, const TQString& description );
~QGpgMECryptoConfigComponent();
- QString name() const { return mName; }
- QString iconName() const { return mName; }
- QString description() const { return mDescription; }
- QStringList groupList() const;
- Kleo::CryptoConfigGroup* group( const QString& name ) const;
+ TQString name() const { return mName; }
+ TQString iconName() const { return mName; }
+ TQString description() const { return mDescription; }
+ TQStringList groupList() const;
+ Kleo::CryptoConfigGroup* group( const TQString& name ) const;
void sync( bool runtime );
@@ -98,41 +98,41 @@ private:
void runGpgConf();
private:
- QDict<QGpgMECryptoConfigGroup> mGroups;
- QString mName;
- QString mDescription;
+ TQDict<QGpgMECryptoConfigGroup> mGroups;
+ TQString mName;
+ TQString mDescription;
QGpgMECryptoConfigGroup* mCurrentGroup; // during parsing
- QString mCurrentGroupName; // during parsing
+ TQString mCurrentGroupName; // during parsing
};
class QGpgMECryptoConfigGroup : public Kleo::CryptoConfigGroup {
public:
- QGpgMECryptoConfigGroup( const QString & name, const QString& description, int level );
+ QGpgMECryptoConfigGroup( const TQString & name, const TQString& description, int level );
~QGpgMECryptoConfigGroup() {}
- QString name() const { return mName; }
- QString iconName() const { return QString::null; }
- QString description() const { return mDescription; }
+ TQString name() const { return mName; }
+ TQString iconName() const { return TQString::null; }
+ TQString description() const { return mDescription; }
Kleo::CryptoConfigEntry::Level level() const { return mLevel; }
- QStringList entryList() const;
- Kleo::CryptoConfigEntry* entry( const QString& name ) const;
+ TQStringList entryList() const;
+ Kleo::CryptoConfigEntry* entry( const TQString& name ) const;
private:
friend class QGpgMECryptoConfigComponent; // it adds the entries
- QDict<QGpgMECryptoConfigEntry> mEntries;
- QString mName;
- QString mDescription;
+ TQDict<QGpgMECryptoConfigEntry> mEntries;
+ TQString mName;
+ TQString mDescription;
Kleo::CryptoConfigEntry::Level mLevel;
};
class QGpgMECryptoConfigEntry : public Kleo::CryptoConfigEntry {
public:
- QGpgMECryptoConfigEntry( const QStringList& parsedLine );
+ QGpgMECryptoConfigEntry( const TQStringList& parsedLine );
~QGpgMECryptoConfigEntry();
- QString name() const { return mName; }
- QString description() const { return mDescription; }
+ TQString name() const { return mName; }
+ TQString description() const { return mDescription; }
bool isOptional() const;
bool isReadOnly() const;
bool isList() const;
@@ -141,40 +141,40 @@ public:
ArgType argType() const { return static_cast<ArgType>( mArgType ); }
bool isSet() const;
bool boolValue() const;
- QString stringValue() const;
+ TQString stringValue() const;
int intValue() const;
unsigned int uintValue() const;
KURL urlValue() const;
unsigned int numberOfTimesSet() const;
- QStringList stringValueList() const;
- QValueList<int> intValueList() const;
- QValueList<unsigned int> uintValueList() const;
+ TQStringList stringValueList() const;
+ TQValueList<int> intValueList() const;
+ TQValueList<unsigned int> uintValueList() const;
KURL::List urlValueList() const;
void resetToDefault();
void setBoolValue( bool );
- void setStringValue( const QString& );
+ void setStringValue( const TQString& );
void setIntValue( int );
void setUIntValue( unsigned int );
void setURLValue( const KURL& );
void setNumberOfTimesSet( unsigned int );
- void setStringValueList( const QStringList& );
- void setIntValueList( const QValueList<int>& );
- void setUIntValueList( const QValueList<unsigned int>& );
+ void setStringValueList( const TQStringList& );
+ void setIntValueList( const TQValueList<int>& );
+ void setUIntValueList( const TQValueList<unsigned int>& );
void setURLValueList( const KURL::List& );
bool isDirty() const { return mDirty; }
void setDirty( bool b );
- QString outputString() const;
+ TQString outputString() const;
protected:
bool isStringType() const;
- QVariant stringToValue( const QString& value, bool unescape ) const;
- QString toString( bool escape ) const;
+ TQVariant stringToValue( const TQString& value, bool unescape ) const;
+ TQString toString( bool escape ) const;
private:
- QString mName;
- QString mDescription;
- QVariant mDefaultValue;
- QVariant mValue;
+ TQString mName;
+ TQString mDescription;
+ TQVariant mDefaultValue;
+ TQVariant mValue;
uint mFlags : 8; // bitfield with 8 bits
uint mLevel : 3; // max is 4 (2, in fact) -> 3 bits
uint mRealArgType : 6; // max is 33 -> 6 bits