]> Pileus Git - ~andy/gtk/blob - gtk/gtkapplication.h
Rename GtkApplicationEndStyle
[~andy/gtk] / gtk / gtkapplication.h
1 /*
2  * Copyright © 2010 Codethink Limited
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the licence, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  * Author: Ryan Lortie <desrt@desrt.ca>
20  */
21
22 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
23 #error "Only <gtk/gtk.h> can be included directly."
24 #endif
25
26 #ifndef __GTK_APPLICATION_H__
27 #define __GTK_APPLICATION_H__
28
29 #include <gtk/gtkwidget.h>
30 #include <gio/gio.h>
31
32 G_BEGIN_DECLS
33
34 #define GTK_TYPE_APPLICATION            (gtk_application_get_type ())
35 #define GTK_APPLICATION(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_APPLICATION, GtkApplication))
36 #define GTK_APPLICATION_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_APPLICATION, GtkApplicationClass))
37 #define GTK_IS_APPLICATION(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_APPLICATION))
38 #define GTK_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_APPLICATION))
39 #define GTK_APPLICATION_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_APPLICATION, GtkApplicationClass))
40
41 typedef struct _GtkApplication        GtkApplication;
42 typedef struct _GtkApplicationClass   GtkApplicationClass;
43 typedef struct _GtkApplicationPrivate GtkApplicationPrivate;
44
45 struct _GtkApplication
46 {
47   GApplication parent;
48
49   /*< private >*/
50   GtkApplicationPrivate *priv;
51 };
52
53 struct _GtkApplicationClass
54 {
55   GApplicationClass parent_class;
56
57   void (*window_added)   (GtkApplication *application,
58                           GtkWindow      *window);
59   void (*window_removed) (GtkApplication *application,
60                           GtkWindow      *window);
61
62   void (*quit)           (GtkApplication *application);
63
64   /*< private >*/
65   gpointer padding[11];
66 };
67
68 GType            gtk_application_get_type      (void) G_GNUC_CONST;
69
70 GtkApplication * gtk_application_new           (const gchar       *application_id,
71                                                 GApplicationFlags  flags);
72
73 void             gtk_application_add_window    (GtkApplication    *application,
74                                                 GtkWindow         *window);
75
76 void             gtk_application_remove_window (GtkApplication    *application,
77                                                 GtkWindow         *window);
78 GList *          gtk_application_get_windows   (GtkApplication    *application);
79
80 GMenuModel *     gtk_application_get_app_menu  (GtkApplication    *application);
81 void             gtk_application_set_app_menu  (GtkApplication    *application,
82                                                 GMenuModel        *model);
83
84 GMenuModel *     gtk_application_get_menubar   (GtkApplication    *application);
85 void             gtk_application_set_menubar   (GtkApplication    *application,
86                                                 GMenuModel        *model);
87
88 void             gtk_application_add_accelerator    (GtkApplication  *application,
89                                                      const gchar     *accelerator,
90                                                      const gchar     *action_name,
91                                                      GVariant        *parameter);
92 void             gtk_application_remove_accelerator (GtkApplication *application,
93                                                      const gchar    *action_name,
94                                                      GVariant       *parameter);
95
96 typedef enum
97 {
98   GTK_APPLICATION_INHIBIT_LOGOUT  = (1 << 0),
99   GTK_APPLICATION_INHIBIT_SWITCH  = (1 << 1),
100   GTK_APPLICATION_INHIBIT_SUSPEND = (1 << 2),
101   GTK_APPLICATION_INHIBIT_IDLE    = (1 << 3)
102 } GtkApplicationInhibitFlags;
103
104 guint            gtk_application_inhibit            (GtkApplication             *application,
105                                                      GtkWindow                  *window,
106                                                      GtkApplicationInhibitFlags  flags,
107                                                      const gchar                *reason);
108 void             gtk_application_uninhibit          (GtkApplication             *application,
109                                                      guint                       cookie);
110 gboolean         gtk_application_is_inhibited       (GtkApplication             *application,
111                                                      GtkApplicationInhibitFlags  flags);
112
113 typedef enum {
114   GTK_APPLICATION_LOGOUT,
115   GTK_APPLICATION_REBOOT,
116   GTK_APPLICATION_SHUTDOWN
117 } GtkApplicationEndSessionStyle;
118
119 gboolean         gtk_application_end_session        (GtkApplication                *application,
120                                                      GtkApplicationEndSessionStyle  style,
121                                                      gboolean                       request_confirmation);
122
123 G_END_DECLS
124
125 #endif /* __GTK_APPLICATION_H__ */
126