aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore/glue/qeasingcurve_glue.h
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2011-05-18 15:29:12 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:54:24 -0300
commitcceea0af845bd17149ff01a6d01c6c9b1453e230 (patch)
tree34f0a56bd640e6289b749f8d5da3a7591381facb /PySide/QtCore/glue/qeasingcurve_glue.h
parent923d007ab947b5e20ee0dbabb94564372649367f (diff)
Implemented support to QEasingCurve.setCustomType.
fixes bug #725. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
Diffstat (limited to 'PySide/QtCore/glue/qeasingcurve_glue.h')
-rw-r--r--PySide/QtCore/glue/qeasingcurve_glue.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/PySide/QtCore/glue/qeasingcurve_glue.h b/PySide/QtCore/glue/qeasingcurve_glue.h
new file mode 100644
index 000000000..282e4391d
--- /dev/null
+++ b/PySide/QtCore/glue/qeasingcurve_glue.h
@@ -0,0 +1,27 @@
+#ifndef __QEASINGCURVE_GLUE__
+#define __QEASINGCURVE_GLUE__
+
+#include <Python.h>
+#include <QEasingCurve>
+
+class PySideEasingCurveFunctor
+{
+ public:
+ static void init();
+ static QEasingCurve::EasingFunction createCustomFuntion(PyObject* parent, PyObject* pyFunc);
+
+ qreal operator()(qreal progress);
+
+ PyObject* callable(); //Return New reference
+ static PyObject* callable(PyObject* parent); //Return New reference
+
+ ~PySideEasingCurveFunctor();
+ private:
+ PyObject* m_parent;
+ PyObject* m_func;
+ int m_index;
+
+ PySideEasingCurveFunctor(int index, PyObject* parent, PyObject *pyFunc);
+};
+
+#endif