summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/Rect.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/Rect.java')
-rw-r--r--kdejava/koala/org/kde/koala/Rect.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/Rect.java b/kdejava/koala/org/kde/koala/Rect.java
new file mode 100644
index 00000000..b44c0361
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/Rect.java
@@ -0,0 +1,57 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+
+/**
+
+ The <code>Rect</code> interface is used to represent any <a
+ href="http://www.w3.org/TR/REC-CSS2/visufx.html#value-def-shape">
+ rect </a> value. This interface reflects the values in the
+ underlying style property. Hence, modifications made through this
+ interface modify the style property.
+ @short The <code>Rect</code> interface is used to represent any <a href="http://www.
+
+*/
+public class Rect implements QtSupport {
+ private long _qt;
+ private boolean _allocatedInJavaWorld = true;
+ protected Rect(Class dummy){}
+
+ public Rect() {
+ newRect();
+ }
+ private native void newRect();
+ public Rect(Rect other) {
+ newRect(other);
+ }
+ private native void newRect(Rect other);
+ /**
+ This attribute is used for the top of the rect.
+ @short This attribute is used for the top of the rect.
+ */
+ public native CSSPrimitiveValue top();
+ /**
+ This attribute is used for the right of the rect.
+ @short This attribute is used for the right of the rect.
+ */
+ public native CSSPrimitiveValue right();
+ /**
+ This attribute is used for the bottom of the rect.
+ @short This attribute is used for the bottom of the rect.
+ */
+ public native CSSPrimitiveValue bottom();
+ /**
+ This attribute is used for the left of the rect.
+ @short This attribute is used for the left of the rect.
+ */
+ public native CSSPrimitiveValue left();
+ /**
+ not part of the DOM
+ @short
+ */
+ // DOM::RectImpl* handle(); >>>> NOT CONVERTED
+ public native boolean isNull();
+ // DOM::Rect* Rect(DOM::RectImpl* arg1); >>>> NOT CONVERTED
+}