gwenhywfar 4.0.3

CocoaLabel.h

Go to the documentation of this file.
00001 //
00002 //  CocoaLabel.h
00003 //  
00004 //
00005 //  Created by Samuel Strupp on 10.08.10.
00006 //
00007 
00008 
00009 
00010 #ifndef COCOA_LABEL_H
00011 #define COCOA_LABEL_H
00012 
00013 #import <Cocoa/Cocoa.h>
00014 #import "CocoaGwenGUIProtocol.h"
00015 
00016 @interface CocoaLabel : NSTextField <CocoaGwenGUIProtocol> {
00017         BOOL fillX;
00018         BOOL fillY;
00019         
00020         CGFloat minWidth;
00021 }
00022 
00023 @property BOOL fillX;
00024 @property BOOL fillY;
00025 
00026 -(NSSize) neededTextSize;
00027 
00028 @end
00029 
00030 #endif