Skip to content

Commit d45ba44

Browse files
committed
Before moving View Controllers into Content.xib, Settings.xib, Reports.xib
1 parent 8ea3681 commit d45ba44

5 files changed

+95
-35
lines changed

SSYHierarchicalTabViewItem.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ extern NSString* const constDiscontiguousTabViewHierarchyString ;
4444
receiver's identifier appended.
4545
*/
4646
- (BOOL)isDeeplySelected ;
47-
47+
#warning The 'unfortunately' above is not true because -superview returns the tab view (Not the item, but at least it's something)
4848
@end

SSYHierarchicalTabViewItem.m

+34-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,33 @@ - (NSTabViewItem*)selectedChild {
1616
break ;
1717
}
1818
}
19+
20+
// The following code seems to have been a good guess. That is,
21+
// it seems to work, but I haven't really thought it through.
22+
// The idea is that it can reach down to find a tab view through, I
23+
// think, one level of NSView subview. I need this for the topTabView
24+
// in BookMacster. This "feature" is not explained in the header doc.
25+
if (!selectedChild) {
26+
for (NSView* subview in [[self view] subviews]) {
27+
// NSLog(@"2 Considering subview %@", subview) ;
28+
if ([subview respondsToSelector:@selector(subviews)]) {
29+
for (NSTabView* innerSubview in [subview subviews]) {
30+
// NSLog(@"3 Considering innerSubview %@", innerSubview) ;
31+
if ([innerSubview isKindOfClass:[NSTabView class]]) {
32+
selectedChild = [innerSubview selectedTabViewItem] ;
33+
// Note that we consider only the *first* subview which is an
34+
// NSTabView. For this method to make sense, this must also be the
35+
// *only* subview which is an NSTabViewItem.
36+
break ;
37+
}
38+
}
39+
}
40+
41+
if (selectedChild) {
42+
break ;
43+
}
44+
}
45+
}
1946

2047
return selectedChild ;
2148
}
@@ -24,16 +51,20 @@ - (NSTabViewItem*)selectedLeafmostTabViewItem {
2451
NSTabViewItem* leafItem = self ;
2552
NSTabViewItem* selectedChild = nil ;
2653
do {
54+
// This is in case the leaf item in a tree of SSYHierarchicalTabViewItem
55+
// objects is not itself a class descendant of
56+
// SSYHierarchicalTabViewItem. It is also for safety,
57+
// in case someone sends this message to a tab view item
58+
// which is not or does not inherit from this class.
2759
if (![leafItem respondsToSelector:@selector(selectedChild)]) {
2860
break ;
2961
}
3062

3163
selectedChild = [(SSYHierarchicalTabViewItem*)leafItem selectedChild] ;
32-
if (selectedChild) {
64+
if ([selectedChild isKindOfClass:[NSTabViewItem class]]) {
3365
leafItem = selectedChild ;
3466
}
3567
} while (selectedChild != nil) ;
36-
/*SSYDBL*/ NSLog(@"<< %s returning leaf = %@ for %@", __PRETTY_FUNCTION__, [leafItem identifier], [self identifier]) ;
3768

3869
return leafItem ;
3970
}
@@ -65,7 +96,7 @@ - (BOOL)isDeeplySelected {
6596
[self identifier]) ;
6697
}
6798
}
68-
/*SSYDBL*/ NSLog(@"<< %s is returning %hhd for %@", __PRETTY_FUNCTION__, answer, [self identifier]) ;
99+
// NSLog(@"<< %s is returning %hhd for %@", __PRETTY_FUNCTION__, answer, [self identifier]) ;
69100

70101
return answer ;
71102
}

SSYLazyView.h

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
@class SSYExtrospectiveViewController ;
44

5+
/*
6+
@details
7+
8+
In the Xcode xib editor, you may have one or more initial placeholder subviews
9+
in your Lazy View. For example, you may place a text field with large
10+
font size that says "Loading Stuff…". All of these placeholder subviews
11+
will be removed when the new view is placed in.
12+
*/
513
@interface SSYLazyView : NSView {
614
SSYExtrospectiveViewController* m_viewController ;
715
BOOL m_isLoaded ;
@@ -32,6 +40,6 @@
3240
@brief Creates the receiver's view controller and loads the receiver's
3341
view, or if these things have not already been done, no op.
3442
*/
35-
- (void)load ;
43+
- (void)loadInWindow:(NSWindow*)window ;
3644

3745
@end

SSYLazyView.m

+51-13
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ @implementation SSYLazyView
99
- (id)initWithFrame:(NSRect)frame {
1010
self = [super initWithFrame:frame] ;
1111
if (self) {
12+
/*SSYDBL*/ NSLog(@"%@ did init", self) ;
1213
// Initialization code here.
1314
}
1415

@@ -23,43 +24,80 @@ + (NSString*)lazyNibName {
2324
return @"Internal Error 939-7834" ;
2425
}
2526

26-
- (void)load {
27-
#if 11
28-
#warning Not loading any tabs
29-
return ;
30-
#endif
31-
if ([self isLoaded]) {
27+
- (void)loadInWindow:(NSWindow*)window {
28+
if ([self isLoaded]) {
3229
return ;
3330
}
3431

3532
NSString* nibName = [[self class] lazyNibName] ;
3633
Class viewControllerClass = [[self class] lazyViewControllerClass] ;
3734
SSYExtrospectiveViewController* viewCon = [(SSYExtrospectiveViewController*)[viewControllerClass alloc] initWithNibName:nibName
3835
bundle:nil] ;
39-
/*SSYDBL*/ NSLog(@"%@ will load nib %@ and instantiate %@", [self className], nibName, [viewCon className]) ;
4036
[self setViewController:viewCon] ;
41-
[viewCon setWindow:[self window]] ; // experimental
42-
// /*SSYDBL*/ NSLog(@"7651 %@ has view %@ in window %@", viewCon, [viewCon view], [viewCon window]) ;
37+
[viewCon setWindow:window] ; // experimental
4338
[viewCon release] ;
4439
[viewCon loadView] ;
4540

46-
[self addSubview:[viewCon view]] ;
41+
// Remove any placeholder subviews. In BookMacster, there are two…
42+
// (0) An SSYSizeFixxerSubview.
43+
// (1) A text field with a string that says "Loading <Something>…"
44+
NSInteger nSubviews = [[self subviews] count] ;
45+
for (NSInteger i=(nSubviews-1); i>=0; i--) {
46+
NSView* subview = [[self subviews] objectAtIndex:i] ;
47+
[subview removeFromSuperviewWithoutNeedingDisplay] ;
48+
}
49+
50+
// Resize the incoming new view
51+
NSView* newView = [viewCon view] ;
52+
NSRect frame = NSMakeRect(
53+
[newView frame].origin.x,
54+
[newView frame].origin.y,
55+
[self frame].size.width,
56+
[self frame].size.height
57+
) ;
58+
[newView setFrame:frame] ;
59+
60+
// Place the incoming new view.
61+
[self addSubview:newView] ;
62+
[self display] ;
63+
64+
#if 0
65+
/*
66+
I considered actually swapping in [viewCon view] in place of the
67+
receiver, and allowing the receiver to be released and deallocced.
68+
But that is too messy because not only does the tab view item need
69+
to get a new view, but the outlet to this Lazy View, needed for other
70+
purposes, from the window controller, would need to be rewired.
71+
Before realizing that this was approach was the more problematic,
72+
I solved the first problem, but not the second, by doing this…
73+
*/
74+
if (parentTabViewItem) {
75+
// parentTabViewItem is an outlet. (More mess)
76+
[parentTabViewItem setView:[viewCon view]] ;
77+
}
78+
else {
79+
NSView* superview = [self superview] ;
80+
[superview addSubview:[viewCon view]] ;
81+
}
82+
#endif
4783

4884
[self setIsLoaded:YES] ;
4985
}
5086

5187
- (void)viewDidMoveToWindow {
88+
/*SSYDBL*/ NSLog(@"%@ did move to window", self) ;
5289
[super viewDidMoveToWindow] ;
5390

5491
#if 11
55-
#define LAZY_LOAD_DELAY 1.0
92+
#define LAZY_LOAD_DELAY 0.0
5693
#endif
57-
[self performSelector:@selector(load)
58-
withObject:nil
94+
[self performSelector:@selector(loadInWindow:)
95+
withObject:[self window]
5996
afterDelay:LAZY_LOAD_DELAY] ;
6097
}
6198

6299
- (void)dealloc {
100+
/*SSYDBL*/ NSLog(@"%@ is dealloccing", self) ;
63101
[m_viewController release] ;
64102

65103
[super dealloc] ;

SSYTabView.m

-17
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,6 @@ - (void)setSelectedTabIndex:(NSInteger)selectedTabIndex {
5151
// overrides below.
5252
m_lockOutInfiniteLoop = YES ;
5353
[super selectTabViewItemAtIndex:selectedTabIndex] ;
54-
/*SSYDBL*/ NSLog(@"Did select tab view item by index %ld", (long)selectedTabIndex) ;
55-
#if 11
56-
#warning Doing More
57-
NSTabViewItem* item = [[self tabViewItems] objectAtIndex:selectedTabIndex] ;
58-
[super selectTabViewItem:item] ;
59-
/*SSYDBL*/ NSLog(@"Did select tab view item by item %@", item) ;
60-
NSString* selectedIdentifier = [item identifier] ;
61-
[super selectTabViewItemWithIdentifier:selectedIdentifier] ;
62-
/*SSYDBL*/ NSLog(@"Did select tab view item by identifier %@", selectedIdentifier) ;
63-
#endif
6454

6555
// When the above message invokes any of the methods we have
6656
// overridden below, they'll route to super too.
@@ -73,7 +63,6 @@ - (void)setSelectedTabIndex:(NSInteger)selectedTabIndex {
7363

7464
- (void)selectTabViewItem:(NSTabViewItem *)tabViewItem {
7565
if (m_lockOutInfiniteLoop) {
76-
/*SSYDBL*/ NSLog(@"Super select item %@", tabViewItem) ;
7766
[super selectTabViewItem:tabViewItem] ;
7867
}
7968
else {
@@ -86,7 +75,6 @@ - (void)selectTabViewItem:(NSTabViewItem *)tabViewItem {
8675

8776
- (void)selectTabViewItemAtIndex:(NSInteger)index {
8877
if (m_lockOutInfiniteLoop) {
89-
/*SSYDBL*/ NSLog(@"Super select index %ld", (long)index) ;
9078
[super selectTabViewItemAtIndex:index] ;
9179
}
9280
else {
@@ -96,7 +84,6 @@ - (void)selectTabViewItemAtIndex:(NSInteger)index {
9684

9785
- (void)selectTabViewItemWithIdentifier:(id)identifier {
9886
if (m_lockOutInfiniteLoop) {
99-
/*SSYDBL*/ NSLog(@"Super select identifier %@", identifier) ;
10087
[super selectTabViewItemWithIdentifier:identifier] ;
10188
}
10289
else {
@@ -116,10 +103,6 @@ - (IBAction)changeTabViewItem:(NSToolbarItem*)sender {
116103
}
117104

118105
- (void)awakeFromNib {
119-
#if 11
120-
#warning More wildness
121-
/*SSYDBL*/ NSLog(@"Tab View is %@", self) ;
122-
#endif
123106
// Set the initial state
124107
NSTabViewItem* selectedTabViewItem = [self selectedTabViewItem] ;
125108
// We have required that corresponding tab view items and toolbar items

0 commit comments

Comments
 (0)