32 #import "CoreGTK/CGTKArrow.h" 36 -(id)initWithArrowType:(GtkArrowType) arrowType andShadowType:(GtkShadowType) shadowType
38 self = [
super initWithGObject:(GObject *)gtk_arrow_new(arrowType, shadowType)];
50 return GTK_ARROW([
self GOBJECT]);
53 -(void)setWithArrowType:(GtkArrowType) arrowType andShadowType:(GtkShadowType) shadowType
55 gtk_arrow_set(GTK_ARROW([
self GOBJECT]), arrowType, shadowType);
id initWithGObject:(GObject *obj)