summaryrefslogtreecommitdiffstats
path: root/arts/gui/common/artsgui.idl
diff options
context:
space:
mode:
Diffstat (limited to 'arts/gui/common/artsgui.idl')
-rw-r--r--arts/gui/common/artsgui.idl22
1 files changed, 11 insertions, 11 deletions
diff --git a/arts/gui/common/artsgui.idl b/arts/gui/common/artsgui.idl
index de6da9e7..c88dd3f1 100644
--- a/arts/gui/common/artsgui.idl
+++ b/arts/gui/common/artsgui.idl
@@ -48,7 +48,7 @@ module Arts {
interface Widget {
readonly attribute long widgetID;
- attribute Widget tqparent;
+ attribute Widget parent;
attribute long x,y,width,height;
attribute boolean visible;
attribute SizePolicy hSizePolicy;
@@ -82,7 +82,7 @@ module Arts {
};
interface Frame : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute long margin;
attribute long linewidth;
@@ -118,7 +118,7 @@ module Arts {
Usage is quite simple: Add the widgets you have in the right order
to the layoutbox by calling addWidget().
- Thats it, no ._addChild or .tqparent with this widget.
+ Thats it, no ._addChild or .parent with this widget.
For more information see QBoxLayout.
(akrille)
@@ -173,7 +173,7 @@ module Arts {
Usage is quite simple: Create the Widget you want to be hidable inside
a container like LayoutBox or a normal widget. Then create the PopupBox
and call <Name_of_PopupBox>.widget( <Name_of_your_Container> ).
- Thats it, no ._addChild or .tqparent with this widget.
+ Thats it, no ._addChild or .parent with this widget.
(akrille)
*/
interface PopupBox : Frame {
@@ -186,8 +186,8 @@ module Arts {
};
interface Button : Widget {
- void constructor( Widget tqparent );
- void constructor( string text, Widget tqparent );
+ void constructor( Widget parent );
+ void constructor( string text, Widget parent );
attribute string text;
attribute boolean toggle;
@@ -205,7 +205,7 @@ module Arts {
};
interface Fader : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption, color;
attribute float min, max, value;
@@ -213,21 +213,21 @@ module Arts {
};
interface LineEdit : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption;
attribute string text;
};
interface SpinBox : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption;
attribute long min, max, value;
};
interface ComboBox : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption;
attribute sequence<string> choices;
@@ -235,7 +235,7 @@ module Arts {
};
interface Graph : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption;
attribute float minx, maxx, miny, maxy;