Skip to content

Commit 1d2b8cb

Browse files
committed
Added method setGoAwayWhenAnotherWindowBecomesKey:
1 parent 2e1b05e commit 1d2b8cb

File tree

2 files changed

+45
-3
lines changed

2 files changed

+45
-3
lines changed

SSYAlert.h

+10-1
Original file line numberDiff line numberDiff line change
@@ -735,6 +735,15 @@ extern NSObject <SSYAlertErrorHideManager> * gSSYAlertErrorHideManager ;
735735
*/
736736
- (void)cleanSlate ;
737737

738+
/*!
739+
@brief Sets whether or not the receiver observes for a window other than
740+
its own to become key, and when so sends itself a -goAway message
741+
742+
@details Provides a loosely-coupled self-cleanup mechanism so that the
743+
receiver's window does not annoy the user. Value is NO by default.
744+
*/
745+
- (void)setGoAwayWhenAnotherWindowBecomesKey:(BOOL)yn ;
746+
738747
/*!
739748
@brief Sets the title of the receiver's window
740749
@@ -797,7 +806,7 @@ extern NSObject <SSYAlertErrorHideManager> * gSSYAlertErrorHideManager ;
797806

798807
/*!
799808
@brief Sets the title of the (rightmost) "default" button, the
800-
one whose key equivalent is \r.
809+
one whose key equivalent is \\r.
801810
@param title The desired button title, or nil.
802811
*/
803812
- (void)setButton1Title:(NSString*)title ;

SSYAlert.m

+35-2
Original file line numberDiff line numberDiff line change
@@ -1827,6 +1827,35 @@ - (void)goAway {
18271827
[self release] ; // Balances retain, above
18281828
}
18291829

1830+
- (void)someWindowDidBecomeKey:(NSNotification*)note {
1831+
if ([note object] != [self window]) {
1832+
[self goAway] ;
1833+
}
1834+
}
1835+
1836+
- (void)startObservingOtherWindowsToBecomeKey {
1837+
[[NSNotificationCenter defaultCenter] addObserver:self
1838+
selector:@selector(someWindowDidBecomeKey:)
1839+
name:NSWindowDidBecomeKeyNotification
1840+
object:nil] ;
1841+
}
1842+
1843+
- (void)stopObservingOtherWindowsToBecomeKey {
1844+
[[NSNotificationCenter defaultCenter] removeObserver:self
1845+
name:NSWindowDidBecomeKeyNotification
1846+
object:nil] ;
1847+
1848+
}
1849+
1850+
- (void)setGoAwayWhenAnotherWindowBecomesKey:(BOOL)yn {
1851+
if (yn) {
1852+
[self startObservingOtherWindowsToBecomeKey] ;
1853+
}
1854+
else {
1855+
[self stopObservingOtherWindowsToBecomeKey] ;
1856+
}
1857+
}
1858+
18301859
#pragma mark * Public Methods for Getting Status
18311860

18321861
- (BOOL)modalSessionRunning {
@@ -1859,7 +1888,7 @@ - (NSCellStateValue)checkboxState {
18591888
// The value WINDOW_PROTOTYPE_HEIGHT = 486 places it at 900, 100 pixels from the
18601889
// bottom of the menu bar.
18611890

1862-
- init {
1891+
- (id)init {
18631892
if (!NSApp || ([SSYProcessTyper currentType] != SSYProcessTyperTypeForeground)) {
18641893
// See http://lists.apple.com/archives/Objc-language/2008/Sep/msg00133.html ...
18651894
// Actually, this is unsafe, as pointed out by Quincey Morris…
@@ -1911,6 +1940,7 @@ - (NSCellStateValue)checkboxState {
19111940
self.windowTopCenter = windowTopCenter_ ;
19121941
}
19131942

1943+
///*SSYDBL*/ NSLog(@"Created alert %p", self) ;
19141944
return self ;
19151945
}
19161946

@@ -2164,6 +2194,8 @@ + (NSInteger)runModalDialogTitle:(NSString*)title
21642194
#pragma mark * Basic Infrastructure
21652195

21662196
- (void)dealloc {
2197+
[self stopObservingOtherWindowsToBecomeKey] ;
2198+
21672199
[icon release] ;
21682200
[progressBar release] ;
21692201
[titleTextView release] ;
@@ -2181,7 +2213,8 @@ - (void)dealloc {
21812213
[buttonPrototype release] ;
21822214
[wordAlert release] ;
21832215
[documentWindow release] ;
2184-
2216+
///*SSYDBL*/ NSLog(@"Deallocced alert %p", self) ;
2217+
21852218
[otherSubviews release] ;
21862219

21872220
[clickTarget release] ;

0 commit comments

Comments
 (0)