mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Remove max LED number constraint from Matrix layout (#1805)
This commit is contained in:
@@ -103,4 +103,6 @@ private:
|
||||
QImage _image;
|
||||
QPainter* _painter;
|
||||
QVector<QImage> _imageStack;
|
||||
|
||||
double _lowestUpdateIntervalInSeconds;
|
||||
};
|
||||
|
@@ -21,28 +21,29 @@ public:
|
||||
|
||||
// Wrapper methods for Python interpreter extra buildin methods
|
||||
static PyMethodDef effectMethods[];
|
||||
static PyObject* wrapSetColor(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapSetImage(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapGetImage(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapAbort(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageShow(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageLinearGradient(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageConicalGradient(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageRadialGradient(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageSolidFill(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageDrawLine(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageDrawPoint(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageDrawRect(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageDrawPolygon(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageDrawPie(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageSetPixel(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageGetPixel(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageSave(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageMinSize(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageWidth(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageHeight(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageCRotate(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageCOffset(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageCShear(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapImageResetT(PyObject* self, PyObject* args);
|
||||
static PyObject* wrapSetColor (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapSetImage (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapGetImage (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapAbort (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageShow (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageLinearGradient (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageConicalGradient (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageRadialGradient (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageSolidFill (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageDrawLine (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageDrawPoint (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageDrawRect (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageDrawPolygon (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageDrawPie (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageSetPixel (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageGetPixel (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageSave (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageMinSize (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageWidth (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageHeight (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageCRotate (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageCOffset (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageCShear (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapImageResetT (PyObject *self, PyObject *args);
|
||||
static PyObject* wrapLowestUpdateInterval (PyObject* self, PyObject* args);
|
||||
};
|
||||
|
Reference in New Issue
Block a user