summaryrefslogtreecommitdiff
path: root/gtk/gtkwindow.h
diff options
context:
space:
mode:
authorMichael Natterer <mitch@gimp.org>2010-10-20 16:58:18 +0200
committerMichael Natterer <mitch@gimp.org>2010-10-20 17:02:38 +0200
commitc2f29f2cefd7d880b1c1357070c8444a1fbb7b33 (patch)
tree78b8b28e367462ef98fcb800b5a66582d68240fe /gtk/gtkwindow.h
parentef9a6f205cc4a3a6c0d03c24a5b1e5e1b5157191 (diff)
downloadgtk+-c2f29f2cefd7d880b1c1357070c8444a1fbb7b33.tar.gz
gtk: clean up GtkWidget signals
- add slots for damage-event, move-focus and keynav-failed - reorder signals a bit so related stuff is grouped together - some indentation fixes in the GtkWidgetClass - remove the move-focus compat hack from GtkTextView - turn the move-focus compat hack in GtkWindow into properly implementing GtkWidget::move-focus()
Diffstat (limited to 'gtk/gtkwindow.h')
-rw-r--r--gtk/gtkwindow.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/gtk/gtkwindow.h b/gtk/gtkwindow.h
index 29e729e90f..57d1f81476 100644
--- a/gtk/gtkwindow.h
+++ b/gtk/gtkwindow.h
@@ -75,15 +75,8 @@ struct _GtkWindowClass
void (* activate_focus) (GtkWindow *window);
void (* activate_default) (GtkWindow *window);
- /* as of GTK+ 2.12 the "move-focus" signal has been moved to GtkWidget,
- * so this is merley a virtual function now. Overriding it in subclasses
- * continues to work though.
- */
- void (* move_focus) (GtkWindow *window,
- GtkDirectionType direction);
-
- void (*keys_changed) (GtkWindow *window);
-
+ void (* keys_changed) (GtkWindow *window);
+
/* Padding for future expansion */
void (*_gtk_reserved1) (void);
void (*_gtk_reserved2) (void);