Inheritance: Object, IDisposable
コード例 #1
0
 public void SetMatrix(QMatrix matrix)
 {
     applet.SetMatrix(matrix);
 }
コード例 #2
0
ファイル: QGraphicsTextItem.cs プロジェクト: KDE/qyoto
 public void SetMatrix(QMatrix matrix, bool combine)
 {
     interceptor.Invoke("setMatrix#$", "setMatrix(const QMatrix&, bool)", typeof(void), typeof(QMatrix), matrix, typeof(bool), combine);
 }
コード例 #3
0
ファイル: Qt.cs プロジェクト: 0xd34df00d/Qross
 public static bool QFuzzyCompare(QMatrix m1, QMatrix m2)
 {
     return (bool) staticInterceptor.Invoke("qFuzzyCompare##", "qFuzzyCompare(const QMatrix&, const QMatrix&)", typeof(bool), typeof(QMatrix), m1, typeof(QMatrix), m2);
 }
コード例 #4
0
ファイル: QBitmap.cs プロジェクト: KDE/qyoto
 public new QBitmap Transformed(QMatrix arg1)
 {
     return (QBitmap) interceptor.Invoke("transformed#", "transformed(const QMatrix&) const", typeof(QBitmap), typeof(QMatrix), arg1);
 }
コード例 #5
0
ファイル: Qt.cs プロジェクト: KDE/qyoto
 public static QDataStream Read(QDataStream arg1, QMatrix arg2)
 {
     return (QDataStream) staticInterceptor.Invoke("operator>>##", "operator>>(QDataStream&, QMatrix&)", typeof(QDataStream), typeof(QDataStream), arg1, typeof(QMatrix), arg2);
 }
コード例 #6
0
ファイル: QImage.cs プロジェクト: 0xd34df00d/Qross
 public QImage Transformed(QMatrix matrix, Qt.TransformationMode mode)
 {
     return (QImage) interceptor.Invoke("transformed#$", "transformed(const QMatrix&, Qt::TransformationMode) const", typeof(QImage), typeof(QMatrix), matrix, typeof(Qt.TransformationMode), mode);
 }
コード例 #7
0
ファイル: QPainterPath.cs プロジェクト: micro-chen/qyoto
 public List <QPolygonF> ToFillPolygons(QMatrix matrix)
 {
     return((List <QPolygonF>)interceptor.Invoke("toFillPolygons#", "toFillPolygons(const QMatrix&) const", typeof(List <QPolygonF>), typeof(QMatrix), matrix));
 }
コード例 #8
0
ファイル: QTransform.cs プロジェクト: 0xd34df00d/Qross
 public QTransform(QMatrix mtx)
     : this((Type) null)
 {
     CreateProxy();
     interceptor.Invoke("QTransform#", "QTransform(const QMatrix&)", typeof(void), typeof(QMatrix), mtx);
 }
コード例 #9
0
ファイル: QMatrix.cs プロジェクト: micro-chen/qyoto
 public QMatrix(QMatrix matrix) : this((Type)null)
 {
     CreateProxy();
     interceptor.Invoke("QMatrix#", "QMatrix(const QMatrix&)", typeof(void), typeof(QMatrix), matrix);
 }
コード例 #10
0
 public void SetMatrix(QMatrix matrix, bool combine)
 {
     interceptor.Invoke("setMatrix#$", "setMatrix(const QMatrix&, bool)", typeof(void), typeof(QMatrix), matrix, typeof(bool), combine);
 }
コード例 #11
0
ファイル: QPixmap.cs プロジェクト: 0xd34df00d/Qross
 public QPixmap Transformed(QMatrix arg1, Qt.TransformationMode mode)
 {
     return (QPixmap) interceptor.Invoke("transformed#$", "transformed(const QMatrix&, Qt::TransformationMode) const", typeof(QPixmap), typeof(QMatrix), arg1, typeof(Qt.TransformationMode), mode);
 }
コード例 #12
0
ファイル: cannonfield.cs プロジェクト: KDE/qyoto
 private bool BarrelHit(QPoint pos)
 {
     QMatrix matrix = new QMatrix();
     matrix.Translate(0, Height());
     matrix.Rotate(-currentAngle);
     matrix = matrix.Inverted();
     return barrelRect.Contains(matrix.Map(pos));
 }
コード例 #13
0
ファイル: QPainterPath.cs プロジェクト: KDE/qyoto
 public List<QPolygonF> ToSubpathPolygons(QMatrix matrix)
 {
     return (List<QPolygonF>) interceptor.Invoke("toSubpathPolygons#", "toSubpathPolygons(const QMatrix&) const", typeof(List<QPolygonF>), typeof(QMatrix), matrix);
 }
コード例 #14
0
ファイル: QPainterPath.cs プロジェクト: KDE/qyoto
 public QPolygonF ToFillPolygon(QMatrix matrix)
 {
     return (QPolygonF) interceptor.Invoke("toFillPolygon#", "toFillPolygon(const QMatrix&) const", typeof(QPolygonF), typeof(QMatrix), matrix);
 }
コード例 #15
0
 public void SetMatrix(QMatrix matrix, bool combine)
 {
     applet.SetMatrix(matrix, combine);
 }
コード例 #16
0
ファイル: QBrush.cs プロジェクト: micro-chen/qyoto
 public void SetMatrix(QMatrix mat)
 {
     interceptor.Invoke("setMatrix#", "setMatrix(const QMatrix&)", typeof(void), typeof(QMatrix), mat);
 }
コード例 #17
0
ファイル: QImage.cs プロジェクト: 0xd34df00d/Qross
 public static QMatrix TrueMatrix(QMatrix arg1, int w, int h)
 {
     return (QMatrix) staticInterceptor.Invoke("trueMatrix#$$", "trueMatrix(const QMatrix&, int, int)", typeof(QMatrix), typeof(QMatrix), arg1, typeof(int), w, typeof(int), h);
 }
コード例 #18
0
ファイル: QPixmap.cs プロジェクト: micro-chen/qyoto
 public QPixmap Transformed(QMatrix arg1, Qt.TransformationMode mode)
 {
     return((QPixmap)interceptor.Invoke("transformed#$", "transformed(const QMatrix&, Qt::TransformationMode) const", typeof(QPixmap), typeof(QMatrix), arg1, typeof(Qt.TransformationMode), mode));
 }
コード例 #19
0
ファイル: QImage.cs プロジェクト: 0xd34df00d/Qross
 public QImage Transformed(QMatrix matrix)
 {
     return (QImage) interceptor.Invoke("transformed#", "transformed(const QMatrix&) const", typeof(QImage), typeof(QMatrix), matrix);
 }
コード例 #20
0
ファイル: QPixmap.cs プロジェクト: micro-chen/qyoto
 public QPixmap Transformed(QMatrix arg1)
 {
     return((QPixmap)interceptor.Invoke("transformed#", "transformed(const QMatrix&) const", typeof(QPixmap), typeof(QMatrix), arg1));
 }
コード例 #21
0
ファイル: QPainterPath.cs プロジェクト: micro-chen/qyoto
 public QPolygonF ToFillPolygon(QMatrix matrix)
 {
     return((QPolygonF)interceptor.Invoke("toFillPolygon#", "toFillPolygon(const QMatrix&) const", typeof(QPolygonF), typeof(QMatrix), matrix));
 }
コード例 #22
0
 public QImage Transformed(QMatrix matrix, Qt.TransformationMode mode)
 {
     return((QImage)interceptor.Invoke("transformed#$", "transformed(const QMatrix&, Qt::TransformationMode) const", typeof(QImage), typeof(QMatrix), matrix, typeof(Qt.TransformationMode), mode));
 }
コード例 #23
0
ファイル: QMatrix4x4.cs プロジェクト: 0xd34df00d/Qross
 public QMatrix4x4(QMatrix matrix)
     : this((Type) null)
 {
     CreateProxy();
     interceptor.Invoke("QMatrix4x4#", "QMatrix4x4(const QMatrix&)", typeof(void), typeof(QMatrix), matrix);
 }
コード例 #24
0
 public QImage Transformed(QMatrix matrix)
 {
     return((QImage)interceptor.Invoke("transformed#", "transformed(const QMatrix&) const", typeof(QImage), typeof(QMatrix), matrix));
 }
コード例 #25
0
ファイル: Qt.cs プロジェクト: KDE/qyoto
 public static QDataStream Write(QDataStream arg1, QMatrix arg2)
 {
     return (QDataStream) staticInterceptor.Invoke("operator<<##", "operator<<(QDataStream&, const QMatrix&)", typeof(QDataStream), typeof(QDataStream), arg1, typeof(QMatrix), arg2);
 }
コード例 #26
0
 public static QMatrix TrueMatrix(QMatrix arg1, int w, int h)
 {
     return((QMatrix)staticInterceptor.Invoke("trueMatrix#$$", "trueMatrix(const QMatrix&, int, int)", typeof(QMatrix), typeof(QMatrix), arg1, typeof(int), w, typeof(int), h));
 }
コード例 #27
0
ファイル: QGraphicsTextItem.cs プロジェクト: KDE/qyoto
 public void SetMatrix(QMatrix matrix)
 {
     interceptor.Invoke("setMatrix#", "setMatrix(const QMatrix&)", typeof(void), typeof(QMatrix), matrix);
 }
コード例 #28
0
 public QTransform(QMatrix mtx) : this((Type)null)
 {
     CreateProxy();
     interceptor.Invoke("QTransform#", "QTransform(const QMatrix&)", typeof(void), typeof(QMatrix), mtx);
 }