summaryrefslogtreecommitdiffstats
path: root/kjsembed/jsobjectproxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/jsobjectproxy.h')
-rw-r--r--kjsembed/jsobjectproxy.h50
1 files changed, 25 insertions, 25 deletions
diff --git a/kjsembed/jsobjectproxy.h b/kjsembed/jsobjectproxy.h
index fde60c61..b8ead87c 100644
--- a/kjsembed/jsobjectproxy.h
+++ b/kjsembed/jsobjectproxy.h
@@ -41,19 +41,19 @@ class KJSEmbedPart;
class JSObjectEventProxy;
/**
- * A JS object that provides a binding to a TTQObject.
+ * A JS object that provides a binding to a TQObject.
* <h3>Introduction</h3>
* This class defines a @ref KJS::ObjectImp that allows scripts to access
- * the properties of a TTQObject. The scripts can also create child objects,
+ * the properties of a TQObject. The scripts can also create child objects,
* load dialogs from .ui files created by Designer and navigate the object
- * tree in a similar manner to the DCOP/TTQObject bridge.
+ * tree in a similar manner to the DCOP/TQObject bridge.
* <h3>Example Usage</h3>
* The following example creates a @ref KJS::ObjectImp that provides
- * a binding to the properties of a @ref TTQLineEdit . This binding is
+ * a binding to the properties of a @ref TQLineEdit . This binding is
* then used to create a property 'edit' for the object 'jsparent'.
* <pre>
*
- * TTQLineEdit *edit = new TTQLineEdit();
+ * TQLineEdit *edit = new TQLineEdit();
* KJSEmbed::JSObjectProxy *proxy = new KJSEmbed::JSObjectProxy( js, edit );
* jsparent.put( js->globalExec(), "edit", proxy );
*
@@ -82,24 +82,24 @@ class KJSEMBED_EXPORT JSObjectProxy : public JSProxy
public:
/**
* Create a JS binding to the target object. The binding will allow scripts to
- * access any TTQObject that is descended the target and no others.
+ * access any TQObject that is descended the target and no others.
*/
- JSObjectProxy( KJSEmbedPart *part, TTQObject *target );
+ JSObjectProxy( KJSEmbedPart *part, TQObject *target );
/**
* Create a JS binding to the target object. The binding will allow scripts to
- * access any TTQObject that is descended from the specified root. If the specified
+ * access any TQObject that is descended from the specified root. If the specified
* root is 0 then access is granted to all objects.
*/
- JSObjectProxy( KJSEmbedPart *part, TTQObject *target, TTQObject *root );
+ JSObjectProxy( KJSEmbedPart *part, TQObject *target, TQObject *root );
/**
* Create a JS binding to the target object. The binding will allow scripts to
- * access any TTQObject that is descended from the specified root, according to
+ * access any TQObject that is descended from the specified root, according to
* the specified @ref JSSecurityPolicy . If the specified root is 0 then access
* is granted to all objects.
*/
- JSObjectProxy( KJSEmbedPart *part, TTQObject *target, TTQObject *root, const JSSecurityPolicy *sp );
+ JSObjectProxy( KJSEmbedPart *part, TQObject *target, TQObject *root, const JSSecurityPolicy *sp );
virtual ~JSObjectProxy();
@@ -110,24 +110,24 @@ public:
KJS::Interpreter *interpreter() const { return js; }
/** Returns the root object that defines the limit of the scope of this proxy. */
- TTQObject *rootObject() const { return root; }
+ TQObject *rootObject() const { return root; }
- /** Returns the TTQObject the proxy is attached to. */
- TTQObject *object() const { return obj; }
+ /** Returns the TQObject the proxy is attached to. */
+ TQObject *object() const { return obj; }
/** Returns the className of the proxied object */
- TTQString typeName() const { return obj->className(); }
+ TQString typeName() const { return obj->className(); }
- /** Returns the associated TTQWidget, or 0 if the object is not a widget. */
- TTQWidget *widget() const
+ /** Returns the associated TQWidget, or 0 if the object is not a widget. */
+ TQWidget *widget() const
{
- TTQObject *w = obj;
- return (w && w->isWidgetType()) ? static_cast<TTQWidget *>(w) : 0;
+ TQObject *w = obj;
+ return (w && w->isWidgetType()) ? static_cast<TQWidget *>(w) : 0;
}
//void *toVoidStar() { return obj; }
//template<class T>
- //T *toNative(){ return dynamic_cast<TTQObject*>(obj); }
+ //T *toNative(){ return dynamic_cast<TQObject*>(obj); }
/** Returns true iff the content of this proxy inherits the specified base-class. */
bool inherits( const char *clazz ) { return obj->isA( clazz ); }
@@ -152,7 +152,7 @@ public:
virtual KJS::UString toString( KJS::ExecState *exec ) const;
/**
- * Adds methods for traversing the TTQObject tree to the specified
+ * Adds methods for traversing the TQObject tree to the specified
* @ref KJS::Object . Only TQObjects descended from the root specified
* in the constructor can be reached through JS proxies created with
* these bindings.
@@ -180,14 +180,14 @@ protected:
private:
bool isAllowed( KJS::Interpreter *js ) const;
- void addSlotBinding( const TTQCString &name, KJS::ExecState *exec, KJS::Object &object );
+ void addSlotBinding( const TQCString &name, KJS::ExecState *exec, KJS::Object &object );
private:
KJSEmbedPart *jspart;
KJS::Interpreter *js;
- TTQGuardedPtr<TTQObject> obj;
- TTQGuardedPtr<TTQObject> root;
- TTQGuardedPtr<JSObjectEventProxy> evproxy;
+ TQGuardedPtr<TQObject> obj;
+ TQGuardedPtr<TQObject> root;
+ TQGuardedPtr<JSObjectEventProxy> evproxy;
const JSSecurityPolicy *policy;
class JSObjectProxyPrivate *d;
friend class Bindings::JSObjectProxyImp;