mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 13:37:03 +00:00
XcodeCapp 4.0 is a major release of our beloved tool. In a nutshell it: - allows to manage multiple projects simultaneously - allows to follow operations and cancel them - has a per project Error and Warning reporting - supports capp_env as you can define additional paths and objj include path per project - much more things
27 lines
717 B
Objective-C
Executable File
27 lines
717 B
Objective-C
Executable File
//
|
|
// YRKSpinningProgressIndicator.h
|
|
//
|
|
// Copyright 2009 Kelan Champagne. All rights reserved.
|
|
//
|
|
|
|
@import Cocoa;
|
|
|
|
|
|
@interface YRKSpinningProgressIndicator : NSView
|
|
|
|
@property (nonatomic, copy) NSColor *color;
|
|
@property (nonatomic, copy) NSColor *backgroundColor;
|
|
@property (nonatomic, assign) BOOL drawsBackground;
|
|
|
|
@property (nonatomic, assign, getter=isDisplayedWhenStopped) BOOL displayedWhenStopped;
|
|
@property (nonatomic, assign) BOOL usesThreadedAnimation;
|
|
|
|
@property (nonatomic, assign, getter=isIndeterminate) BOOL indeterminate;
|
|
@property (nonatomic, assign) CGFloat currentValue;
|
|
@property (nonatomic, assign) CGFloat maxValue;
|
|
|
|
- (void)stopAnimation:(id)sender;
|
|
- (void)startAnimation:(id)sender;
|
|
|
|
@end
|