This repository has been archived on 2025-06-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ObjGUI.old/gtk/OGButton.m
2011-12-27 23:38:07 +01:00

56 lines
946 B
Objective-C

#import "OGButton.h"
@interface OGButton ()
- (void)OG_clicked;
@end
static void
clicked(GtkWidget *widget, gpointer data)
{
[(OGButton*)data OG_clicked];
}
@implementation OGButton
@synthesize delegate;
+ button
{
return [[[self alloc] init] autorelease];
}
- init
{
self = [super init];
widget = gtk_button_new();
g_signal_connect(G_OBJECT(widget), "clicked", G_CALLBACK(clicked),
self);
g_signal_connect(G_OBJECT(widget), "destroy", G_CALLBACK(og_destroy),
self);
[self retain];
return self;
}
- (OFString*)label
{
return [OFString stringWithUTF8String:
gtk_button_get_label(GTK_BUTTON(widget))];
}
- (void)setLabel: (OFString*)label
{
gtk_button_set_label(GTK_BUTTON(widget), [label UTF8String]);
}
- (void)OG_clicked
{
OFAutoreleasePool *pool = [OFAutoreleasePool new];
if ([delegate respondsToSelector: @selector(buttonWasClicked:)])
[delegate buttonWasClicked: self];
[pool release];
}
@end