diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-11-19 10:29:42 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-11-19 10:29:42 +0000 |
commit | b5c4f326fb175499d0b837cb325b9eeea676fb4f (patch) | |
tree | 2b6509d5f45011920ac87e6e180aa7de56534ea6 /Source/SPTooltip.m | |
parent | ad92dcb5b130b6543db0b85c322984f521c9ad0c (diff) | |
download | sequelpro-b5c4f326fb175499d0b837cb325b9eeea676fb4f.tar.gz sequelpro-b5c4f326fb175499d0b837cb325b9eeea676fb4f.tar.bz2 sequelpro-b5c4f326fb175499d0b837cb325b9eeea676fb4f.zip |
• Bundle Editor
- fixed saving and duplicating Bundles if Bundle contains other files/folder
- fixed adding a new Bundle
- added gui tooltips
• SPTooltip
- if no location was passed and first responder isn't a textView show the tooltip at the mouse location
• CopyTable
- show tooltip invoked by a Bundle command always at mouse location
• Content / Custom Query Table
- suppress tooltip of cell content if another tooltip (mainly displayed by a Bundle) is visible [shoudl be improved since iterating through the window list isn't so good]
Diffstat (limited to 'Source/SPTooltip.m')
-rw-r--r-- | Source/SPTooltip.m | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Source/SPTooltip.m b/Source/SPTooltip.m index f35dc155..e1cccbf9 100644 --- a/Source/SPTooltip.m +++ b/Source/SPTooltip.m @@ -268,10 +268,13 @@ static CGFloat slow_in_out (CGFloat t) return pos; // Otherwise return the upper left corner of the current keyWindow } else { - pos = [[NSApp keyWindow] frame].origin; - pos.x += 5; - pos.y += [[NSApp keyWindow] frame].size.height - 23; + pos = [NSEvent mouseLocation]; + pos.y -= 16; return pos; + // pos = [[NSApp keyWindow] frame].origin; + // pos.x += 5; + // pos.y += [[NSApp keyWindow] frame].size.height - 23; + // return pos; } } @@ -280,6 +283,7 @@ static CGFloat slow_in_out (CGFloat t) // =========== - (void)setContent:(NSString *)content withOptions:(NSDictionary *)displayOptions { + NSString *fullContent = @"<html>" @"<head>" @" <style type='text/css' media='screen'>" @@ -303,6 +307,7 @@ static CGFloat slow_in_out (CGFloat t) fullContent = [NSString stringWithFormat:fullContent, transparent ? @"transparent" : bgColor, content]; [[webView mainFrame] loadHTMLString:fullContent baseURL:nil]; + } - (void)sizeToContent |