extend QSELECT / QSEL to work with QML items; revision of property dialog; small revisions;

This commit is contained in:
polos 2017-02-16 17:24:08 +01:00
parent 2b777c6e8c
commit 2f67ce73b4
23 changed files with 139 additions and 74 deletions

View file

@ -1,5 +1,4 @@
#include "qml_lisp.h"
#include <eql_fun.h>
QT_BEGIN_NAMESPACE
@ -106,9 +105,4 @@ QVariant Lisp::apply(const QJSValue& caller_or_function,
arguments = function_or_arguments.toVariant().value<QVariantList>(); }
return qmlApply(caller, function, arguments); }
void PaintedItem::paint(QPainter* painter) {
eql_fun("qml:paint",
Q_ARG(QQuickPaintedItem*, this),
Q_ARG(QPainter*, painter)); }
QT_END_NAMESPACE