diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-12-12 13:32:48 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-12-12 13:32:48 +0000 |
commit | e8f4c4a9e16b0747647cc914c13d7597800b108d (patch) | |
tree | de3b19850afe7b07c5d84e0321e5bbb63fde8877 /Source/SPConstants.h | |
parent | e3a67c9070a9c331c68503be481a6eda18402d96 (diff) | |
download | sequelpro-e8f4c4a9e16b0747647cc914c13d7597800b108d.tar.gz sequelpro-e8f4c4a9e16b0747647cc914c13d7597800b108d.tar.bz2 sequelpro-e8f4c4a9e16b0747647cc914c13d7597800b108d.zip |
• HTML output window's JavaScript support
- changed the approach to make the HTML output window the key window; now it could be done directly via a JavaScript command: window.system.makeHTMLOutputWindowKeyWindow()
- added the chance to ask Sequel Pro via JavaScript for run-time shell variables via window.system.getShellEnvironmentForName('shell_var_name')
• more usage of constants
Diffstat (limited to 'Source/SPConstants.h')
-rw-r--r-- | Source/SPConstants.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/SPConstants.h b/Source/SPConstants.h index d6a0ee5f..804a067f 100644 --- a/Source/SPConstants.h +++ b/Source/SPConstants.h @@ -507,6 +507,11 @@ extern NSString *SPBundleShellVariableCurrentEditedColumnName; extern NSString *SPBundleShellVariableSelectedTable; extern NSString *SPBundleShellVariableCurrentEditedTable; extern NSString *SPBundleShellVariableDataTableSource; +extern NSString *SPBundleShellVariableCurrentQuery; +extern NSString *SPBundleShellVariableSelectedText; +extern NSString *SPBundleShellVariableCurrentWord; +extern NSString *SPBundleShellVariableCurrentLine; +extern NSString *SPBundleShellVariableSelectedRowIndices; extern const NSInteger SPBundleRedirectActionNone; extern const NSInteger SPBundleRedirectActionReplaceSection; |