Package quicktime

Examples of quicktime.QTRuntimeException


/* 237 */     if (this.canv == null) return;
/*     */
/* 240 */     this.offscreenImage = this.canv.createImage(this.mSize.width, this.mSize.height);
/*     */
/* 242 */     if (this.offscreenImage == null) {
/* 243 */       QTRuntimeException.handleOrThrow(new QTRuntimeException("must have a valid offscreen image"), this.canv, "createImage");
/* 244 */       return;
/*     */     }
/* 246 */     if (this.singleFrameFlag == 6) {
/* 247 */       this.offscreenGraphics = this.offscreenImage.getGraphics();
/*     */     }
/*     */     try
/*     */     {
/* 251 */       ImageDescription localImageDescription = ImageDescription.getJavaDefaultPixelDescription(this.mSize.width, this.mSize.height);
/* 252 */       this.iData = new IntEncodedImage(this.mSize.width * this.mSize.height);
/*     */
/* 254 */       localImageDescription.setDataSize(this.iData.getSize());
/*     */
/* 256 */       this.image.setImageData(this.iData, localImageDescription);
/* 257 */       this.painter.newSizeNotified(this, this.mSize);
/* 258 */       if ((this.painter instanceof JImagePainter))
/* 259 */         ((JImagePainter)this.painter).prepareImage(this.canv);
/* 260 */       prepaint();
/* 261 */       if ((!this.interruptedGrab) && (isSingleFrame()))
/* 262 */         doSingleFrame();
/*     */     }
/*     */     catch (QTException localQTException) {
/* 265 */       QTRuntimeException.handleOrThrow(new QTRuntimeException(localQTException), this, "addedTo");
/*     */     }
/*     */   }
View Full Code Here


/*     */   {
/*  41 */     super(38);
/*     */     try {
/*  43 */       this.realObject = new QTPointer(38, true);
/*     */     } catch (QTException localQTException) {
/*  45 */       throw new QTRuntimeException(localQTException);
/*     */     }
/*  47 */     setIntAt(0, QTObject.ID(paramSPBDevice));
/*  48 */     setIntInPointer(QTObject.ID(this.realObject), 0, QTObject.ID(paramSPBDevice));
/*     */
/*  50 */     setIntAt(12, paramQTPointerRef.getSize());
View Full Code Here

/* 447 */           Region localRegion2 = new Region(localQTDrawable.getDisplayBounds());
/* 448 */           Region localRegion3 = localRegion1.union(localRegion2).diff(localRegion2);
/* 449 */           if (!localRegion3.empty())
/* 450 */             this.drawSpace.redrawMember(localQTDrawable, localRegion3);
/*     */         } catch (QTException localQTException) {
/* 452 */           QTRuntimeException.handleOrThrow(new QTRuntimeException(localQTException), this, "mouseDragged");
/*     */         }
/*     */       else {
/* 455 */         this.mouseMoveListener.mouseDragged(paramQTMouseEvent);
/*     */       }
/*     */     }
View Full Code Here

/*     */         }
/*     */
/* 705 */         return localObject;
/*     */       }
/*     */       catch (QTException localQTException) {
/* 708 */         QTRuntimeException.handleOrThrow(new QTRuntimeException(localQTException), this.displaySpace, "getDisplayBounds");
/*     */       }
/*     */     }
/* 711 */     return null;
/*     */   }
View Full Code Here

/*     */     {
/*  86 */       this.transformer.initialize((QTDisplaySpace)paramQTMouseEvent.getSource(), (Transformable)paramQTMouseEvent.getTarget(), paramQTMouseEvent.getX(), paramQTMouseEvent.getY());
/*     */     }
/*     */     catch (QTException localQTException)
/*     */     {
/*  91 */       QTRuntimeException.handleOrThrow(new QTRuntimeException(localQTException), this, "mousePressed");
/*     */     }
/*     */   }
View Full Code Here

/*     */     try
/*     */     {
/* 103 */       if ((this.transformer.transformTarget(paramQTMouseEvent.getX(), paramQTMouseEvent.getY())) && (this.actor != null))
/* 104 */         this.actor.trigger();
/*     */     } catch (QTException localQTException) {
/* 106 */       QTRuntimeException.handleOrThrow(new QTRuntimeException(localQTException), this, "mouseDragged");
/*     */     }
/*     */   }
View Full Code Here

/* 139 */           if (!this.group.hasMember(this.current))
/* 140 */             deactivateResponder();
/*     */         }
/*     */       }
/*     */     } catch (QTException localQTException) {
/* 144 */       QTRuntimeException.handleOrThrow(new QTRuntimeException(localQTException), this, "mouseDragged");
/*     */     }
/*     */   }
View Full Code Here

/* 270 */         if (paramInt == 0)
/*     */           try {
/* 272 */             paramMovie.preroll(paramMovie.getTime(), this.r);
/* 273 */             paramMovie.setRate(this.r);
/*     */           } catch (QTException localQTException) {
/* 275 */             QTRuntimeException.handleOrThrow(new QTRuntimeException(localQTException), paramMovie, "preroll");
/*     */           }
/*     */         else
/* 278 */           QTRuntimeException.handleOrThrow(new QTRuntimeException(paramInt), paramMovie, "prePreroll");
/*     */       }
/*     */     }
View Full Code Here

/* 703 */         if (localContainer != null)
/* 704 */           localContainer.repaint();
/*     */       }
/*     */     }
/*     */     catch (QTException localQTException) {
/* 708 */       QTRuntimeException.handleOrThrow(new QTRuntimeException(localQTException), this.qtcHelper, "setGWorld");
/*     */     }
/*     */   }
View Full Code Here

/*     */           }
/* 762 */           QTSession.addActiveCanvas(this);
/*     */         }
/*     */       } catch (QTException localQTException) {
/* 765 */         this.qtcHelper.doRemoveClient();
/* 766 */         throw new QTRuntimeException(localQTException);
/*     */       }
/* 768 */       this.addDone = true;
/*     */     }
/*     */   }
View Full Code Here

TOP

Related Classes of quicktime.QTRuntimeException

Copyright © 2018 www.massapicom. 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.