gwenhywfar 4.0.3

CocoaScrollBox.h

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