aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPConnectionController.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-11-11 22:51:40 +0000
committerstuconnolly <stuart02@gmail.com>2009-11-11 22:51:40 +0000
commit876432a34ce9e99c45b16a2d42df5a0af8baec2c (patch)
tree7975276f6e55e829c54a72d1cb087ca824ec30ac /Source/SPConnectionController.m
parentf3ebf339d5649b25a75b65295e52c760751b690c (diff)
downloadsequelpro-876432a34ce9e99c45b16a2d42df5a0af8baec2c.tar.gz
sequelpro-876432a34ce9e99c45b16a2d42df5a0af8baec2c.tar.bz2
sequelpro-876432a34ce9e99c45b16a2d42df5a0af8baec2c.zip
Change the main window's non-connected/connecting state title to 'Sequel Pro' and only change it to 'Connecting...' when we are actually trying to establish a connection. Fixes issue #456.
Diffstat (limited to 'Source/SPConnectionController.m')
-rw-r--r--Source/SPConnectionController.m15
1 files changed, 13 insertions, 2 deletions
diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m
index fb357f17..8299e024 100644
--- a/Source/SPConnectionController.m
+++ b/Source/SPConnectionController.m
@@ -32,6 +32,7 @@
@implementation SPConnectionController
+@synthesize delegate;
@synthesize type;
@synthesize name;
@synthesize host;
@@ -146,7 +147,7 @@
* connection proxies in use.
*/
- (IBAction)initiateConnection:(id)sender
-{
+{
// Ensure that host is not empty if this is a TCP/IP or SSH connection
if (([self type] == SP_CONNECTION_TCPIP || [self type] == SP_CONNECTION_SSHTUNNEL) && ![[self host] length]) {
NSRunAlertPanel(NSLocalizedString(@"Insufficient connection details", @"insufficient details message"), NSLocalizedString(@"Insufficient details provided to establish a connection. Please provide at least a host.", @"insufficient details informative message"), NSLocalizedString(@"OK", @"OK button"), nil, nil);
@@ -161,7 +162,7 @@
// Ensure that a socket connection is not inadvertently used
if (![self checkHost]) return;
-
+
// Basic details have validated - start the connection process animating
[addToFavoritesButton setHidden:YES];
[helpButton setHidden:YES];
@@ -193,6 +194,11 @@
[connectionSSHKeychainItemAccount release], connectionSSHKeychainItemAccount = nil;
}
}
+
+ // Inform the delegate that we are starting the connection process
+ if (delegate && [delegate respondsToSelector:@selector(connectionControllerInitiatingConnection:)]) {
+ [delegate connectionControllerInitiatingConnection:self];
+ }
// Initiate the SSH connection process for tunnels
if ([self type] == SP_CONNECTION_SSHTUNNEL) {
@@ -395,6 +401,11 @@
}
if (errorDetail) [errorDetailText setString:errorDetail];
+
+ // Inform the delegate that the connection attempt failed
+ if (delegate && [delegate respondsToSelector:@selector(connectionControllerConnectAttemptFailed:)]) {
+ [delegate connectionControllerConnectAttemptFailed:self];
+ }
// Display the connection error message
NSBeginAlertSheet(theTitle, NSLocalizedString(@"OK", @"OK button"), (errorDetail) ? NSLocalizedString(@"Show Detail", @"Show detail button") : nil, (isSSHTunnelBindError) ? NSLocalizedString(@"Use Standard Connection", @"use standard connection button") : nil, documentWindow, self, nil, @selector(errorSheetDidEnd:returnCode:contextInfo:), @"connect", theErrorMessage);