Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #import <Cocoa/Cocoa.h>
00009 #import "CocoaGwenGUIProtocol.h"
00010
00011 @interface CocoaGridLayout : NSView <CocoaGwenGUIProtocol> {
00012 NSMutableArray *subviewsInOrder;
00013 BOOL fillX;
00014 BOOL fillY;
00015
00016 NSInteger columns;
00017 NSInteger rows;
00018 }
00019
00020 @property BOOL fillX;
00021 @property BOOL fillY;
00022
00023 @property NSInteger columns;
00024 @property NSInteger rows;
00025
00026 -(void) addLayoutSubview:(NSView*)new_subview ;
00027
00028 @end