NSObject | +---GTK | +---GTKObject | +---GTKWidget | +---GTKContainer | +---GTKBin | +---GTKWindow
+ (id) windowWithType:(GtkWindowType) type
- (void) addAccelGroup:(GTKAccelGroup *) accel_group
- (GTKWidget *) defaultWidget
Return this window's delegate object.
- (GTKWidget *) focusWidget
- (id) initWithType:(GtkWindowType) type
- (void) performClose:(id) sender
Send a delete_event signal to this window, i.e. act as if the user had closed the receiver via the window manager. The sender parameter is ignored.
If the delegate implements the method:
- (BOOL) windowShouldClose:(GTKWindow *) sender
this message is sent to the delegate to determine whether the window should actually be closed. If it returns YES, this method will post the GTKWindowWillCloseNotification to the default notification center and close the window.
- (void) removeAccelGroup:(GTKAccelGroup *) accel_group
- (void) setDefaultSize:(gint) width height:(gint) height
- (void) setDelegate:(id) object
Set the delegate object of this window or unset it (if delegate is nil). If the delegate implements any of the methods described in the protocol protocol GTKWindowDelegate, it will be notified by the window on the corresponding events.
- (void) setGeometryHints:(GTKWidget *) geometry_widget geometry:(GdkGeometry *) geometry geomMask:(GdkWindowHints) geom_mask
- (void) setModal:(gboolean) modal
- (void) setPolicy:(gint) allow_shrink allowGrow:(gint) allow_grow autoShrink:(gint) auto_shrink
- (void) setPosition:(GtkWindowPosition) position
- (void) setTitle:(NSString *) title
- (void) setTransientFor:(GTKWindow *) parent
- (void) setWmclass:(NSString *) wmclass_name wmclassClass:(NSString *) wmclass_class