aboutsummaryrefslogtreecommitdiffstats
path: root/doc/property.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/property.rst')
-rw-r--r--doc/property.rst44
1 files changed, 0 insertions, 44 deletions
diff --git a/doc/property.rst b/doc/property.rst
deleted file mode 100644
index 88db8d68e..000000000
--- a/doc/property.rst
+++ /dev/null
@@ -1,44 +0,0 @@
-Use of QProperty in PySide
-**************************
-
-PySide implements the function 'QProperty' which allows to declare properties compatible with QMetaProperties.
-
-
-Using PySide.QProperty()
-------------------------
-
-The QProperty works like Q_PROPERTY macro, and uses the same arguments.
-
-QProperty(getFunction, [setFunction], [resetFunction], [Designable], [Scriptable], [Stored], [User])
-
-
-The example below uses QProperty function to export a property in QMetaObject data.
-
-::
-
- ...
- clas MyObject(QObject):
- def getX(self):
- ...
-
- def setX(self, value):
- ...
-
- def resetX(self):
- ...
-
- X = QProperty(getX, setX, resetX, True, True, True, True)
-
- ...
-
-
-The exported property works like native python property on python side. See the example below.
-
-::
-
- ...
- o = MyObject()
- o.X = 10
- print o.X
- ...
-