gwenhywfar 4.0.3

CocoaWindowContentView.h

Go to the documentation of this file.
00001 //
00002 //  CocoaWindowContentView.h
00003 //  
00004 //
00005 //  Created by Samuel Strupp on 10.08.10.
00006 //
00007 
00008 #import <Cocoa/Cocoa.h>
00009 #import "CocoaGwenGUIProtocol.h"
00010 
00011 @interface CocoaWindowContentView : NSView <CocoaGwenGUIProtocol> {
00012         NSMutableArray *subviewsInOrder;
00013         BOOL fillX;
00014         BOOL fillY;
00015 }
00016 
00017 @property BOOL fillX;
00018 @property BOOL fillY;
00019 
00020 -(void) addLayoutSubview:(NSView*)new_subview;
00021 
00022 @end