mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-29 20:47:38 +00:00
Add methods to register views
This commit is contained in:
parent
726485fdc9
commit
fbb94af67b
2 changed files with 26 additions and 0 deletions
|
@ -73,6 +73,18 @@
|
|||
#import "AppKit/NSTableView.h"
|
||||
#import "GSBindingHelpers.h"
|
||||
|
||||
|
||||
// Private method on NSTableView to register views...
|
||||
@interface NSTableView (NSTableColumnPrivate)
|
||||
- (void) _registerView: (NSView *)view;
|
||||
@end
|
||||
|
||||
@implementation NSTableView (NSTableColumnPrivate)
|
||||
- (void) _registerView: (NSView *)view
|
||||
{
|
||||
}
|
||||
@end
|
||||
|
||||
/**
|
||||
<p>
|
||||
NSTableColumn objects represent columns in NSTableViews.
|
||||
|
@ -471,6 +483,17 @@ to YES. */
|
|||
ASSIGN(_sortDescriptorPrototype, aSortDescriptor);
|
||||
}
|
||||
|
||||
- (void) _registerPrototypes
|
||||
{
|
||||
NSEnumerator *en = [_prototypeCellViews objectEnumerator];
|
||||
NSView *v = nil;
|
||||
|
||||
while ((v = [en nextObject]) != nil)
|
||||
{
|
||||
[_tableView _registerView: v];
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Encoding/Decoding
|
||||
*/
|
||||
|
@ -579,6 +602,7 @@ to YES. */
|
|||
if ([aDecoder containsValueForKey: @"NSPrototypeCellViews"])
|
||||
{
|
||||
ASSIGN(_prototypeCellViews, [aDecoder decodeObjectForKey: @"NSPrototypeCellViews"]);
|
||||
[self _registerPrototypes];
|
||||
}
|
||||
}
|
||||
else
|
||||
|
@ -609,6 +633,7 @@ to YES. */
|
|||
if (version >= 4)
|
||||
{
|
||||
_prototypeCellViews = RETAIN([aDecoder decodeObject]);
|
||||
[self _registerPrototypes];
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue