1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/* NSViewAnimation-test.m: NSViewAnimation Demo/Test
*
* Copyright (C) 2000 Free Software Foundation, Inc.
*
* Created : 2007-03-Mar
* Author : Xavier Glattard (xgl) <xavier.glattard@online.fr>
*
* This file is part of GNUstep.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <Foundation/Foundation.h>
#include <AppKit/AppKit.h>
#include "../GSTestProtocol.h"
//#define ANIMATION_MODE NSAnimationNonblocking
//#define ANIMATION_MODE NSAnimationBlocking
#define ANIMATION_MODE NSAnimationNonblockingThreaded
@interface NSViewAnimationTest: NSObject <GSTest>
{
NSWindow* win[3];
NSArray* animations;
NSViewAnimation* viewAnimation;
}
-(void) restart;
@end
@implementation NSViewAnimationTest
-(id) init
{
unsigned i;
for(i=0;i<3;i++)
win[i] = [[NSWindow alloc]
initWithContentRect: NSMakeRect(100+i*15,200+i*15,400,400)
styleMask: NSBorderlessWindowMask
| NSTitledWindowMask
| NSClosableWindowMask
| NSMiniaturizableWindowMask
backing: NSBackingStoreRetained
defer: YES
];
animations = [[NSArray alloc] initWithObjects:
[NSDictionary dictionaryWithObjectsAndKeys:
win[0], NSViewAnimationTargetKey,
[NSValue valueWithRect: NSMakeRect( 50,50,50,100 )], NSViewAnimationEndFrameKey,
nil],
[NSDictionary dictionaryWithObjectsAndKeys:
win[1], NSViewAnimationTargetKey,
[NSValue valueWithRect: NSMakeRect( 110,50,120,120 )], NSViewAnimationEndFrameKey,
nil],
[NSDictionary dictionaryWithObjectsAndKeys:
win[2], NSViewAnimationTargetKey,
[NSValue valueWithRect: NSMakeRect( 50,180,150,180 )], NSViewAnimationEndFrameKey,
nil],
nil];
viewAnimation = [[NSViewAnimation alloc] initWithViewAnimations: animations];
[viewAnimation setAnimationBlockingMode: ANIMATION_MODE];
[self restart];
return self;
}
-(void) dealloc
{
unsigned i;
for(i=0;i<3;i++)
RELEASE(win[i]);
RELEASE(animations);
RELEASE(viewAnimation);
[super dealloc];
}
-(void) restart
{
unsigned i;
for(i=0;i<3;i++)
{
[win[i] setFrame: NSMakeRect(100+i*15,200+i*15,400,400) display:YES];
[win[i] orderFront: nil];
[[NSApplication sharedApplication] addWindowsItem: win[i]
title: @"NSViewAnimation Test"
filename: NO];
}
[NSTimer scheduledTimerWithTimeInterval: 1.5
target: self
selector: @selector(animate)
userInfo: nil
repeats: NO];
}
- (void) animate
{
[viewAnimation startAnimation];
}
@end
|