summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDCOPPropertyProxy.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KDCOPPropertyProxy.java')
-rw-r--r--kdejava/koala/org/kde/koala/KDCOPPropertyProxy.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/kdejava/koala/org/kde/koala/KDCOPPropertyProxy.java b/kdejava/koala/org/kde/koala/KDCOPPropertyProxy.java
index 82ee6dfa..67f3e041 100644
--- a/kdejava/koala/org/kde/koala/KDCOPPropertyProxy.java
+++ b/kdejava/koala/org/kde/koala/KDCOPPropertyProxy.java
@@ -3,19 +3,19 @@ package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
-import org.kde.qt.QObject;
+import org.kde.qt.TQObject;
/**
The KDCOPPropertyProxy class provides an easy way to publish Qt properties of a
- QObject through DCOP.
+ TQObject through DCOP.
The class provides DCOP equivalents for the Qt property methods setProperty() ,
property() and propertyNames() and also provides automatic set/get methods for
- the properties of a QObject. That means for example if your object provides a
+ the properties of a TQObject. That means for example if your object provides a
String property called foo , then KDCOPPropertyProxy translates DCOP calls
"setFoo( String )" and "String foo()" automatically into the corresponding
setProperty/property calls.
- @short The KDCOPPropertyProxy class provides an easy way to publish Qt properties of a QObject through DCOP.
+ @short The KDCOPPropertyProxy class provides an easy way to publish Qt properties of a TQObject through DCOP.
*/
public class KDCOPPropertyProxy implements QtSupport {
@@ -25,14 +25,14 @@ public class KDCOPPropertyProxy implements QtSupport {
/**
Convenience constructor. Use it if you want to use this class as object, in contrary
- to using the static methods of this class and providing a QObject argument for each
+ to using the static methods of this class and providing a TQObject argument for each
call.
@short Convenience constructor.
*/
- public KDCOPPropertyProxy(QObject object) {
+ public KDCOPPropertyProxy(TQObject object) {
newKDCOPPropertyProxy(object);
}
- private native void newKDCOPPropertyProxy(QObject object);
+ private native void newKDCOPPropertyProxy(TQObject object);
/**
Convenience method, when using this class as object. See documentation of the constructor and
static isPropertyRequest method.
@@ -50,16 +50,16 @@ public class KDCOPPropertyProxy implements QtSupport {
static functions method.
@short Convenience method, when using this class as object.
*/
- // QValueList<QCString> functions(); >>>> NOT CONVERTED
+ // TQValueList<TQCString> functions(); >>>> NOT CONVERTED
/**
Returns a semicolon-separated list of functions understood by the PropertyProxy for the given
- QObject argument.
- Returns "property(String);setProperty(String,QVariant);propertyNames();" plus set/get
+ TQObject argument.
+ Returns "property(String);setProperty(String,TQVariant);propertyNames();" plus set/get
methods for the properties of the given object argument.
- @short Returns a semicolon-separated list of functions understood by the PropertyProxy for the given QObject argument.
+ @short Returns a semicolon-separated list of functions understood by the PropertyProxy for the given TQObject argument.
@see DCOPObject#functions
*/
- // QValueList<QCString> functions(QObject* arg1); >>>> NOT CONVERTED
+ // TQValueList<TQCString> functions(TQObject* arg1); >>>> NOT CONVERTED
/**
Returns true if the method request in the fun argument matches the signature of the three standard
property methods or set/get methods for the properties of the object argument.
@@ -67,13 +67,13 @@ public class KDCOPPropertyProxy implements QtSupport {
request which can be handled by this class.
@short Returns true if the method request in the fun argument matches the signature of the three standard property methods or set/get methods for the properties of the object argument.
*/
- public static native boolean isPropertyRequest(String fun, QObject object);
+ public static native boolean isPropertyRequest(String fun, TQObject object);
/**
Processes the given DCOP method request by translating the request into a setProperty/property call
- on the given QObject argument.
- @short Processes the given DCOP method request by translating the request into a setProperty/property call on the given QObject argument.
+ on the given TQObject argument.
+ @short Processes the given DCOP method request by translating the request into a setProperty/property call on the given TQObject argument.
*/
- public static native boolean processPropertyRequest(String fun, byte[] data, StringBuffer replyType, byte[] replyData, QObject object);
+ public static native boolean processPropertyRequest(String fun, byte[] data, StringBuffer replyType, byte[] replyData, TQObject object);
/** Deletes the wrapped C++ instance */
protected native void finalize() throws InternalError;
/** Delete the wrapped C++ instance ahead of finalize() */