Examples of QDRect


Examples of quicktime.qd.QDRect

/*     */
/*     */   /** @deprecated */
/*     */   public Dimension getInitialSize()
/*     */     throws QTException
/*     */   {
/* 319 */     QDRect localQDRect = this.mSpriteGWorld.getPortRect();
/* 320 */     return new Dimension(localQDRect.getWidth(), localQDRect.getHeight());
/*     */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*      */   }
/*      */
/*      */   private void init()
/*      */     throws StdQTException
/*      */   {
/*  404 */     QDRect localQDRect = getBounds();
/*  405 */     localQDRect.setX(0);
/*  406 */     localQDRect.setY(0);
/*  407 */     setBounds(localQDRect);
/*      */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*      */   }
/*      */
/*      */   public QDRect getNaturalBoundsRect()
/*      */     throws StdQTException
/*      */   {
/*  760 */     QDRect localQDRect = new QDRect();
/*  761 */     GetMovieNaturalBoundsRect(_ID(), localQDRect.getRect());
/*  762 */     StdQTException.checkError(GetMoviesError());
/*  763 */     return localQDRect;
/*      */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*      */   }
/*      */
/*      */   public QDRect getPosterBox()
/*      */     throws StdQTException
/*      */   {
/* 2033 */     QDRect localQDRect = new QDRect();
/* 2034 */     GetPosterBox(_ID(), localQDRect.getRect());
/* 2035 */     StdQTException.checkError(GetMoviesError());
/* 2036 */     return localQDRect;
/*      */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*     */   }
/*     */
/*     */   public final QDRect getDefaultSourceRect()
/*     */     throws QTException
/*     */   {
/* 766 */     QDRect localQDRect = new QDRect();
/* 767 */     int i = GraphicsImportGetDefaultSourceRect(_ID(), localQDRect.getBytes());
/* 768 */     return localQDRect;
/*     */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*     */   }
/*     */
/*     */   public final QDRect getDestRect()
/*     */     throws QTException
/*     */   {
/* 787 */     QDRect localQDRect = new QDRect();
/* 788 */     int i = GraphicsImportGetDestRect(_ID(), localQDRect.getBytes());
/* 789 */     return localQDRect;
/*     */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*     */   }
/*     */
/*     */   public QDRect getCurrentMoviePropertyNaturalBounds()
/*     */     throws StdQTException
/*     */   {
/*  72 */     QDRect localQDRect = new QDRect();
/*  73 */     int i = MovieMediaGetCurrentMovieProperty(_ID(), 1851880546, localQDRect.getRect());
/*  74 */     StdQTException.checkError(i);
/*  75 */     return localQDRect;
/*     */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*  81 */     int[] arrayOfInt2 = { 0 };
/*  82 */     int[] arrayOfInt3 = { 0 };
/*  83 */     int[] arrayOfInt4 = { 0 };
/*  84 */     int i = FlashMediaGetRefConBounds(_ID(), paramInt, arrayOfInt1, arrayOfInt2, arrayOfInt3, arrayOfInt4);
/*  85 */     StdQTException.checkError(i);
/*  86 */     return new QDRect(arrayOfInt1[0], arrayOfInt2[0], arrayOfInt3[0] - arrayOfInt1[0], arrayOfInt4[0] - arrayOfInt2[0]);
/*     */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*     */   }
/*     */   public int getHeight() {
/* 403 */     return getShortAt(34);
/*     */   }
/*     */   public QDRect getBounds() {
/* 406 */     return new QDRect(0, 0, getShortAt(32), getShortAt(34));
/*     */   }
View Full Code Here

Examples of quicktime.qd.QDRect

/*     */   }
/*     */
/*     */   private void setWidthHeight(QDGraphics paramQDGraphics)
/*     */   {
/*  72 */     synchronized (QTNative.globalsLock) {
/*  73 */       QDRect localQDRect = paramQDGraphics.getPortRect();
/*  74 */       this.mWidth = localQDRect.getWidth();
/*  75 */       this.mHeight = localQDRect.getHeight();
/*     */     }
/*     */   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.