mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 13:20:58 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@16250 72102866-910b-0410-8b05-ffd578937521
18 lines
274 B
Objective-C
18 lines
274 B
Objective-C
#include "Controller.h"
|
|
|
|
@implementation Controller
|
|
|
|
- (void)buttonPressed:(id)sender
|
|
{
|
|
NSString* text
|
|
= [NSString stringWithFormat:@"\"%@\" button pressed", [sender title]];
|
|
|
|
[textField setStringValue:text];
|
|
}
|
|
|
|
- (id)window
|
|
{
|
|
return [textField window];
|
|
}
|
|
|
|
@end
|