summaryrefslogtreecommitdiff
path: root/gtk/gtkwindow.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-12-23 12:58:00 -0500
committerMatthias Clasen <mclasen@redhat.com>2010-12-23 12:59:49 -0500
commit3e08a23237cc3dad23d1df34ac667ccd03ef4421 (patch)
treeffd6636360cf93101f6bb679f168328087988e70 /gtk/gtkwindow.h
parent9ab2786991db56f49ec7eaff20118734c03470b2 (diff)
downloadgtk+-3e08a23237cc3dad23d1df34ac667ccd03ef4421.tar.gz
Drop long-obsolete linux framebuffer APIs
The functions to set frames on windows stopped being interesting when the linux framebuffer port was dropped, many years ago. Similar functionality may come back with client-side decorations in the future.
Diffstat (limited to 'gtk/gtkwindow.h')
-rw-r--r--gtk/gtkwindow.h27
1 files changed, 4 insertions, 23 deletions
diff --git a/gtk/gtkwindow.h b/gtk/gtkwindow.h
index 81a979a6da..07309b2e7e 100644
--- a/gtk/gtkwindow.h
+++ b/gtk/gtkwindow.h
@@ -67,16 +67,13 @@ struct _GtkWindowClass
GtkBinClass parent_class;
void (* set_focus) (GtkWindow *window,
- GtkWidget *focus);
- gboolean (* frame_event) (GtkWindow *window,
- GdkEvent *event);
+ GtkWidget *focus);
/* G_SIGNAL_ACTION signals for keybindings */
- void (* activate_focus) (GtkWindow *window);
- void (* activate_default) (GtkWindow *window);
-
- void (* keys_changed) (GtkWindow *window);
+ void (* activate_focus) (GtkWindow *window);
+ void (* activate_default) (GtkWindow *window);
+ void (* keys_changed) (GtkWindow *window);
/* Padding for future expansion */
void (*_gtk_reserved1) (void);
@@ -190,22 +187,6 @@ GdkScreen* gtk_window_get_screen (GtkWindow *window);
gboolean gtk_window_is_active (GtkWindow *window);
gboolean gtk_window_has_toplevel_focus (GtkWindow *window);
-
-
-/* gtk_window_set_has_frame () must be called before realizing the window_*/
-void gtk_window_set_has_frame (GtkWindow *window,
- gboolean setting);
-gboolean gtk_window_get_has_frame (GtkWindow *window);
-void gtk_window_set_frame_dimensions (GtkWindow *window,
- gint left,
- gint top,
- gint right,
- gint bottom);
-void gtk_window_get_frame_dimensions (GtkWindow *window,
- gint *left,
- gint *top,
- gint *right,
- gint *bottom);
void gtk_window_set_decorated (GtkWindow *window,
gboolean setting);
gboolean gtk_window_get_decorated (GtkWindow *window);