Searched refs:currentFrame (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/test/java/awt/DataFlavor/MissedHtmlAndRtfBug/
H A DNextFramePositionCalculator.java6 private final Frame currentFrame; field in class:NextFramePositionCalculator
8 public NextFramePositionCalculator(Frame currentFrame) { argument
9 this.currentFrame = currentFrame;
13 return currentFrame.getX() + currentFrame.getWidth();
17 return currentFrame.getY();
/openjdk7/jdk/test/java/awt/datatransfer/DragUnicodeBetweenJVMTest/
H A DNextFramePositionCalculator.java29 private final Frame currentFrame; field in class:NextFramePositionCalculator
31 public NextFramePositionCalculator (Frame currentFrame) { argument
32 this.currentFrame = currentFrame;
36 return currentFrame.getX()+currentFrame.getWidth();
40 return currentFrame.getY();
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsDesktopManager.java63 JInternalFrame currentFrame = currentFrameRef != null ?
67 if (currentFrame != null && f != currentFrame) {
70 if (currentFrame.isMaximum() &&
76 if (!currentFrame.isIcon()) {
77 currentFrame.setMaximum(false);
89 if (currentFrame.isSelected()) {
90 currentFrame.setSelected(false);
98 if (f != currentFrame) {
H A DWindowsProgressBarUI.java251 int currentFrame = getAnimationIndex();
256 currentFrame = currentFrame % framecount;
272 rect.x = (int)(delta * currentFrame) + ins.left;
279 rect.y = (int)(delta * currentFrame) + ins.top;
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_impl.c38 splash.currentFrame = -1;
61 splash->currentFrame = -1;
85 splash->currentFrame = -1;
114 if (splash->currentFrame < 0)
117 splash->currentFrame + 1 < splash->frameCount;
127 splash->frames[splash->currentFrame].bitmapBits, &splash->imageFormat);
149 if (splash->currentFrame < 0)
154 splash->time += splash->frames[splash->currentFrame].delay;
155 if (++splash->currentFrame >= splash->frameCount) {
156 splash->currentFrame
[all...]
H A Dsplashscreen_impl.h73 int currentFrame; // currentFrame==-1 means image is not loaded member in struct:Splash
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DContextManager.java169 Integer currentFrame = (Integer)tinfo.getUserObject();
170 if (currentFrame == null) {
173 return currentFrame.intValue();
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m284 timeout = splash->time + splash->frames[splash->currentFrame].delay
294 splash->frames[splash->currentFrame].delay) {
340 splash->currentFrame = 0;
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c148 if (splash->currentFrame < 0 || splash->currentFrame >= splash->frameCount)
274 CombineRgn(hRgn, splash->frames[splash->currentFrame].hRgn,
275 splash->frames[splash->currentFrame].hRgn, RGN_COPY);
300 splash->frames[splash->currentFrame].delay - SplashTime();
525 splash->currentFrame = 0;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DVariableStack.java223 * @param currentFrame The current frame to set to
226 public void unlink(int currentFrame) argument
229 _currentFrameBottom = currentFrame;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicProgressBarUI.java441 int currentFrame = getAnimationIndex();
457 //assert currentFrame >= 0 && currentFrame < numFrames
459 if (currentFrame < middleFrame) {
461 + (int)Math.round(delta * (double)currentFrame);
465 (currentFrame - middleFrame));
468 if (currentFrame < middleFrame) {
470 + (int)Math.round(delta * currentFrame);
474 (currentFrame - middleFrame));
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c290 splash->frames[splash->currentFrame].rects,
291 splash->frames[splash->currentFrame].numRects, ShapeSet, YXBanded);
293 0, 0, splash->frames[splash->currentFrame].rects,
294 splash->frames[splash->currentFrame].numRects, ShapeSet, YXBanded);
571 timeout = splash->time + splash->frames[splash->currentFrame].delay
581 splash->frames[splash->currentFrame].delay) {
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTWindow.m149 NSRect currentFrame = [self.nsWindow frame];
150 [self.nsWindow setMinSize:currentFrame.size];
151 [self.nsWindow setMaxSize:currentFrame.size];

Completed in 411 milliseconds