summaryrefslogtreecommitdiffstats
path: root/krfb/kinetd/kinetd.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /krfb/kinetd/kinetd.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krfb/kinetd/kinetd.h')
-rw-r--r--krfb/kinetd/kinetd.h74
1 files changed, 37 insertions, 37 deletions
diff --git a/krfb/kinetd/kinetd.h b/krfb/kinetd/kinetd.h
index e6283e83..32bb2885 100644
--- a/krfb/kinetd/kinetd.h
+++ b/krfb/kinetd/kinetd.h
@@ -23,36 +23,36 @@
#include <kservice.h>
#include <ksock.h>
#include <kprocess.h>
-#include <qstringlist.h>
-#include <qstring.h>
-#include <qdatetime.h>
-#include <qtimer.h>
+#include <tqstringlist.h>
+#include <tqstring.h>
+#include <tqdatetime.h>
+#include <tqtimer.h>
#include <dnssd/publicservice.h>
#include "kserviceregistry.h"
-class PortListener : public QObject {
+class PortListener : public TQObject {
Q_OBJECT
private:
bool m_valid;
- QString m_serviceName;
- QString m_serviceURL, m_serviceAttributes;
- QStringList m_registeredServiceURLs;
- QString m_dnssdName, m_dnssdType;
- QMap<QString,QString> m_dnssdData;
+ TQString m_serviceName;
+ TQString m_serviceURL, m_serviceAttributes;
+ TQStringList m_registeredServiceURLs;
+ TQString m_dnssdName, m_dnssdType;
+ TQMap<TQString,TQString> m_dnssdData;
int m_serviceLifetime;
int m_port;
int m_portBase, m_autoPortRange;
int m_defaultPortBase, m_defaultAutoPortRange;
bool m_multiInstance;
- QString m_execPath;
- QString m_argument;
+ TQString m_execPath;
+ TQString m_argument;
bool m_enabled;
bool m_serviceRegistered, m_registerService;
bool m_dnssdRegister, m_dnssdRegistered;
- QDateTime m_expirationTime;
- QDateTime m_slpLifetimeEnd;
- QString m_uuid;
+ TQDateTime m_expirationTime;
+ TQDateTime m_slpLifetimeEnd;
+ TQString m_uuid;
KServerSocket *m_socket;
KProcess m_process;
@@ -63,7 +63,7 @@ private:
void freePort();
void loadConfig(KService::Ptr s);
- void setEnabledInternal(bool e, const QDateTime &ex);
+ void setEnabledInternal(bool e, const TQDateTime &ex);
void dnssdRegister(bool enabled);
void setServiceRegistrationEnabledInternal(bool enabled);
@@ -73,16 +73,16 @@ public:
bool acquirePort();
bool isValid();
- QString name();
+ TQString name();
void setEnabled(bool enabled);
- void setEnabled(const QDateTime &expiration);
+ void setEnabled(const TQDateTime &expiration);
void setServiceRegistrationEnabled(bool enabled);
bool isServiceRegistrationEnabled();
- QDateTime expiration();
- QDateTime serviceLifetimeEnd();
+ TQDateTime expiration();
+ TQDateTime serviceLifetimeEnd();
bool isEnabled();
int port();
- QStringList processServiceTemplate(const QString &a);
+ TQStringList processServiceTemplate(const TQString &a);
bool setPort(int port = -1, int autoProbeRange = 1);
void refreshRegistration();
@@ -102,14 +102,14 @@ k_dcop:
* (see kinetdmodule.desktop in servicetypes dir).
* @return a list with the names of all services
*/
- QStringList services();
+ TQStringList services();
/**
* Returns true if the service exists and is available.
* @param service name of a service as specified in its .desktop file
* @return true if a service with the given name exists and is enabled
*/
- bool isEnabled(QString service);
+ bool isEnabled(TQString service);
/**
* Enables or disabled the given service. Ignored if the given service
@@ -117,7 +117,7 @@ k_dcop:
* @param service name of a service as specified in its .desktop file
* @param enable true to enable, false to disable.
*/
- void setEnabled(QString service, bool enable);
+ void setEnabled(TQString service, bool enable);
/**
* Enables the given service until the given time. Ignored if the given
@@ -125,14 +125,14 @@ k_dcop:
* @param service name of a service as specified in its .desktop file
* @param expiration the time the service will be disabled at
*/
- void setEnabled(QString service, QDateTime expiration);
+ void setEnabled(TQString service, TQDateTime expiration);
/**
* Returns the port of the service, or -1 if not listening.
* @param service name of a service as specified in its .desktop file
* @return the port or -1 if no port used or service does not exist
*/
- int port(QString service);
+ int port(TQString service);
/**
* Sets the port of the service, and possibly a range of ports to try.
@@ -144,14 +144,14 @@ k_dcop:
* @return true if a port could be found or service is disabled, false
* otherwise.
*/
- bool setPort(QString service, int port = -1, int autoPortRange = 1);
+ bool setPort(TQString service, int port = -1, int autoPortRange = 1);
/**
* Tests whether the given service is installed..
* @param service name of a service as specified in its .desktop file
* @return true if installed, false otherwise
*/
- bool isInstalled(QString service);
+ bool isInstalled(TQString service);
/**
* Enables or disables the SLP registration. Ignored if the service does
@@ -160,7 +160,7 @@ k_dcop:
* @param service name of a service as specified in its .desktop file
* @param enable true to enable, false to disable.
*/
- void setServiceRegistrationEnabled(QString service, bool enabled);
+ void setServiceRegistrationEnabled(TQString service, bool enabled);
/**
* Returns true if service registration for the given service is enabled.
@@ -169,19 +169,19 @@ k_dcop:
* @param service name of a service as specified in its .desktop file
* @return true if service registration is enabled
*/
- bool isServiceRegistrationEnabled(QString service);
+ bool isServiceRegistrationEnabled(TQString service);
private:
- QDateTime getNextExpirationTime();
+ TQDateTime getNextExpirationTime();
void setPortRetryTimer(bool retry);
void setReregistrationTimer();
KConfig *m_config;
KServiceRegistry *m_srvreg;
- QPtrList<PortListener> m_portListeners;
- QTimer m_expirationTimer;
- QTimer m_portRetryTimer;
- QTimer m_reregistrationTimer;
+ TQPtrList<PortListener> m_portListeners;
+ TQTimer m_expirationTimer;
+ TQTimer m_portRetryTimer;
+ TQTimer m_reregistrationTimer;
private slots:
void setExpirationTimer();
@@ -190,10 +190,10 @@ k_dcop:
void reregistrationTimer();
public:
- KInetD(QCString &n);
+ KInetD(TQCString &n);
virtual ~KInetD();
void loadServiceList();
- PortListener *getListenerByName(QString name);
+ PortListener *getListenerByName(TQString name);
};