summaryrefslogtreecommitdiff
path: root/cocoa/PSMTabBarControl/PSMRolloverButton.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/PSMTabBarControl/PSMRolloverButton.h')
-rw-r--r--cocoa/PSMTabBarControl/PSMRolloverButton.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/cocoa/PSMTabBarControl/PSMRolloverButton.h b/cocoa/PSMTabBarControl/PSMRolloverButton.h
new file mode 100644
index 000000000..d78b47c27
--- /dev/null
+++ b/cocoa/PSMTabBarControl/PSMRolloverButton.h
@@ -0,0 +1,29 @@
+//
+// PSMOverflowPopUpButton.h
+// NetScrape
+//
+// Created by John Pannell on 8/4/04.
+// Copyright 2004 Positive Spin Media. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@interface PSMRolloverButton : NSButton
+{
+ NSImage *_rolloverImage;
+ NSImage *_usualImage;
+ NSTrackingRectTag _myTrackingRectTag;
+}
+
+// the regular image
+- (void)setUsualImage:(NSImage *)newImage;
+- (NSImage *)usualImage;
+
+// the rollover image
+- (void)setRolloverImage:(NSImage *)newImage;
+- (NSImage *)rolloverImage;
+
+// tracking rect for mouse events
+- (void)addTrackingRect;
+- (void)removeTrackingRect;
+@end \ No newline at end of file