diff options
Diffstat (limited to 'Source/SPTooltip.h')
-rw-r--r-- | Source/SPTooltip.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Source/SPTooltip.h b/Source/SPTooltip.h index f24e52c8..7dc37dbe 100644 --- a/Source/SPTooltip.h +++ b/Source/SPTooltip.h @@ -30,8 +30,22 @@ #import <WebKit/WebKit.h> -@interface SPTooltip : NSWindow { +@interface SPTooltip : NSWindow +{ + WebView* webView; + WebPreferences* webPreferences; + NSTimer* animationTimer; + NSDate* animationStart; + // ignore mouse moves for the next second + NSDate* didOpenAtDate; + + NSPoint mousePositionWhenOpened; + + NSString* SPTooltipPreferencesIdentifier; } ++ (void)showWithObject:(id)content ofType:(NSString *)type transparent:(BOOL)transparent; ++ (void)showWithObject:(id)content atLocation:(NSPoint)point ofType:(NSString *)type transparent:(BOOL)transparent; + @end |