~bratsche/ubuntu/maverick/gtk+2.0/menu-activation-fix

« back to all changes in this revision

Viewing changes to gtk/gtkwindow.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-06-13 10:00:13 UTC
  • mto: (72.2.1 lenny) (1.5.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20070613100013-qstao3cwpm6xdlxc
Tags: upstream-2.11.2
ImportĀ upstreamĀ versionĀ 2.11.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
#define GTK_WINDOW_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_WINDOW, GtkWindowClass))
45
45
 
46
46
 
47
 
typedef struct _GtkWindow             GtkWindow;
48
47
typedef struct _GtkWindowClass        GtkWindowClass;
49
48
typedef struct _GtkWindowGeometryInfo GtkWindowGeometryInfo;
50
49
typedef struct _GtkWindowGroup        GtkWindowGroup;
126
125
 
127
126
  void     (* activate_focus)          (GtkWindow       *window);
128
127
  void     (* activate_default)        (GtkWindow       *window);
 
128
 
 
129
  /* as of GTK+ 2.12 the "move-focus" signal has been moved to GtkWidget,
 
130
   * so this is merley a virtual function now. Overriding it in subclasses
 
131
   * continues to work though.
 
132
   */
129
133
  void     (* move_focus)              (GtkWindow       *window,
130
134
                                        GtkDirectionType direction);
131
135
  
179
183
                                                const gchar         *wmclass_class);
180
184
void       gtk_window_set_role                 (GtkWindow           *window,
181
185
                                                const gchar         *role);
 
186
void       gtk_window_set_startup_id           (GtkWindow           *window,
 
187
                                                const gchar         *startup_id);
182
188
G_CONST_RETURN gchar *gtk_window_get_role      (GtkWindow           *window);
183
189
void       gtk_window_add_accel_group          (GtkWindow           *window,
184
190
                                                GtkAccelGroup       *accel_group);
197
203
void       gtk_window_set_transient_for        (GtkWindow           *window, 
198
204
                                                GtkWindow           *parent);
199
205
GtkWindow *gtk_window_get_transient_for        (GtkWindow           *window);
 
206
void       gtk_window_set_opacity              (GtkWindow           *window, 
 
207
                                                gdouble              opacity);
 
208
gdouble    gtk_window_get_opacity              (GtkWindow           *window);
200
209
void       gtk_window_set_type_hint            (GtkWindow           *window, 
201
210
                                                GdkWindowTypeHint    hint);
202
211
GdkWindowTypeHint gtk_window_get_type_hint     (GtkWindow           *window);