mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 16:40:55 +00:00
14 lines
226 B
Mathematica
14 lines
226 B
Mathematica
|
#import "Controller.h"
|
||
|
|
||
|
@implementation Controller
|
||
|
|
||
|
- (void)buttonPressed:(id)sender
|
||
|
{
|
||
|
NSString* text
|
||
|
= [NSString stringWithFormat:@"\"%@\" button pressed", [sender title]];
|
||
|
|
||
|
[textField setStringValue:text];
|
||
|
}
|
||
|
|
||
|
@end
|