summaryrefslogtreecommitdiff
path: root/cocoa/PSMTabBarControl/PSMProgressIndicator.m
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/PSMTabBarControl/PSMProgressIndicator.m')
-rw-r--r--cocoa/PSMTabBarControl/PSMProgressIndicator.m29
1 files changed, 21 insertions, 8 deletions
diff --git a/cocoa/PSMTabBarControl/PSMProgressIndicator.m b/cocoa/PSMTabBarControl/PSMProgressIndicator.m
index f79852a26..983609bbc 100644
--- a/cocoa/PSMTabBarControl/PSMProgressIndicator.m
+++ b/cocoa/PSMTabBarControl/PSMProgressIndicator.m
@@ -7,21 +7,34 @@
//
#import "PSMProgressIndicator.h"
+#import "PSMTabBarControl.h"
+
+@interface PSMTabBarControl (PSMProgressIndicatorExtensions)
+
+- (void)update;
+
+@end
@implementation PSMProgressIndicator
-// overrides to make tab bar control re-layout things if status changes
-- (void)setHidden:(BOOL)flag
+- (id) initWithFrame: (NSRect)frameRect;
{
- [super setHidden:flag];
- [(PSMTabBarControl *)[self superview] update];
+ if ((self = [super initWithFrame: frameRect]) == nil) return nil;
+ [self setControlSize: NSSmallControlSize];
+ return self;
}
-- (void)stopAnimation:(id)sender
-{
+// overrides to make tab bar control re-layout things if status changes
+- (void)setHidden:(BOOL)flag {
+ [super setHidden:flag];
+ [(PSMTabBarControl *)[self superview] update];
+}
+
+- (void)stopAnimation:(id)sender {
[NSObject cancelPreviousPerformRequestsWithTarget:self
- selector:@selector(startAnimation:)
- object:nil];
+ selector:@selector(startAnimation:)
+ object:nil];
[super stopAnimation:sender];
}
+
@end