@@ -1827,6 +1827,35 @@ - (void)goAway {
1827
1827
[self release ] ; // Balances retain, above
1828
1828
}
1829
1829
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
+
1830
1859
#pragma mark * Public Methods for Getting Status
1831
1860
1832
1861
- (BOOL )modalSessionRunning {
@@ -1859,7 +1888,7 @@ - (NSCellStateValue)checkboxState {
1859
1888
// The value WINDOW_PROTOTYPE_HEIGHT = 486 places it at 900, 100 pixels from the
1860
1889
// bottom of the menu bar.
1861
1890
1862
- - init {
1891
+ - ( id ) init {
1863
1892
if (!NSApp || ([SSYProcessTyper currentType ] != SSYProcessTyperTypeForeground)) {
1864
1893
// See http://lists.apple.com/archives/Objc-language/2008/Sep/msg00133.html ...
1865
1894
// Actually, this is unsafe, as pointed out by Quincey Morris…
@@ -1911,6 +1940,7 @@ - (NSCellStateValue)checkboxState {
1911
1940
self.windowTopCenter = windowTopCenter_ ;
1912
1941
}
1913
1942
1943
+ // /*SSYDBL*/ NSLog(@"Created alert %p", self) ;
1914
1944
return self ;
1915
1945
}
1916
1946
@@ -2164,6 +2194,8 @@ + (NSInteger)runModalDialogTitle:(NSString*)title
2164
2194
#pragma mark * Basic Infrastructure
2165
2195
2166
2196
- (void )dealloc {
2197
+ [self stopObservingOtherWindowsToBecomeKey ] ;
2198
+
2167
2199
[icon release ] ;
2168
2200
[progressBar release ] ;
2169
2201
[titleTextView release ] ;
@@ -2181,7 +2213,8 @@ - (void)dealloc {
2181
2213
[buttonPrototype release ] ;
2182
2214
[wordAlert release ] ;
2183
2215
[documentWindow release ] ;
2184
-
2216
+ // /*SSYDBL*/ NSLog(@"Deallocced alert %p", self) ;
2217
+
2185
2218
[otherSubviews release ] ;
2186
2219
2187
2220
[clickTarget release ] ;
0 commit comments