File: qtscriptshell_QImage.h

package info (click to toggle)
musescore 1.3%2Bdfsg1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 148,004 kB
  • ctags: 30,854
  • sloc: cpp: 372,716; xml: 148,276; ansic: 6,156; python: 2,202; perl: 710; sh: 505; makefile: 227
file content (31 lines) | stat: -rw-r--r-- 1,229 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef QTSCRIPTSHELL_QIMAGE_H
#define QTSCRIPTSHELL_QIMAGE_H

#include <qimage.h>

#include <QtScript/qscriptvalue.h>

class QtScriptShell_QImage : public QImage
{
public:
    QtScriptShell_QImage();
    QtScriptShell_QImage(const QImage&  arg__1);
    QtScriptShell_QImage(const QSize&  size, QImage::Format  format);
    QtScriptShell_QImage(const QString&  fileName, const char*  format = 0);
    QtScriptShell_QImage(const char*  fileName, const char*  format = 0);
    QtScriptShell_QImage(const char**  xpm);
    QtScriptShell_QImage(const uchar*  data, int  width, int  height, QImage::Format  format);
    QtScriptShell_QImage(const uchar*  data, int  width, int  height, int  bytesPerLine, QImage::Format  format);
    QtScriptShell_QImage(int  width, int  height, QImage::Format  format);
    QtScriptShell_QImage(uchar*  data, int  width, int  height, QImage::Format  format);
    QtScriptShell_QImage(uchar*  data, int  width, int  height, int  bytesPerLine, QImage::Format  format);
    ~QtScriptShell_QImage();

    int  devType() const;
    int  metric(QPaintDevice::PaintDeviceMetric  metric) const;
    QPaintEngine*  paintEngine() const;

    QScriptValue __qtscript_self;
};

#endif // QTSCRIPTSHELL_QIMAGE_H