]> Pileus Git - ~andy/gtk/blob - gtk/gtkapplicationprivate.h
stylecontext: Do invalidation on first resize container
[~andy/gtk] / gtk / gtkapplicationprivate.h
1 /*
2  * Copyright © 2011 Canonical 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, see <http://www.gnu.org/licenses/>.
16  *
17  * Author: Ryan Lortie <desrt@desrt.ca>
18  */
19
20
21 #ifndef __GTK_APPLICATION_PRIVATE_H__
22 #define __GTK_APPLICATION_PRIVATE_H__
23
24 #include "gtkapplicationwindow.h"
25
26 G_GNUC_INTERNAL
27 gboolean                gtk_application_window_publish                  (GtkApplicationWindow *window,
28                                                                          GDBusConnection      *session,
29                                                                          const gchar          *object_path,
30                                                                          guint                 object_id);
31
32 G_GNUC_INTERNAL
33 void                    gtk_application_window_unpublish                (GtkApplicationWindow *window);
34
35 G_GNUC_INTERNAL
36 GtkAccelGroup         * gtk_application_window_get_accel_group          (GtkApplicationWindow *window);
37
38 G_GNUC_INTERNAL
39 const gchar *           gtk_application_get_app_menu_object_path        (GtkApplication       *application);
40 G_GNUC_INTERNAL
41 const gchar *           gtk_application_get_menubar_object_path         (GtkApplication       *application);
42
43 #endif /* __GTK_APPLICATION_PRIVATE_H__ */