klayout/scripts
Matthias Koefferlein 1f60e7729e Qt signals can be bound to functions with less args in Python
With this change it is possible to bind signals to functions
accepting less arguments. For example:

    def triggered():
      ...

    b = pya.QPushButton()
    b.clicked(triggered)
    b.emit_clicked(True)

wasn't working before since triggered() gets one parameter
(checked) and the call fails. Now, additional parameters are
ignored.
2017-02-24 23:48:47 +01:00
..
mkqtdecl4 Qt signals can be bound to functions with less args in Python 2017-02-24 23:48:47 +01:00
mkqtdecl5 Added scripts for Qt generation. 2017-02-21 20:32:40 +01:00
mkqtdecl_common Refactoring: there is one Qt binding lib. 2017-02-23 01:19:02 +01:00
mkqtdecl.sh Qt signals can be bound to functions with less args in Python 2017-02-24 23:48:47 +01:00