Auto-generating-QObject-from-template-in-PySide: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:LanguageBindings::PySide]]
 
 
[[Category:PySide]]
[[Category:Snippets]]
[[Category:Snippets]]
[[Category:Developing_with_Qt::Qt Quick]]
[[Category:Developing_with_Qt::Qt Quick]]
[[Category:Developing_with_Qt::Qt Quick::QML]]
[[Category:Developing_with_Qt::Qt Quick::QML]]
[[Category:Developing_with_Qt::Qt Quick::Tutorial]]
[[Category:Developing_with_Qt::Qt Quick::Tutorial]]
[toc align_right="yes" depth="3"]
<big>'''Attention: a port of PySide to Qt 5.x started in 2014, the progress and more details about this project can be found under [[PySide2 | PySide 2]]'''</big>


= Auto-generating QObject from template in PySide =


In the previous [[PySide]] tutorial, we have defined a QObject subclass "Car" with 4 properties which took about 36 lines of code. The code is repetitive, and it follows a scheme - every property has a getter, setter and notification method (in the case of the previous example, we shared the notification signal amongst all properties). For a very generic "entity" QObject, there is an easier way: Auto-generating the QObject from a template that specifies the names of the properties and the type of each property. Attributes, getters, setters and notification methods are automatically generated, and the object can be used as if it was a normal Python object.
In the previous [[PySide]] tutorial, we have defined a QObject subclass "Car" with 4 properties which took about 36 lines of code. The code is repetitive, and it follows a scheme - every property has a getter, setter and notification method (in the case of the previous example, we shared the notification signal amongst all properties). For a very generic "entity" QObject, there is an easier way: Auto-generating the QObject from a template that specifies the names of the properties and the type of each property. Attributes, getters, setters and notification methods are automatically generated, and the object can be used as if it was a normal Python object.
Line 50: Line 51:
</code>
</code>


h2. How to use the Auto-Generator
== How to use the Auto-Generator ==
 
Taking the example of our previous tutorial, defining a "Car" object has become quite easy now:
Taking the example of our previous tutorial, defining a "Car" object has become quite easy now:


Line 66: Line 66:
The amount of lines has decreased from 36 to 7 (if you ignore the fact that AutoQObject does also take some lines). The definition is more straightforward, and it saves you a lot of typing and errors compared to if you were to do it manually.
The amount of lines has decreased from 36 to 7 (if you ignore the fact that AutoQObject does also take some lines). The definition is more straightforward, and it saves you a lot of typing and errors compared to if you were to do it manually.


h2. Example usage of our generated class
== Example usage of our generated class ==
 
We could simply drop this code into the previous tutorial example and see that it still works. We just do some basic instantiation and reading of the values to see if it works:
We could simply drop this code into the previous tutorial example and see that it still works. We just do some basic instantiation and reading of the values to see if it works:


Line 83: Line 82:
</code>
</code>


h2. The expected output
== The expected output ==
 
If everything works as planned, this is what you should get as output when running the example code:
If everything works as planned, this is what you should get as output when running the example code:



Revision as of 11:51, 26 February 2018

Attention: a port of PySide to Qt 5.x started in 2014, the progress and more details about this project can be found under PySide 2


In the previous PySide tutorial, we have defined a QObject subclass "Car" with 4 properties which took about 36 lines of code. The code is repetitive, and it follows a scheme - every property has a getter, setter and notification method (in the case of the previous example, we shared the notification signal amongst all properties). For a very generic "entity" QObject, there is an easier way: Auto-generating the QObject from a template that specifies the names of the properties and the type of each property. Attributes, getters, setters and notification methods are automatically generated, and the object can be used as if it was a normal Python object.

The Auto-Generator function

This function gets one or more class_def tuples (length: two) that specify the name and the type of objects (see below for an example). The only optional keyword at the moment is "name", which specifies the name of the class for debugging purposes.

from PySide import QtCore

def AutoQObject('''class_def,kwargs):
 class Object(QtCore.QObject):
 def ''init''(self,'''*kwargs):
 QtCore.QObject.''init''(self)
 for key, val in class_def:
 self.''dict''[''''+key] = kwargs.get(key, val())

 defrepr<span class="self">:
 values = ('%s=r' (key, self.</span>dict[''''+key])  for key, value in class_def)
 return '<%s (s)>' (kwargs.get('name', 'QObject'), ', '.join(values))

for key, value in class_def:
 nfy = locals()['''nfy'''+key] = QtCore.Signal()

def ''get(key):
 def f(self):
 return self.dict[''''+key]
 return f

def ''set(key):
 def f(self, value):
 self.dict[''''+key] = value
 self.''dict''['''nfy'''+key].emit()
 return f

set = locals()['''set'''+key] = _set(key)
 get = locals()['''get'''+key] = ''get(key)

 locals()[key] = QtCore.Property(value, get, set, notify=nfy)

 return Object

How to use the Auto-Generator

Taking the example of our previous tutorial, defining a "Car" object has become quite easy now:

Car = AutoQObject(
 ('model', str),
 ('brand', str),
 ('year', int),
 ('inStock', bool),
 name='Car'
)

The amount of lines has decreased from 36 to 7 (if you ignore the fact that AutoQObject does also take some lines). The definition is more straightforward, and it saves you a lot of typing and errors compared to if you were to do it manually.

Example usage of our generated class

We could simply drop this code into the previous tutorial example and see that it still works. We just do some basic instantiation and reading of the values to see if it works:

print Car

c = Car(model='Fiesta', brand='Ford', year=1337)
print c.model, c.brand, c.year, c.inStock
print c

c.inStock = True

print c.model, c.brand, c.year, c.inStock
print c

The expected output

If everything works as planned, this is what you should get as output when running the example code:

<class 'main_.Object'> Fiesta Ford 1337 False <Car (model='Fiesta', brand='Ford', year=1337, inStock=False)> Fiesta Ford 1337 True <Car (model='Fiesta', brand='Ford', year=1337, inStock=True)>