mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 23:31:02 +00:00
Added missing methods for object value
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@7400 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
94fc19b2a6
commit
e55aa22758
1 changed files with 21 additions and 13 deletions
|
@ -79,23 +79,31 @@
|
|||
//
|
||||
// Setting the Control's Value
|
||||
//
|
||||
- (double)doubleValue;
|
||||
- (float)floatValue;
|
||||
- (int)intValue;
|
||||
- (void)setDoubleValue:(double)aDouble;
|
||||
- (void)setFloatValue:(float)aFloat;
|
||||
- (void)setIntValue:(int)anInt;
|
||||
- (void)setNeedsDisplay;
|
||||
- (void)setStringValue:(NSString *)aString;
|
||||
- (NSString *)stringValue;
|
||||
- (void) setDoubleValue: (double)aDouble;
|
||||
- (double) doubleValue;
|
||||
|
||||
- (void) setFloatValue: (float)aFloat;
|
||||
- (float) floatValue;
|
||||
|
||||
- (void) setIntValue: (int)anInt;
|
||||
- (int) intValue;
|
||||
|
||||
- (void) setStringValue: (NSString *)aString;
|
||||
- (NSString *) stringValue;
|
||||
|
||||
- (void) setObjectValue: (id)anObject;
|
||||
- (id) objectValue;
|
||||
|
||||
- (void) setNeedsDisplay;
|
||||
|
||||
//
|
||||
// Interacting with Other Controls
|
||||
//
|
||||
- (void)takeDoubleValueFrom:(id)sender;
|
||||
- (void)takeFloatValueFrom:(id)sender;
|
||||
- (void)takeIntValueFrom:(id)sender;
|
||||
- (void)takeStringValueFrom:(id)sender;
|
||||
- (void) takeDoubleValueFrom: (id)sender;
|
||||
- (void) takeFloatValueFrom: (id)sender;
|
||||
- (void) takeIntValueFrom: (id)sender;
|
||||
- (void) takeStringValueFrom: (id)sender;
|
||||
- (void) takeObjectValueFrom: (id)sender;
|
||||
|
||||
//
|
||||
// Formatting Text
|
||||
|
|
Loading…
Reference in a new issue