상속: Object, IDisposable
예제 #1
0
파일: Qt.cs 프로젝트: KDE/qyoto
 public static QDataStream Write(QDataStream arg1, QLine arg2)
 {
     return (QDataStream) staticInterceptor.Invoke("operator<<##", "operator<<(QDataStream&, const QLine&)", typeof(QDataStream), typeof(QDataStream), arg1, typeof(QLine), arg2);
 }
예제 #2
0
파일: Qt.cs 프로젝트: KDE/qyoto
 public static QDBusArgument Write(QDBusArgument a, QLine line)
 {
     return (QDBusArgument) staticInterceptor.Invoke("operator<<##", "operator<<(QDBusArgument&, const QLine&)", typeof(QDBusArgument), typeof(QDBusArgument), a, typeof(QLine), line);
 }
예제 #3
0
파일: Qt.cs 프로젝트: KDE/qyoto
 public static QDataStream Read(QDataStream arg1, QLine arg2)
 {
     return (QDataStream) staticInterceptor.Invoke("operator>>##", "operator>>(QDataStream&, QLine&)", typeof(QDataStream), typeof(QDataStream), arg1, typeof(QLine), arg2);
 }
예제 #4
0
파일: Qt.cs 프로젝트: KDE/qyoto
 public static QDBusArgument Read(QDBusArgument a, QLine line)
 {
     return (QDBusArgument) staticInterceptor.Invoke("operator>>##", "operator>>(const QDBusArgument&, QLine&)", typeof(QDBusArgument), typeof(QDBusArgument), a, typeof(QLine), line);
 }
예제 #5
0
 public void DrawLines(QLine lines, int lineCount)
 {
     interceptor.Invoke("drawLines#$", "drawLines(const QLine*, int)", typeof(void), typeof(QLine), lines, typeof(int), lineCount);
 }
예제 #6
0
파일: QLineF.cs 프로젝트: KDE/qyoto
 public QLineF(QLine line)
     : this((Type) null)
 {
     CreateProxy();
     interceptor.Invoke("QLineF#", "QLineF(const QLine&)", typeof(void), typeof(QLine), line);
 }
예제 #7
0
 public void DrawLine(QLine line)
 {
     interceptor.Invoke("drawLine#", "drawLine(const QLine&)", typeof(void), typeof(QLine), line);
 }
예제 #8
0
파일: QLineF.cs 프로젝트: micro-chen/qyoto
 public QLineF(QLine line) : this((Type)null)
 {
     CreateProxy();
     interceptor.Invoke("QLineF#", "QLineF(const QLine&)", typeof(void), typeof(QLine), line);
 }
예제 #9
0
파일: QMatrix.cs 프로젝트: 0xd34df00d/Qross
 public QLine Map(QLine l)
 {
     return (QLine) interceptor.Invoke("map#", "map(const QLine&) const", typeof(QLine), typeof(QLine), l);
 }
예제 #10
0
 public virtual void DrawLines(QLine lines, int lineCount)
 {
     interceptor.Invoke("drawLines#$", "drawLines(const QLine*, int)", typeof(void), typeof(QLine), lines, typeof(int), lineCount);
 }
예제 #11
0
파일: QMatrix.cs 프로젝트: micro-chen/qyoto
 public QLine Map(QLine l)
 {
     return((QLine)interceptor.Invoke("map#", "map(const QLine&) const", typeof(QLine), typeof(QLine), l));
 }