diff options
author | stuconnolly <stuart02@gmail.com> | 2010-11-09 18:19:12 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-11-09 18:19:12 +0000 |
commit | 1af63b378e644ceef6e26918b0a1d693bcc232f8 (patch) | |
tree | 8bbf8a8e07266bbff51d35dca1d89a0c41c97016 /Source/SPConnectionControllerDelegate.h | |
parent | d10ca821ae2f3ab62daf92f5e9bde58bf796e36c (diff) | |
download | sequelpro-1af63b378e644ceef6e26918b0a1d693bcc232f8.tar.gz sequelpro-1af63b378e644ceef6e26918b0a1d693bcc232f8.tar.bz2 sequelpro-1af63b378e644ceef6e26918b0a1d693bcc232f8.zip |
First changes towards changing the initial connection view's favorites table list to an outline view in order to support grouping favorites. Future changes include creating a favorites data controller, including migrating favorites storage to their own plist in the app support directory as well as support for grouping favorites.
Diffstat (limited to 'Source/SPConnectionControllerDelegate.h')
-rw-r--r-- | Source/SPConnectionControllerDelegate.h | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/Source/SPConnectionControllerDelegate.h b/Source/SPConnectionControllerDelegate.h index dc5e8a45..0a7323cb 100644 --- a/Source/SPConnectionControllerDelegate.h +++ b/Source/SPConnectionControllerDelegate.h @@ -24,26 +24,12 @@ // More info at <http://code.google.com/p/sequel-pro/> /** - * @protocol SPConnectionControllerDelegate SPConnectionControllerDelegate.h + * @category SPConnectionControllerDelegate SPConnectionControllerDelegate.h * * @author Stuart Connolly http://stuconnolly.com/ * - * Connection controller delegate protocol. + * Connection controller delegate/data source category. */ -@protocol SPConnectionControllerDelegate - -/** - * Called when the connection controller starts initiating the connection process. - * - * @param controller The calling connection controller - */ -- (void)connectionControllerInitiatingConnection:(id)controller; - -/** - * Called when the connection controller's connection attempt failed. - * - * @param controller The calling connection controller - */ -- (void)connectionControllerConnectAttemptFailed:(id)controller; +@implementation SPConnectionController (SPConnectionControllerDelegate) @end |