2011-12-17 21:14:18 +00:00
|
|
|
/*
|
Refactor GtkApplication
gtkapplication.c has turned into a bit of an #ifdef mess over time, and
many of the current checks are incorrect. As an example, if you build
Gtk for wayland, and exclude the X11 backend, much of the functionality
required by wayland (such as exporting menu models) will be disabled.
Solve that by introducing a backend mechanism to GtkApplication (named
GtkApplicationImpl) similar to the one in GApplication. Add backends
for Wayland, X11 and Quartz, with X11 and Wayland sharing a common
'DBus' superclass.
GtkApplicationImpl
|
/--------------+-------------------\
| |
GtkApplicationImplDBus GtkApplicationImplQuartz
|
/-----------+-----------------\
| |
GtkApplicationImplX11 GtkApplicationImplWayland
GtkApplicationImpl itself is essentially a bunch of vfuncs that serve as
hooks for various things that the platform-specific backends may be
interested in doing (startup, shutdown, managing windows, inhibit, etc.)
With this change, all platform specific code has been removed from
gtkapplication.c and gtkapplicationwindow.c (both of which are now free
of #ifdefs, except for a UNIX-specific use of GDesktopAppInfo in
gtkapplicationwindow.c).
Additionally, because of the movement of the property-setting code out
of GtkApplicationWindow, the _GTK_APPLICATION_ID properties (and
friends) will be set on non-GtkApplicationWindows, such as dialogs.
https://bugzilla.gnome.org/show_bug.cgi?id=720550
2013-12-16 14:32:13 +00:00
|
|
|
* Copyright © 2011, 2013 Canonical Limited
|
2011-12-17 21:14:18 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the licence, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-12-17 21:14:18 +00:00
|
|
|
*
|
|
|
|
* Author: Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTK_APPLICATION_PRIVATE_H__
|
|
|
|
#define __GTK_APPLICATION_PRIVATE_H__
|
|
|
|
|
|
|
|
#include "gtkapplicationwindow.h"
|
2013-07-10 03:44:51 +00:00
|
|
|
#include "gtkwindowprivate.h"
|
2011-12-17 21:14:18 +00:00
|
|
|
|
2018-02-02 09:13:10 +00:00
|
|
|
#include "gtkactionmuxerprivate.h"
|
2016-04-20 15:24:46 +00:00
|
|
|
#include "gtkapplicationaccelsprivate.h"
|
2013-07-10 02:33:22 +00:00
|
|
|
|
2014-04-05 06:04:12 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
Refactor GtkApplication
gtkapplication.c has turned into a bit of an #ifdef mess over time, and
many of the current checks are incorrect. As an example, if you build
Gtk for wayland, and exclude the X11 backend, much of the functionality
required by wayland (such as exporting menu models) will be disabled.
Solve that by introducing a backend mechanism to GtkApplication (named
GtkApplicationImpl) similar to the one in GApplication. Add backends
for Wayland, X11 and Quartz, with X11 and Wayland sharing a common
'DBus' superclass.
GtkApplicationImpl
|
/--------------+-------------------\
| |
GtkApplicationImplDBus GtkApplicationImplQuartz
|
/-----------+-----------------\
| |
GtkApplicationImplX11 GtkApplicationImplWayland
GtkApplicationImpl itself is essentially a bunch of vfuncs that serve as
hooks for various things that the platform-specific backends may be
interested in doing (startup, shutdown, managing windows, inhibit, etc.)
With this change, all platform specific code has been removed from
gtkapplication.c and gtkapplicationwindow.c (both of which are now free
of #ifdefs, except for a UNIX-specific use of GDesktopAppInfo in
gtkapplicationwindow.c).
Additionally, because of the movement of the property-setting code out
of GtkApplicationWindow, the _GTK_APPLICATION_ID properties (and
friends) will be set on non-GtkApplicationWindows, such as dialogs.
https://bugzilla.gnome.org/show_bug.cgi?id=720550
2013-12-16 14:32:13 +00:00
|
|
|
void gtk_application_window_set_id (GtkApplicationWindow *window,
|
|
|
|
guint id);
|
|
|
|
GActionGroup * gtk_application_window_get_action_group (GtkApplicationWindow *window);
|
|
|
|
void gtk_application_handle_window_realize (GtkApplication *application,
|
|
|
|
GtkWindow *window);
|
|
|
|
void gtk_application_handle_window_map (GtkApplication *application,
|
|
|
|
GtkWindow *window);
|
2013-07-10 02:33:22 +00:00
|
|
|
GtkActionMuxer * gtk_application_get_parent_muxer_for_window (GtkWindow *window);
|
|
|
|
|
Refactor GtkApplication
gtkapplication.c has turned into a bit of an #ifdef mess over time, and
many of the current checks are incorrect. As an example, if you build
Gtk for wayland, and exclude the X11 backend, much of the functionality
required by wayland (such as exporting menu models) will be disabled.
Solve that by introducing a backend mechanism to GtkApplication (named
GtkApplicationImpl) similar to the one in GApplication. Add backends
for Wayland, X11 and Quartz, with X11 and Wayland sharing a common
'DBus' superclass.
GtkApplicationImpl
|
/--------------+-------------------\
| |
GtkApplicationImplDBus GtkApplicationImplQuartz
|
/-----------+-----------------\
| |
GtkApplicationImplX11 GtkApplicationImplWayland
GtkApplicationImpl itself is essentially a bunch of vfuncs that serve as
hooks for various things that the platform-specific backends may be
interested in doing (startup, shutdown, managing windows, inhibit, etc.)
With this change, all platform specific code has been removed from
gtkapplication.c and gtkapplicationwindow.c (both of which are now free
of #ifdefs, except for a UNIX-specific use of GDesktopAppInfo in
gtkapplicationwindow.c).
Additionally, because of the movement of the property-setting code out
of GtkApplicationWindow, the _GTK_APPLICATION_ID properties (and
friends) will be set on non-GtkApplicationWindows, such as dialogs.
https://bugzilla.gnome.org/show_bug.cgi?id=720550
2013-12-16 14:32:13 +00:00
|
|
|
GtkActionMuxer * gtk_application_get_action_muxer (GtkApplication *application);
|
2014-01-15 06:21:29 +00:00
|
|
|
void gtk_application_insert_action_group (GtkApplication *application,
|
|
|
|
const gchar *name,
|
|
|
|
GActionGroup *action_group);
|
Refactor GtkApplication
gtkapplication.c has turned into a bit of an #ifdef mess over time, and
many of the current checks are incorrect. As an example, if you build
Gtk for wayland, and exclude the X11 backend, much of the functionality
required by wayland (such as exporting menu models) will be disabled.
Solve that by introducing a backend mechanism to GtkApplication (named
GtkApplicationImpl) similar to the one in GApplication. Add backends
for Wayland, X11 and Quartz, with X11 and Wayland sharing a common
'DBus' superclass.
GtkApplicationImpl
|
/--------------+-------------------\
| |
GtkApplicationImplDBus GtkApplicationImplQuartz
|
/-----------+-----------------\
| |
GtkApplicationImplX11 GtkApplicationImplWayland
GtkApplicationImpl itself is essentially a bunch of vfuncs that serve as
hooks for various things that the platform-specific backends may be
interested in doing (startup, shutdown, managing windows, inhibit, etc.)
With this change, all platform specific code has been removed from
gtkapplication.c and gtkapplicationwindow.c (both of which are now free
of #ifdefs, except for a UNIX-specific use of GDesktopAppInfo in
gtkapplicationwindow.c).
Additionally, because of the movement of the property-setting code out
of GtkApplicationWindow, the _GTK_APPLICATION_ID properties (and
friends) will be set on non-GtkApplicationWindows, such as dialogs.
https://bugzilla.gnome.org/show_bug.cgi?id=720550
2013-12-16 14:32:13 +00:00
|
|
|
|
2016-04-20 15:24:46 +00:00
|
|
|
GtkApplicationAccels * gtk_application_get_application_accels (GtkApplication *application);
|
Refactor GtkApplication
gtkapplication.c has turned into a bit of an #ifdef mess over time, and
many of the current checks are incorrect. As an example, if you build
Gtk for wayland, and exclude the X11 backend, much of the functionality
required by wayland (such as exporting menu models) will be disabled.
Solve that by introducing a backend mechanism to GtkApplication (named
GtkApplicationImpl) similar to the one in GApplication. Add backends
for Wayland, X11 and Quartz, with X11 and Wayland sharing a common
'DBus' superclass.
GtkApplicationImpl
|
/--------------+-------------------\
| |
GtkApplicationImplDBus GtkApplicationImplQuartz
|
/-----------+-----------------\
| |
GtkApplicationImplX11 GtkApplicationImplWayland
GtkApplicationImpl itself is essentially a bunch of vfuncs that serve as
hooks for various things that the platform-specific backends may be
interested in doing (startup, shutdown, managing windows, inhibit, etc.)
With this change, all platform specific code has been removed from
gtkapplication.c and gtkapplicationwindow.c (both of which are now free
of #ifdefs, except for a UNIX-specific use of GDesktopAppInfo in
gtkapplicationwindow.c).
Additionally, because of the movement of the property-setting code out
of GtkApplicationWindow, the _GTK_APPLICATION_ID properties (and
friends) will be set on non-GtkApplicationWindows, such as dialogs.
https://bugzilla.gnome.org/show_bug.cgi?id=720550
2013-12-16 14:32:13 +00:00
|
|
|
|
2018-08-30 05:06:51 +00:00
|
|
|
void gtk_application_set_screensaver_active (GtkApplication *application,
|
|
|
|
gboolean active);
|
|
|
|
|
Refactor GtkApplication
gtkapplication.c has turned into a bit of an #ifdef mess over time, and
many of the current checks are incorrect. As an example, if you build
Gtk for wayland, and exclude the X11 backend, much of the functionality
required by wayland (such as exporting menu models) will be disabled.
Solve that by introducing a backend mechanism to GtkApplication (named
GtkApplicationImpl) similar to the one in GApplication. Add backends
for Wayland, X11 and Quartz, with X11 and Wayland sharing a common
'DBus' superclass.
GtkApplicationImpl
|
/--------------+-------------------\
| |
GtkApplicationImplDBus GtkApplicationImplQuartz
|
/-----------+-----------------\
| |
GtkApplicationImplX11 GtkApplicationImplWayland
GtkApplicationImpl itself is essentially a bunch of vfuncs that serve as
hooks for various things that the platform-specific backends may be
interested in doing (startup, shutdown, managing windows, inhibit, etc.)
With this change, all platform specific code has been removed from
gtkapplication.c and gtkapplicationwindow.c (both of which are now free
of #ifdefs, except for a UNIX-specific use of GDesktopAppInfo in
gtkapplicationwindow.c).
Additionally, because of the movement of the property-setting code out
of GtkApplicationWindow, the _GTK_APPLICATION_ID properties (and
friends) will be set on non-GtkApplicationWindows, such as dialogs.
https://bugzilla.gnome.org/show_bug.cgi?id=720550
2013-12-16 14:32:13 +00:00
|
|
|
#define GTK_TYPE_APPLICATION_IMPL (gtk_application_impl_get_type ())
|
|
|
|
#define GTK_APPLICATION_IMPL_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
|
|
|
|
GTK_TYPE_APPLICATION_IMPL, \
|
|
|
|
GtkApplicationImplClass))
|
|
|
|
#define GTK_APPLICATION_IMPL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
|
|
|
|
GTK_TYPE_APPLICATION_IMPL, \
|
|
|
|
GtkApplicationImplClass))
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GObject parent_instance;
|
|
|
|
GtkApplication *application;
|
|
|
|
GdkDisplay *display;
|
|
|
|
} GtkApplicationImpl;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
|
|
|
void (* startup) (GtkApplicationImpl *impl,
|
|
|
|
gboolean register_session);
|
|
|
|
void (* shutdown) (GtkApplicationImpl *impl);
|
|
|
|
|
|
|
|
void (* before_emit) (GtkApplicationImpl *impl,
|
|
|
|
GVariant *platform_data);
|
|
|
|
|
|
|
|
void (* window_added) (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void (* window_removed) (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void (* active_window_changed) (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void (* handle_window_realize) (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void (* handle_window_map) (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
|
|
|
|
void (* set_app_menu) (GtkApplicationImpl *impl,
|
|
|
|
GMenuModel *app_menu);
|
|
|
|
void (* set_menubar) (GtkApplicationImpl *impl,
|
|
|
|
GMenuModel *menubar);
|
|
|
|
|
|
|
|
guint (* inhibit) (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window,
|
|
|
|
GtkApplicationInhibitFlags flags,
|
|
|
|
const gchar *reason);
|
|
|
|
void (* uninhibit) (GtkApplicationImpl *impl,
|
|
|
|
guint cookie);
|
|
|
|
gboolean (* is_inhibited) (GtkApplicationImpl *impl,
|
|
|
|
GtkApplicationInhibitFlags flags);
|
|
|
|
|
2014-06-30 16:16:19 +00:00
|
|
|
gboolean (* prefers_app_menu) (GtkApplicationImpl *impl);
|
|
|
|
|
Refactor GtkApplication
gtkapplication.c has turned into a bit of an #ifdef mess over time, and
many of the current checks are incorrect. As an example, if you build
Gtk for wayland, and exclude the X11 backend, much of the functionality
required by wayland (such as exporting menu models) will be disabled.
Solve that by introducing a backend mechanism to GtkApplication (named
GtkApplicationImpl) similar to the one in GApplication. Add backends
for Wayland, X11 and Quartz, with X11 and Wayland sharing a common
'DBus' superclass.
GtkApplicationImpl
|
/--------------+-------------------\
| |
GtkApplicationImplDBus GtkApplicationImplQuartz
|
/-----------+-----------------\
| |
GtkApplicationImplX11 GtkApplicationImplWayland
GtkApplicationImpl itself is essentially a bunch of vfuncs that serve as
hooks for various things that the platform-specific backends may be
interested in doing (startup, shutdown, managing windows, inhibit, etc.)
With this change, all platform specific code has been removed from
gtkapplication.c and gtkapplicationwindow.c (both of which are now free
of #ifdefs, except for a UNIX-specific use of GDesktopAppInfo in
gtkapplicationwindow.c).
Additionally, because of the movement of the property-setting code out
of GtkApplicationWindow, the _GTK_APPLICATION_ID properties (and
friends) will be set on non-GtkApplicationWindows, such as dialogs.
https://bugzilla.gnome.org/show_bug.cgi?id=720550
2013-12-16 14:32:13 +00:00
|
|
|
|
|
|
|
} GtkApplicationImplClass;
|
|
|
|
|
|
|
|
#define GTK_TYPE_APPLICATION_IMPL_DBUS (gtk_application_impl_dbus_get_type ())
|
|
|
|
#define GTK_APPLICATION_IMPL_DBUS_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
|
|
|
|
GTK_TYPE_APPLICATION_IMPL_DBUS, \
|
|
|
|
GtkApplicationImplDBusClass))
|
|
|
|
#define GTK_APPLICATION_IMPL_DBUS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \
|
|
|
|
GTK_TYPE_APPLICATION_IMPL_DBUS, \
|
|
|
|
GtkApplicationImplDBusClass))
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GtkApplicationImpl impl;
|
|
|
|
|
|
|
|
GDBusConnection *session;
|
|
|
|
|
|
|
|
const gchar *application_id;
|
|
|
|
const gchar *unique_name;
|
|
|
|
const gchar *object_path;
|
|
|
|
|
|
|
|
gchar *app_menu_path;
|
|
|
|
guint app_menu_id;
|
|
|
|
|
|
|
|
gchar *menubar_path;
|
|
|
|
guint menubar_id;
|
|
|
|
|
|
|
|
/* Session management... */
|
|
|
|
GDBusProxy *sm_proxy;
|
|
|
|
GDBusProxy *client_proxy;
|
|
|
|
gchar *client_path;
|
2018-08-30 05:06:51 +00:00
|
|
|
GDBusProxy *ss_proxy;
|
2016-07-02 01:19:12 +00:00
|
|
|
|
|
|
|
/* Portal support */
|
|
|
|
GDBusProxy *inhibit_proxy;
|
|
|
|
GSList *inhibit_handles;
|
2018-08-30 05:06:51 +00:00
|
|
|
guint state_changed_handler;
|
|
|
|
char * session_id;
|
2019-01-20 16:29:04 +00:00
|
|
|
guint session_state;
|
Refactor GtkApplication
gtkapplication.c has turned into a bit of an #ifdef mess over time, and
many of the current checks are incorrect. As an example, if you build
Gtk for wayland, and exclude the X11 backend, much of the functionality
required by wayland (such as exporting menu models) will be disabled.
Solve that by introducing a backend mechanism to GtkApplication (named
GtkApplicationImpl) similar to the one in GApplication. Add backends
for Wayland, X11 and Quartz, with X11 and Wayland sharing a common
'DBus' superclass.
GtkApplicationImpl
|
/--------------+-------------------\
| |
GtkApplicationImplDBus GtkApplicationImplQuartz
|
/-----------+-----------------\
| |
GtkApplicationImplX11 GtkApplicationImplWayland
GtkApplicationImpl itself is essentially a bunch of vfuncs that serve as
hooks for various things that the platform-specific backends may be
interested in doing (startup, shutdown, managing windows, inhibit, etc.)
With this change, all platform specific code has been removed from
gtkapplication.c and gtkapplicationwindow.c (both of which are now free
of #ifdefs, except for a UNIX-specific use of GDesktopAppInfo in
gtkapplicationwindow.c).
Additionally, because of the movement of the property-setting code out
of GtkApplicationWindow, the _GTK_APPLICATION_ID properties (and
friends) will be set on non-GtkApplicationWindows, such as dialogs.
https://bugzilla.gnome.org/show_bug.cgi?id=720550
2013-12-16 14:32:13 +00:00
|
|
|
} GtkApplicationImplDBus;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GtkApplicationImplClass parent_class;
|
|
|
|
|
|
|
|
/* returns floating */
|
|
|
|
GVariant * (* get_window_system_id) (GtkApplicationImplDBus *dbus,
|
|
|
|
GtkWindow *window);
|
|
|
|
} GtkApplicationImplDBusClass;
|
|
|
|
|
|
|
|
GType gtk_application_impl_get_type (void);
|
|
|
|
GType gtk_application_impl_dbus_get_type (void);
|
|
|
|
GType gtk_application_impl_x11_get_type (void);
|
|
|
|
GType gtk_application_impl_wayland_get_type (void);
|
|
|
|
GType gtk_application_impl_quartz_get_type (void);
|
|
|
|
|
|
|
|
GtkApplicationImpl * gtk_application_impl_new (GtkApplication *application,
|
|
|
|
GdkDisplay *display);
|
|
|
|
void gtk_application_impl_startup (GtkApplicationImpl *impl,
|
|
|
|
gboolean register_sesion);
|
|
|
|
void gtk_application_impl_shutdown (GtkApplicationImpl *impl);
|
|
|
|
void gtk_application_impl_before_emit (GtkApplicationImpl *impl,
|
|
|
|
GVariant *platform_data);
|
|
|
|
void gtk_application_impl_window_added (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void gtk_application_impl_window_removed (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void gtk_application_impl_active_window_changed (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void gtk_application_impl_handle_window_realize (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void gtk_application_impl_handle_window_map (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window);
|
|
|
|
void gtk_application_impl_set_app_menu (GtkApplicationImpl *impl,
|
|
|
|
GMenuModel *app_menu);
|
|
|
|
void gtk_application_impl_set_menubar (GtkApplicationImpl *impl,
|
|
|
|
GMenuModel *menubar);
|
|
|
|
guint gtk_application_impl_inhibit (GtkApplicationImpl *impl,
|
|
|
|
GtkWindow *window,
|
|
|
|
GtkApplicationInhibitFlags flags,
|
|
|
|
const gchar *reason);
|
|
|
|
void gtk_application_impl_uninhibit (GtkApplicationImpl *impl,
|
|
|
|
guint cookie);
|
|
|
|
gboolean gtk_application_impl_is_inhibited (GtkApplicationImpl *impl,
|
|
|
|
GtkApplicationInhibitFlags flags);
|
|
|
|
|
|
|
|
gchar * gtk_application_impl_dbus_get_window_path (GtkApplicationImplDBus *dbus,
|
|
|
|
GtkWindow *window);
|
2014-06-30 16:16:19 +00:00
|
|
|
gboolean gtk_application_impl_prefers_app_menu (GtkApplicationImpl *impl);
|
|
|
|
|
2013-07-10 03:44:51 +00:00
|
|
|
|
2014-01-08 22:27:43 +00:00
|
|
|
void gtk_application_impl_quartz_setup_menu (GMenuModel *model,
|
|
|
|
GtkActionMuxer *muxer);
|
|
|
|
|
2014-04-05 06:04:12 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2011-12-17 21:14:18 +00:00
|
|
|
#endif /* __GTK_APPLICATION_PRIVATE_H__ */
|