2010-08-11 05:23:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Codethink Limited
|
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 © 2013 Canonical Limited
|
2010-06-07 20:44:58 +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
|
2010-08-11 05:23:23 +00:00
|
|
|
* version 2 of the licence, or (at your option) any later version.
|
2010-06-07 20:44:58 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
2010-06-07 20:44:58 +00:00
|
|
|
*
|
2010-08-11 05:23:23 +00:00
|
|
|
* Author: Ryan Lortie <desrt@desrt.ca>
|
2010-06-07 20:44:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2011-12-17 17:28:30 +00:00
|
|
|
#include "gtkapplication.h"
|
2018-05-19 19:36:00 +00:00
|
|
|
#include "gdkprofilerprivate.h"
|
|
|
|
|
|
|
|
#ifdef G_OS_UNIX
|
|
|
|
#include <gio/gunixfdlist.h>
|
|
|
|
#endif
|
2011-12-17 17:28:30 +00:00
|
|
|
|
2010-06-07 20:44:58 +00:00
|
|
|
#include <stdlib.h>
|
2013-12-26 08:15:10 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2010-06-07 20:44:58 +00:00
|
|
|
#include <unistd.h>
|
2013-12-26 08:15:10 +00:00
|
|
|
#endif
|
|
|
|
|
2011-12-17 17:28:30 +00:00
|
|
|
#include "gtkapplicationprivate.h"
|
2010-06-08 22:06:03 +00:00
|
|
|
#include "gtkmarshalers.h"
|
2011-11-10 03:03:10 +00:00
|
|
|
#include "gtkmain.h"
|
2012-01-25 23:30:48 +00:00
|
|
|
#include "gtkrecentmanager.h"
|
2020-01-25 19:30:25 +00:00
|
|
|
#include "gtkicontheme.h"
|
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
|
|
|
#include "gtkbuilder.h"
|
2015-10-21 04:11:59 +00:00
|
|
|
#include "gtkshortcutswindow.h"
|
2012-01-03 19:52:29 +00:00
|
|
|
#include "gtkintl.h"
|
2017-11-29 23:09:37 +00:00
|
|
|
#include "gtkprivate.h"
|
2011-12-10 23:51:30 +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
|
|
|
/* NB: please do not add backend-specific GDK headers here. This should
|
|
|
|
* be abstracted via GtkApplicationImpl.
|
|
|
|
*/
|
2010-06-07 20:44:58 +00:00
|
|
|
|
|
|
|
/**
|
2021-02-27 22:50:04 +00:00
|
|
|
* GtkApplication:
|
2010-06-07 20:44:58 +00:00
|
|
|
*
|
2021-02-27 22:50:04 +00:00
|
|
|
* `GtkApplication` is a high-level API for writing applications.
|
|
|
|
*
|
|
|
|
* It supports many aspects of writing a GTK application in a convenient
|
|
|
|
* fashion, without enforcing a one-size-fits-all model.
|
2010-06-07 20:44:58 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Currently, `GtkApplication` handles GTK initialization, application
|
2012-01-07 08:15:26 +00:00
|
|
|
* uniqueness, session management, provides some basic scriptability and
|
|
|
|
* desktop shell integration by exporting actions and menus and manages a
|
|
|
|
* list of toplevel windows whose life-cycle is automatically tied to the
|
|
|
|
* life-cycle of your application.
|
2011-12-01 04:48:59 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* While `GtkApplication` works fine with plain [class@Gtk.Window]s, it is
|
|
|
|
* recommended to use it together with [class@Gtk.ApplicationWindow].
|
2010-06-07 20:44:58 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* ## Automatic resources
|
2011-12-17 18:17:31 +00:00
|
|
|
*
|
2021-02-27 22:50:04 +00:00
|
|
|
* `GtkApplication` will automatically load menus from the `GtkBuilder`
|
2015-10-21 04:11:59 +00:00
|
|
|
* resource located at "gtk/menus.ui", relative to the application's
|
2021-02-22 14:55:55 +00:00
|
|
|
* resource base path (see `g_application_set_resource_base_path()`).
|
2020-05-22 21:06:30 +00:00
|
|
|
* The menu with the ID "menubar" is taken as the application's
|
2021-02-22 14:55:55 +00:00
|
|
|
* menubar. Additional menus (most interesting submenus) can be named
|
|
|
|
* and accessed via [method@Gtk.Application.get_menu_by_id] which allows for
|
2014-07-04 13:44:12 +00:00
|
|
|
* dynamic population of a part of the menu structure.
|
|
|
|
*
|
2020-05-22 21:06:30 +00:00
|
|
|
* It is also possible to provide the menubar manually using
|
2021-02-22 14:55:55 +00:00
|
|
|
* [method@Gtk.Application.set_menubar].
|
2011-12-15 05:26:02 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* `GtkApplication` will also automatically setup an icon search path for
|
2014-07-07 18:36:57 +00:00
|
|
|
* the default icon theme by appending "icons" to the resource base
|
2021-02-22 14:55:55 +00:00
|
|
|
* path. This allows your application to easily store its icons as
|
|
|
|
* resources. See [method@Gtk.IconTheme.add_resource_path] for more
|
2014-07-07 18:36:57 +00:00
|
|
|
* information.
|
|
|
|
*
|
2016-02-17 10:07:02 +00:00
|
|
|
* If there is a resource located at "gtk/help-overlay.ui" which
|
2021-02-27 22:50:04 +00:00
|
|
|
* defines a [class@Gtk.ShortcutsWindow] with ID "help_overlay" then
|
|
|
|
* `GtkApplication` associates an instance of this shortcuts window with
|
|
|
|
* each [class@Gtk.ApplicationWindow] and sets up the keyboard accelerator
|
2021-02-22 14:55:55 +00:00
|
|
|
* <kbd>Control</kbd>+<kbd>?</kbd> to open it. To create a menu item that
|
|
|
|
* displays the shortcuts window, associate the item with the action
|
|
|
|
* `win.show-help-overlay`.
|
2015-10-21 04:11:59 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* ## A simple application
|
2014-02-04 21:57:57 +00:00
|
|
|
*
|
2019-02-06 09:39:27 +00:00
|
|
|
* [A simple example](https://gitlab.gnome.org/GNOME/gtk/tree/master/examples/bp/bloatpad.c)
|
2021-02-22 14:55:55 +00:00
|
|
|
* is available in the GTK source code repository
|
2012-01-07 08:15:26 +00:00
|
|
|
*
|
2021-02-27 22:50:04 +00:00
|
|
|
* `GtkApplication` optionally registers with a session manager of the
|
|
|
|
* users session (if you set the [property@Gtk.Application:register-session]
|
2012-01-07 08:15:26 +00:00
|
|
|
* property) and offers various functionality related to the session
|
|
|
|
* life-cycle.
|
|
|
|
*
|
|
|
|
* An application can block various ways to end the session with
|
2021-02-22 14:55:55 +00:00
|
|
|
* the [method@Gtk.Application.inhibit] function. Typical use cases for
|
2012-01-07 08:15:26 +00:00
|
|
|
* this kind of inhibiting are long-running, uninterruptible operations,
|
|
|
|
* such as burning a CD or performing a disk backup. The session
|
|
|
|
* manager may not honor the inhibitor, but it can be expected to
|
|
|
|
* inform the user about the negative consequences of ending the
|
|
|
|
* session while inhibitors are present.
|
2015-02-02 07:13:28 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* ## See Also
|
|
|
|
*
|
2015-04-20 22:35:43 +00:00
|
|
|
* [HowDoI: Using GtkApplication](https://wiki.gnome.org/HowDoI/GtkApplication),
|
2021-02-22 14:55:55 +00:00
|
|
|
* [Getting Started with GTK: Basics](getting_started.html#basics)
|
2010-06-07 20:44:58 +00:00
|
|
|
*/
|
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
enum {
|
|
|
|
WINDOW_ADDED,
|
|
|
|
WINDOW_REMOVED,
|
2019-01-22 01:45:15 +00:00
|
|
|
QUERY_END,
|
2011-05-31 23:12:13 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint gtk_application_signals[LAST_SIGNAL];
|
|
|
|
|
2012-01-03 19:52:29 +00:00
|
|
|
enum {
|
|
|
|
PROP_ZERO,
|
2012-01-16 19:46:04 +00:00
|
|
|
PROP_REGISTER_SESSION,
|
2018-08-30 05:06:51 +00:00
|
|
|
PROP_SCREENSAVER_ACTIVE,
|
2012-08-17 22:05:27 +00:00
|
|
|
PROP_MENUBAR,
|
2015-09-05 14:44:27 +00:00
|
|
|
PROP_ACTIVE_WINDOW,
|
|
|
|
NUM_PROPERTIES
|
2012-01-03 19:52:29 +00:00
|
|
|
};
|
|
|
|
|
2015-09-05 14:44:27 +00:00
|
|
|
static GParamSpec *gtk_application_props[NUM_PROPERTIES];
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
typedef struct
|
2010-06-07 20:44:58 +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
|
|
|
GtkApplicationImpl *impl;
|
2016-04-11 15:13:09 +00:00
|
|
|
GtkApplicationAccels *accels;
|
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
|
|
|
|
2010-10-19 19:10:02 +00:00
|
|
|
GList *windows;
|
2011-12-05 05:27:11 +00:00
|
|
|
|
2012-01-20 13:16:35 +00:00
|
|
|
GMenuModel *menubar;
|
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
|
|
|
guint last_window_id;
|
2012-01-20 13:16:35 +00:00
|
|
|
|
2015-10-21 04:11:59 +00:00
|
|
|
gboolean register_session;
|
2018-08-30 05:06:51 +00:00
|
|
|
gboolean screensaver_active;
|
2013-07-10 02:33:22 +00:00
|
|
|
GtkActionMuxer *muxer;
|
2014-07-04 13:44:12 +00:00
|
|
|
GtkBuilder *menus_builder;
|
2020-07-24 18:40:36 +00:00
|
|
|
char *help_overlay_path;
|
2018-07-07 14:15:02 +00:00
|
|
|
} GtkApplicationPrivate;
|
2010-06-07 20:44:58 +00:00
|
|
|
|
2013-06-27 19:02:52 +00:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GtkApplication, gtk_application, G_TYPE_APPLICATION)
|
|
|
|
|
2018-01-06 17:11:40 +00:00
|
|
|
static void
|
|
|
|
gtk_application_window_active_cb (GtkWindow *window,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GtkApplication *application)
|
2011-05-31 22:28:55 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2011-05-31 22:28:55 +00:00
|
|
|
GList *link;
|
|
|
|
|
2018-01-06 17:11:40 +00:00
|
|
|
if (!gtk_window_is_active (window))
|
|
|
|
return;
|
|
|
|
|
2011-05-31 22:28:55 +00:00
|
|
|
/* Keep the window list sorted by most-recently-focused. */
|
|
|
|
link = g_list_find (priv->windows, window);
|
|
|
|
if (link != NULL && link != priv->windows)
|
|
|
|
{
|
|
|
|
priv->windows = g_list_remove_link (priv->windows, link);
|
|
|
|
priv->windows = g_list_concat (link, priv->windows);
|
|
|
|
}
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
if (priv->impl)
|
|
|
|
gtk_application_impl_active_window_changed (priv->impl, window);
|
2015-04-08 19:44:21 +00:00
|
|
|
|
2015-09-05 14:44:27 +00:00
|
|
|
g_object_notify_by_pspec (G_OBJECT (application), gtk_application_props[PROP_ACTIVE_WINDOW]);
|
2011-05-31 22:28:55 +00:00
|
|
|
}
|
|
|
|
|
2014-07-04 13:44:12 +00:00
|
|
|
static void
|
|
|
|
gtk_application_load_resources (GtkApplication *application)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *base_path;
|
2020-12-12 02:47:54 +00:00
|
|
|
const char *optional_slash = "/";
|
2014-07-04 13:44:12 +00:00
|
|
|
|
|
|
|
base_path = g_application_get_resource_base_path (G_APPLICATION (application));
|
|
|
|
|
|
|
|
if (base_path == NULL)
|
|
|
|
return;
|
|
|
|
|
2020-12-12 02:47:54 +00:00
|
|
|
if (base_path[strlen (base_path) - 1] == '/')
|
|
|
|
optional_slash = "";
|
|
|
|
|
2014-07-07 18:32:10 +00:00
|
|
|
/* Expand the icon search path */
|
|
|
|
{
|
|
|
|
GtkIconTheme *default_theme;
|
2020-07-24 18:40:36 +00:00
|
|
|
char *iconspath;
|
2014-07-07 18:32:10 +00:00
|
|
|
|
2020-02-01 22:38:49 +00:00
|
|
|
default_theme = gtk_icon_theme_get_for_display (gdk_display_get_default ());
|
2020-12-12 02:47:54 +00:00
|
|
|
iconspath = g_strconcat (base_path, optional_slash, "icons/", NULL);
|
2014-07-07 18:32:10 +00:00
|
|
|
gtk_icon_theme_add_resource_path (default_theme, iconspath);
|
|
|
|
g_free (iconspath);
|
|
|
|
}
|
|
|
|
|
2014-07-04 13:44:12 +00:00
|
|
|
/* Load the menus */
|
|
|
|
{
|
2020-07-24 18:40:36 +00:00
|
|
|
char *menuspath;
|
2014-07-04 13:44:12 +00:00
|
|
|
|
2020-12-12 02:47:54 +00:00
|
|
|
menuspath = g_strconcat (base_path, optional_slash, "gtk/menus.ui", NULL);
|
2014-07-04 13:44:12 +00:00
|
|
|
if (g_resources_get_info (menuspath, G_RESOURCE_LOOKUP_FLAGS_NONE, NULL, NULL, NULL))
|
2018-07-07 14:15:02 +00:00
|
|
|
priv->menus_builder = gtk_builder_new_from_resource (menuspath);
|
2014-07-04 13:44:12 +00:00
|
|
|
g_free (menuspath);
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
if (priv->menus_builder)
|
2014-07-04 13:44:12 +00:00
|
|
|
{
|
|
|
|
GObject *menu;
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
menu = gtk_builder_get_object (priv->menus_builder, "menubar");
|
2014-07-04 13:44:12 +00:00
|
|
|
if (menu != NULL && G_IS_MENU_MODEL (menu))
|
|
|
|
gtk_application_set_menubar (application, G_MENU_MODEL (menu));
|
|
|
|
}
|
|
|
|
}
|
2015-10-21 04:11:59 +00:00
|
|
|
|
|
|
|
/* Help overlay */
|
|
|
|
{
|
2020-07-24 18:40:36 +00:00
|
|
|
char *path;
|
2015-10-21 04:11:59 +00:00
|
|
|
|
2020-12-12 02:47:54 +00:00
|
|
|
path = g_strconcat (base_path, optional_slash, "gtk/help-overlay.ui", NULL);
|
2015-10-21 04:11:59 +00:00
|
|
|
if (g_resources_get_info (path, G_RESOURCE_LOOKUP_FLAGS_NONE, NULL, NULL, NULL))
|
2016-04-09 13:21:27 +00:00
|
|
|
{
|
2020-07-24 18:40:36 +00:00
|
|
|
const char * const accels[] = { "<Control>question", NULL };
|
2015-10-21 04:11:59 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
priv->help_overlay_path = path;
|
2016-04-09 13:21:27 +00:00
|
|
|
gtk_application_set_accels_for_action (application, "win.show-help-overlay", accels);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_free (path);
|
|
|
|
}
|
2015-10-21 04:11:59 +00:00
|
|
|
}
|
2014-07-04 13:44:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-07 20:44:58 +00:00
|
|
|
static void
|
2013-07-10 02:33:22 +00:00
|
|
|
gtk_application_startup (GApplication *g_application)
|
2010-06-17 14:41:12 +00:00
|
|
|
{
|
2013-07-10 02:33:22 +00:00
|
|
|
GtkApplication *application = GTK_APPLICATION (g_application);
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2020-08-19 22:49:34 +00:00
|
|
|
gint64 before G_GNUC_UNUSED;
|
|
|
|
gint64 before2 G_GNUC_UNUSED;
|
|
|
|
|
|
|
|
before = GDK_PROFILER_CURRENT_TIME;
|
2013-07-10 02:33:22 +00:00
|
|
|
|
2016-01-15 22:36:13 +00:00
|
|
|
G_APPLICATION_CLASS (gtk_application_parent_class)->startup (g_application);
|
2013-07-10 02:33:22 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
gtk_action_muxer_insert (priv->muxer, "app", G_ACTION_GROUP (application));
|
2011-09-14 18:02:51 +00:00
|
|
|
|
2020-08-19 22:49:34 +00:00
|
|
|
before2 = GDK_PROFILER_CURRENT_TIME;
|
2016-12-28 13:53:22 +00:00
|
|
|
gtk_init ();
|
2020-08-19 22:49:34 +00:00
|
|
|
gdk_profiler_end_mark (before2, "gtk init", NULL);
|
2011-12-05 05:27:11 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
priv->impl = gtk_application_impl_new (application, gdk_display_get_default ());
|
|
|
|
gtk_application_impl_startup (priv->impl, priv->register_session);
|
2014-07-04 13:44:12 +00:00
|
|
|
|
|
|
|
gtk_application_load_resources (application);
|
2020-01-23 02:28:51 +00:00
|
|
|
|
2020-08-19 22:49:34 +00:00
|
|
|
gdk_profiler_end_mark (before, "gtk application startup", NULL);
|
2010-06-17 14:41:12 +00:00
|
|
|
}
|
|
|
|
|
2011-12-05 05:25:28 +00:00
|
|
|
static void
|
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
|
|
|
gtk_application_shutdown (GApplication *g_application)
|
2011-12-05 05:25:28 +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
|
|
|
GtkApplication *application = GTK_APPLICATION (g_application);
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2011-12-05 05:27:11 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
if (priv->impl == NULL)
|
2016-01-15 22:36:13 +00:00
|
|
|
return;
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
gtk_application_impl_shutdown (priv->impl);
|
|
|
|
g_clear_object (&priv->impl);
|
2011-12-10 23:51:30 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
gtk_action_muxer_remove (priv->muxer, "app");
|
2014-05-19 11:19:11 +00:00
|
|
|
|
2017-11-29 23:09:37 +00:00
|
|
|
gtk_main_sync ();
|
2012-01-25 23:30:48 +00:00
|
|
|
|
2016-01-15 22:36:13 +00:00
|
|
|
G_APPLICATION_CLASS (gtk_application_parent_class)->shutdown (g_application);
|
2011-12-05 05:25:28 +00:00
|
|
|
}
|
|
|
|
|
2014-02-06 17:33:44 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_application_local_command_line (GApplication *application,
|
2020-07-24 18:40:36 +00:00
|
|
|
char ***arguments,
|
2020-07-24 13:54:49 +00:00
|
|
|
int *exit_status)
|
2014-02-06 17:33:44 +00:00
|
|
|
{
|
|
|
|
return G_APPLICATION_CLASS (gtk_application_parent_class)->local_command_line (application, arguments, exit_status);
|
|
|
|
}
|
|
|
|
|
2010-06-07 20:44:58 +00:00
|
|
|
static void
|
2010-08-11 05:23:23 +00:00
|
|
|
gtk_application_add_platform_data (GApplication *application,
|
|
|
|
GVariantBuilder *builder)
|
2010-06-07 20:44:58 +00:00
|
|
|
{
|
2018-06-04 16:27:45 +00:00
|
|
|
GdkDisplay *display;
|
2010-06-07 20:44:58 +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
|
|
|
/* This is slightly evil.
|
|
|
|
*
|
|
|
|
* We don't have an impl here because we're remote so we can't figure
|
|
|
|
* out what to do on a per-display-server basis.
|
|
|
|
*
|
|
|
|
* So we do all the things... which currently is just one thing.
|
|
|
|
*/
|
2018-06-04 16:27:45 +00:00
|
|
|
display = gdk_display_get_default ();
|
|
|
|
if (display)
|
|
|
|
{
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *startup_id;
|
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-06-04 16:27:45 +00:00
|
|
|
startup_id = gdk_display_get_startup_notification_id (display);
|
|
|
|
if (startup_id && g_utf8_validate (startup_id, -1, NULL))
|
|
|
|
g_variant_builder_add (builder, "{sv}", "desktop-startup-id",
|
|
|
|
g_variant_new_string (startup_id));
|
|
|
|
}
|
2010-06-07 20:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
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
|
|
|
gtk_application_before_emit (GApplication *g_application,
|
2010-08-11 05:23:23 +00:00
|
|
|
GVariant *platform_data)
|
2010-06-07 20:44:58 +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
|
|
|
GtkApplication *application = GTK_APPLICATION (g_application);
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2010-06-07 20:44:58 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
gtk_application_impl_before_emit (priv->impl, platform_data);
|
2010-06-07 20:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-08-11 05:23:23 +00:00
|
|
|
gtk_application_after_emit (GApplication *application,
|
|
|
|
GVariant *platform_data)
|
2010-06-07 20:44:58 +00:00
|
|
|
{
|
2018-05-21 14:44:02 +00:00
|
|
|
const char *startup_notification_id = NULL;
|
|
|
|
|
|
|
|
g_variant_lookup (platform_data, "desktop-startup-id", "&s", &startup_notification_id);
|
|
|
|
if (startup_notification_id)
|
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
|
|
|
display = gdk_display_get_default ();
|
|
|
|
if (display)
|
|
|
|
gdk_display_notify_startup_complete (display, startup_notification_id);
|
|
|
|
}
|
2010-06-07 20:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_init (GtkApplication *application)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2012-04-20 17:29:11 +00:00
|
|
|
|
2020-03-20 16:22:29 +00:00
|
|
|
priv->muxer = gtk_action_muxer_new (NULL);
|
2018-07-07 14:15:02 +00:00
|
|
|
|
|
|
|
priv->accels = gtk_application_accels_new ();
|
2010-06-07 20:44:58 +00:00
|
|
|
}
|
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
static void
|
|
|
|
gtk_application_window_added (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2011-05-31 23:12:13 +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
|
|
|
if (GTK_IS_APPLICATION_WINDOW (window))
|
2015-10-21 04:11:59 +00:00
|
|
|
{
|
|
|
|
gtk_application_window_set_id (GTK_APPLICATION_WINDOW (window), ++priv->last_window_id);
|
|
|
|
if (priv->help_overlay_path)
|
|
|
|
{
|
|
|
|
GtkBuilder *builder;
|
|
|
|
GtkWidget *help_overlay;
|
|
|
|
|
|
|
|
builder = gtk_builder_new_from_resource (priv->help_overlay_path);
|
|
|
|
help_overlay = GTK_WIDGET (gtk_builder_get_object (builder, "help_overlay"));
|
|
|
|
if (GTK_IS_SHORTCUTS_WINDOW (help_overlay))
|
|
|
|
gtk_application_window_set_help_overlay (GTK_APPLICATION_WINDOW (window),
|
|
|
|
GTK_SHORTCUTS_WINDOW (help_overlay));
|
|
|
|
g_object_unref (builder);
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
priv->windows = g_list_prepend (priv->windows, window);
|
|
|
|
gtk_window_set_application (window, application);
|
|
|
|
g_application_hold (G_APPLICATION (application));
|
|
|
|
|
2018-01-06 17:11:40 +00:00
|
|
|
g_signal_connect (window, "notify::is-active",
|
|
|
|
G_CALLBACK (gtk_application_window_active_cb),
|
2011-05-31 23:12:13 +00:00
|
|
|
application);
|
2011-12-05 05:27:11 +00:00
|
|
|
|
2015-10-21 04:11:59 +00:00
|
|
|
gtk_application_impl_window_added (priv->impl, window);
|
|
|
|
|
|
|
|
gtk_application_impl_active_window_changed (priv->impl, window);
|
2012-08-17 22:05:27 +00:00
|
|
|
|
2015-09-05 14:44:27 +00:00
|
|
|
g_object_notify_by_pspec (G_OBJECT (application), gtk_application_props[PROP_ACTIVE_WINDOW]);
|
2011-05-31 23:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_window_removed (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2012-08-17 22:05:27 +00:00
|
|
|
gpointer old_active;
|
|
|
|
|
|
|
|
old_active = priv->windows;
|
2011-05-31 23:12:13 +00:00
|
|
|
|
2015-09-23 18:35:58 +00:00
|
|
|
if (priv->impl)
|
|
|
|
gtk_application_impl_window_removed (priv->impl, window);
|
2011-12-05 05:27:11 +00:00
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (window,
|
2018-01-06 17:11:40 +00:00
|
|
|
gtk_application_window_active_cb,
|
2011-05-31 23:12:13 +00:00
|
|
|
application);
|
|
|
|
|
|
|
|
g_application_release (G_APPLICATION (application));
|
|
|
|
priv->windows = g_list_remove (priv->windows, window);
|
2011-06-20 21:29:45 +00:00
|
|
|
gtk_window_set_application (window, NULL);
|
2012-08-17 22:05:27 +00:00
|
|
|
|
2015-09-23 18:35:58 +00:00
|
|
|
if (priv->windows != old_active && priv->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
|
|
|
{
|
2015-09-23 18:35:58 +00:00
|
|
|
gtk_application_impl_active_window_changed (priv->impl, priv->windows ? priv->windows->data : NULL);
|
2015-09-05 14:44:27 +00:00
|
|
|
g_object_notify_by_pspec (G_OBJECT (application), gtk_application_props[PROP_ACTIVE_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
|
|
|
}
|
2011-05-31 23:12:13 +00:00
|
|
|
}
|
|
|
|
|
2012-01-03 19:52:29 +00:00
|
|
|
static void
|
|
|
|
gtk_application_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkApplication *application = GTK_APPLICATION (object);
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2012-01-03 19:52:29 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_REGISTER_SESSION:
|
2018-07-07 14:15:02 +00:00
|
|
|
g_value_set_boolean (value, priv->register_session);
|
2012-01-03 19:52:29 +00:00
|
|
|
break;
|
|
|
|
|
2018-08-30 05:06:51 +00:00
|
|
|
case PROP_SCREENSAVER_ACTIVE:
|
|
|
|
g_value_set_boolean (value, priv->screensaver_active);
|
|
|
|
break;
|
|
|
|
|
2012-01-16 19:46:04 +00:00
|
|
|
case PROP_MENUBAR:
|
|
|
|
g_value_set_object (value, gtk_application_get_menubar (application));
|
|
|
|
break;
|
|
|
|
|
2014-05-09 00:30:40 +00:00
|
|
|
case PROP_ACTIVE_WINDOW:
|
|
|
|
g_value_set_object (value, gtk_application_get_active_window (application));
|
|
|
|
break;
|
|
|
|
|
2012-01-03 19:52:29 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkApplication *application = GTK_APPLICATION (object);
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2012-01-03 19:52:29 +00:00
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_REGISTER_SESSION:
|
2018-07-07 14:15:02 +00:00
|
|
|
priv->register_session = g_value_get_boolean (value);
|
2012-01-03 19:52:29 +00:00
|
|
|
break;
|
|
|
|
|
2012-01-16 19:46:04 +00:00
|
|
|
case PROP_MENUBAR:
|
|
|
|
gtk_application_set_menubar (application, g_value_get_object (value));
|
|
|
|
break;
|
|
|
|
|
2012-01-03 19:52:29 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-16 19:46:04 +00:00
|
|
|
static void
|
|
|
|
gtk_application_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkApplication *application = GTK_APPLICATION (object);
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2012-01-16 19:46:04 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
g_clear_object (&priv->menus_builder);
|
|
|
|
g_clear_object (&priv->menubar);
|
|
|
|
g_clear_object (&priv->muxer);
|
|
|
|
g_clear_object (&priv->accels);
|
2013-07-10 03:44:51 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
g_free (priv->help_overlay_path);
|
2015-10-21 04:11:59 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gtk_application_parent_class)->finalize (object);
|
2012-01-16 19:46:04 +00:00
|
|
|
}
|
|
|
|
|
2018-05-19 19:36:00 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_application_dbus_register (GApplication *application,
|
|
|
|
GDBusConnection *connection,
|
2020-06-18 07:47:16 +00:00
|
|
|
const char *object_path,
|
2018-05-19 19:36:00 +00:00
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_dbus_unregister (GApplication *application,
|
|
|
|
GDBusConnection *connection,
|
2020-06-18 07:47:16 +00:00
|
|
|
const char *object_path)
|
2018-05-19 19:36:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-06-07 20:44:58 +00:00
|
|
|
static void
|
2010-08-11 05:23:23 +00:00
|
|
|
gtk_application_class_init (GtkApplicationClass *class)
|
2010-06-07 20:44:58 +00:00
|
|
|
{
|
2011-12-05 22:41:56 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
2010-08-11 05:23:23 +00:00
|
|
|
GApplicationClass *application_class = G_APPLICATION_CLASS (class);
|
2010-06-07 20:44:58 +00:00
|
|
|
|
2012-01-03 19:52:29 +00:00
|
|
|
object_class->get_property = gtk_application_get_property;
|
|
|
|
object_class->set_property = gtk_application_set_property;
|
2012-01-16 19:46:04 +00:00
|
|
|
object_class->finalize = gtk_application_finalize;
|
2011-12-05 22:41:56 +00:00
|
|
|
|
2014-02-06 17:33:44 +00:00
|
|
|
application_class->local_command_line = gtk_application_local_command_line;
|
2010-08-11 05:23:23 +00:00
|
|
|
application_class->add_platform_data = gtk_application_add_platform_data;
|
|
|
|
application_class->before_emit = gtk_application_before_emit;
|
|
|
|
application_class->after_emit = gtk_application_after_emit;
|
|
|
|
application_class->startup = gtk_application_startup;
|
2011-12-05 05:25:28 +00:00
|
|
|
application_class->shutdown = gtk_application_shutdown;
|
2018-05-19 19:36:00 +00:00
|
|
|
application_class->dbus_register = gtk_application_dbus_register;
|
|
|
|
application_class->dbus_unregister = gtk_application_dbus_unregister;
|
2010-06-08 22:06:03 +00:00
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
class->window_added = gtk_application_window_added;
|
|
|
|
class->window_removed = gtk_application_window_removed;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkApplication::window-added:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: the `GtkApplication` which emitted the signal
|
|
|
|
* @window: the newly-added [class@Gtk.Window]
|
2011-05-31 23:12:13 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Emitted when a [class@Gtk.Window] is added to `application` through
|
|
|
|
* [method@Gtk.Application.add_window].
|
2011-05-31 23:12:13 +00:00
|
|
|
*/
|
|
|
|
gtk_application_signals[WINDOW_ADDED] =
|
2015-09-12 13:13:00 +00:00
|
|
|
g_signal_new (I_("window-added"), GTK_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
|
2011-05-31 23:12:13 +00:00
|
|
|
G_STRUCT_OFFSET (GtkApplicationClass, window_added),
|
|
|
|
NULL, NULL,
|
2019-05-31 03:56:50 +00:00
|
|
|
NULL,
|
2011-05-31 23:12:13 +00:00
|
|
|
G_TYPE_NONE, 1, GTK_TYPE_WINDOW);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkApplication::window-removed:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: the `GtkApplication` which emitted the signal
|
|
|
|
* @window: the [class@Gtk.Window] that is being removed
|
2011-05-31 23:12:13 +00:00
|
|
|
*
|
2021-02-27 22:50:04 +00:00
|
|
|
* Emitted when a [class@Gtk.Window] is removed from `application`.
|
|
|
|
*
|
|
|
|
* This can happen as a side-effect of the window being destroyed
|
|
|
|
* or explicitly through [method@Gtk.Application.remove_window].
|
2011-05-31 23:12:13 +00:00
|
|
|
*/
|
|
|
|
gtk_application_signals[WINDOW_REMOVED] =
|
2015-09-12 13:13:00 +00:00
|
|
|
g_signal_new (I_("window-removed"), GTK_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
|
2011-05-31 23:12:13 +00:00
|
|
|
G_STRUCT_OFFSET (GtkApplicationClass, window_removed),
|
|
|
|
NULL, NULL,
|
2019-05-31 03:56:50 +00:00
|
|
|
NULL,
|
2011-05-31 23:12:13 +00:00
|
|
|
G_TYPE_NONE, 1, GTK_TYPE_WINDOW);
|
2012-01-03 19:52:29 +00:00
|
|
|
|
2019-01-22 01:45:15 +00:00
|
|
|
/**
|
|
|
|
* GtkApplication::query-end:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: the `GtkApplication` which emitted the signal
|
2019-01-22 01:45:15 +00:00
|
|
|
*
|
2021-02-27 22:50:04 +00:00
|
|
|
* Emitted when the session manager is about to end the session.
|
|
|
|
*
|
|
|
|
* This signal is only emitted if [property@Gtk.Application:register-session]
|
|
|
|
* is `TRUE`. Applications can connect to this signal and call
|
|
|
|
* [method@Gtk.Application.inhibit] with `GTK_APPLICATION_INHIBIT_LOGOUT`
|
|
|
|
* to delay the end of the session until state has been saved.
|
2019-01-22 01:45:15 +00:00
|
|
|
*/
|
|
|
|
gtk_application_signals[QUERY_END] =
|
|
|
|
g_signal_new (I_("query-end"), GTK_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
|
|
|
|
0,
|
|
|
|
NULL, NULL,
|
|
|
|
NULL,
|
|
|
|
G_TYPE_NONE, 0);
|
2021-02-27 22:50:04 +00:00
|
|
|
|
2012-01-11 03:16:01 +00:00
|
|
|
/**
|
2012-01-25 03:22:08 +00:00
|
|
|
* GtkApplication:register-session:
|
2012-01-11 03:16:01 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Set this property to `TRUE` to register with the session manager.
|
2021-02-27 22:50:04 +00:00
|
|
|
*
|
2021-02-18 18:28:48 +00:00
|
|
|
* This will make GTK track the session state (such as the
|
2021-02-22 14:55:55 +00:00
|
|
|
* [property@Gtk.Application:screensaver-active] property).
|
2012-01-11 03:16:01 +00:00
|
|
|
*/
|
2015-09-05 14:44:27 +00:00
|
|
|
gtk_application_props[PROP_REGISTER_SESSION] =
|
2012-01-03 19:52:29 +00:00
|
|
|
g_param_spec_boolean ("register-session",
|
|
|
|
P_("Register session"),
|
|
|
|
P_("Register with the session manager"),
|
2015-09-05 14:44:27 +00:00
|
|
|
FALSE,
|
|
|
|
G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS);
|
2012-01-16 19:46:04 +00:00
|
|
|
|
2018-08-30 05:06:51 +00:00
|
|
|
/**
|
|
|
|
* GtkApplication:screensaver-active:
|
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* This property is `TRUE` if GTK believes that the screensaver is
|
2021-02-27 22:50:04 +00:00
|
|
|
* currently active.
|
|
|
|
*
|
|
|
|
* GTK only tracks session state (including this) when
|
|
|
|
* [property@Gtk.Application:register-session] is set to %TRUE.
|
2018-08-30 05:06:51 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Tracking the screensaver state is currently only supported on
|
|
|
|
* Linux.
|
2018-08-30 05:06:51 +00:00
|
|
|
*/
|
|
|
|
gtk_application_props[PROP_SCREENSAVER_ACTIVE] =
|
|
|
|
g_param_spec_boolean ("screensaver-active",
|
|
|
|
P_("Screensaver Active"),
|
|
|
|
P_("Whether the screensaver is active"),
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READABLE|G_PARAM_STATIC_STRINGS);
|
|
|
|
|
2021-02-22 14:55:55 +00:00
|
|
|
/**
|
2021-02-27 22:50:04 +00:00
|
|
|
* GtkApplication:menubar: (attributes org.gtk.Property.get=gtk_application_get_menubar org.gtk.Property.set=gtk_application_set_menubar)
|
2021-02-22 14:55:55 +00:00
|
|
|
*
|
|
|
|
* The `GMenuModel` to be used for the application's menu bar.
|
|
|
|
*/
|
2015-09-05 14:44:27 +00:00
|
|
|
gtk_application_props[PROP_MENUBAR] =
|
2012-01-16 19:46:04 +00:00
|
|
|
g_param_spec_object ("menubar",
|
|
|
|
P_("Menubar"),
|
|
|
|
P_("The GMenuModel for the menubar"),
|
|
|
|
G_TYPE_MENU_MODEL,
|
2015-09-05 14:44:27 +00:00
|
|
|
G_PARAM_READWRITE|G_PARAM_STATIC_STRINGS);
|
2012-08-17 22:05:27 +00:00
|
|
|
|
2021-02-22 14:55:55 +00:00
|
|
|
/**
|
2021-02-27 22:50:04 +00:00
|
|
|
* GtkApplication:active-window: (attributes org.gtk.Property.get=gtk_application_get_active_window)
|
2021-02-22 14:55:55 +00:00
|
|
|
*
|
|
|
|
* The currently focused window of the application.
|
|
|
|
*/
|
2015-09-05 14:44:27 +00:00
|
|
|
gtk_application_props[PROP_ACTIVE_WINDOW] =
|
2012-08-17 22:05:27 +00:00
|
|
|
g_param_spec_object ("active-window",
|
|
|
|
P_("Active window"),
|
|
|
|
P_("The window which most recently had focus"),
|
|
|
|
GTK_TYPE_WINDOW,
|
2015-09-05 14:44:27 +00:00
|
|
|
G_PARAM_READABLE|G_PARAM_STATIC_STRINGS);
|
|
|
|
|
|
|
|
g_object_class_install_properties (object_class, NUM_PROPERTIES, gtk_application_props);
|
2010-10-19 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
2010-10-23 19:24:24 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_new:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application_id: (nullable): The application ID
|
2010-10-23 19:24:24 +00:00
|
|
|
* @flags: the application flags
|
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Creates a new `GtkApplication` instance.
|
2010-10-23 19:24:24 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* When using `GtkApplication`, it is not necessary to call [func@Gtk.init]
|
2012-10-30 16:52:11 +00:00
|
|
|
* manually. It is called as soon as the application gets registered as
|
|
|
|
* the primary instance.
|
2010-10-23 19:24:24 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Concretely, [func@Gtk.init] is called in the default handler for the
|
|
|
|
* `GApplication::startup` signal. Therefore, `GtkApplication` subclasses should
|
|
|
|
* always chain up in their `GApplication::startup` handler before using any GTK
|
|
|
|
* API.
|
2012-01-25 03:22:08 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Note that commandline arguments are not passed to [func@Gtk.init].
|
2011-12-17 05:22:06 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* If `application_id` is not %NULL, then it must be valid. See
|
|
|
|
* `g_application_id_is_valid()`.
|
2012-05-28 08:59:56 +00:00
|
|
|
*
|
|
|
|
* If no application ID is given then some features (most notably application
|
2020-05-11 16:47:20 +00:00
|
|
|
* uniqueness) will be disabled.
|
2010-10-23 19:24:24 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Returns: a new `GtkApplication` instance
|
2010-10-23 19:24:24 +00:00
|
|
|
*/
|
2010-10-19 19:10:02 +00:00
|
|
|
GtkApplication *
|
2020-07-24 18:40:36 +00:00
|
|
|
gtk_application_new (const char *application_id,
|
2010-10-19 19:10:02 +00:00
|
|
|
GApplicationFlags flags)
|
|
|
|
{
|
2012-06-12 14:13:06 +00:00
|
|
|
g_return_val_if_fail (application_id == NULL || g_application_id_is_valid (application_id), NULL);
|
2010-10-19 19:10:02 +00:00
|
|
|
|
|
|
|
return g_object_new (GTK_TYPE_APPLICATION,
|
|
|
|
"application-id", application_id,
|
|
|
|
"flags", flags,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-10-20 09:06:19 +00:00
|
|
|
* gtk_application_add_window:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
|
|
|
* @window: a `GtkWindow`
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Adds a window to `application`.
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* This call can only happen after the `application` has started;
|
2015-10-01 17:58:32 +00:00
|
|
|
* typically, you should add new application windows in response
|
2021-02-22 14:55:55 +00:00
|
|
|
* to the emission of the `GApplication::activate` signal.
|
2015-10-01 17:58:32 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* This call is equivalent to setting the [property@Gtk.Window:application]
|
|
|
|
* property of `window` to `application`.
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
2011-01-25 03:20:35 +00:00
|
|
|
* Normally, the connection between the application and the window
|
|
|
|
* will remain until the window is destroyed, but you can explicitly
|
2021-02-22 14:55:55 +00:00
|
|
|
* remove it with [method@Gtk.Application.remove_window].
|
2011-01-25 03:20:35 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* GTK will keep the `application` running as long as it has
|
2011-01-25 03:20:35 +00:00
|
|
|
* any windows.
|
2010-10-19 19:10:02 +00:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_application_add_window (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2010-10-19 19:10:02 +00:00
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
2016-04-10 14:58:49 +00:00
|
|
|
g_return_if_fail (GTK_IS_WINDOW (window));
|
2010-10-19 19:10:02 +00:00
|
|
|
|
2015-10-01 17:58:32 +00:00
|
|
|
if (!g_application_get_is_registered (G_APPLICATION (application)))
|
|
|
|
{
|
|
|
|
g_critical ("New application windows must be added after the "
|
|
|
|
"GApplication::startup signal has been emitted.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
if (!g_list_find (priv->windows, window))
|
2011-05-31 23:12:13 +00:00
|
|
|
g_signal_emit (application,
|
|
|
|
gtk_application_signals[WINDOW_ADDED], 0, window);
|
2010-10-19 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_application_remove_window:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
|
|
|
* @window: a `GtkWindow`
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Remove a window from `application`.
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* If `window` belongs to `application` then this call is equivalent to
|
|
|
|
* setting the [property@Gtk.Window:application] property of `window` to
|
|
|
|
* `NULL`.
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
|
|
|
* The application may stop running as a result of a call to this
|
2021-02-22 14:55:55 +00:00
|
|
|
* function, if `window` was the last window of the `application`.
|
2010-10-19 19:10:02 +00:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_application_remove_window (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2010-10-19 19:10:02 +00:00
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
2016-04-10 14:58:49 +00:00
|
|
|
g_return_if_fail (GTK_IS_WINDOW (window));
|
2010-10-19 19:10:02 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
if (g_list_find (priv->windows, window))
|
2011-05-31 23:12:13 +00:00
|
|
|
g_signal_emit (application,
|
|
|
|
gtk_application_signals[WINDOW_REMOVED], 0, window);
|
2010-10-19 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_application_get_windows:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Gets a list of the [class@Gtk.Window] instances associated with `application`.
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
2011-05-31 22:28:55 +00:00
|
|
|
* The list is sorted by most recently focused window, such that the first
|
2011-12-01 05:21:11 +00:00
|
|
|
* element is the currently focused window. (Useful for choosing a parent
|
2011-05-31 22:28:55 +00:00
|
|
|
* for a transient window.)
|
|
|
|
*
|
|
|
|
* The list that is returned should not be modified in any way. It will
|
|
|
|
* only remain valid until the next focus change or window creation or
|
|
|
|
* deletion.
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Returns: (element-type GtkWindow) (transfer none): a `GList` of `GtkWindow`
|
|
|
|
* instances
|
2010-10-19 19:10:02 +00:00
|
|
|
**/
|
|
|
|
GList *
|
|
|
|
gtk_application_get_windows (GtkApplication *application)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2010-10-19 19:10:02 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
return priv->windows;
|
2010-06-07 20:44:58 +00:00
|
|
|
}
|
2011-12-05 22:28:19 +00:00
|
|
|
|
2012-04-20 17:29:11 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_get_window_by_id:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
2012-04-20 17:29:11 +00:00
|
|
|
* @id: an identifier number
|
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Returns the [class@Gtk.ApplicationWindow] with the given ID.
|
2012-09-24 01:15:27 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* The ID of a `GtkApplicationWindow` can be retrieved with
|
|
|
|
* [method@Gtk.ApplicationWindow.get_id].
|
2016-04-10 10:56:39 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Returns: (nullable) (transfer none): the window for the given `id`
|
2012-04-20 17:29:11 +00:00
|
|
|
*/
|
|
|
|
GtkWindow *
|
|
|
|
gtk_application_get_window_by_id (GtkApplication *application,
|
|
|
|
guint id)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2012-04-20 17:29:11 +00:00
|
|
|
GList *l;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
for (l = priv->windows; l != NULL; l = l->next)
|
2012-04-20 17:29:11 +00:00
|
|
|
{
|
|
|
|
if (GTK_IS_APPLICATION_WINDOW (l->data) &&
|
|
|
|
gtk_application_window_get_id (GTK_APPLICATION_WINDOW (l->data)) == id)
|
|
|
|
return l->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-08-17 22:05:27 +00:00
|
|
|
/**
|
2021-02-27 22:50:04 +00:00
|
|
|
* gtk_application_get_active_window: (attributes org.gtk.Method.get_property=active-window)
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
2012-08-17 22:05:27 +00:00
|
|
|
*
|
2014-02-05 18:07:34 +00:00
|
|
|
* Gets the “active” window for the application.
|
2012-08-17 22:05:27 +00:00
|
|
|
*
|
|
|
|
* The active window is the one that was most recently focused (within
|
|
|
|
* the application). This window may not have the focus at the moment
|
2015-04-20 22:35:43 +00:00
|
|
|
* if another application has it — this is just the most
|
2012-08-17 22:05:27 +00:00
|
|
|
* recently-focused window within this application.
|
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Returns: (transfer none) (nullable): the active window
|
2012-08-17 22:05:27 +00:00
|
|
|
**/
|
|
|
|
GtkWindow *
|
|
|
|
gtk_application_get_active_window (GtkApplication *application)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2012-08-17 22:05:27 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
return priv->windows ? priv->windows->data : NULL;
|
2012-08-17 22:05:27 +00:00
|
|
|
}
|
|
|
|
|
2013-07-10 03:44:51 +00:00
|
|
|
static void
|
|
|
|
gtk_application_update_accels (GtkApplication *application)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2013-07-10 03:44:51 +00:00
|
|
|
GList *l;
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
for (l = priv->windows; l != NULL; l = l->next)
|
2013-07-10 03:44:51 +00:00
|
|
|
_gtk_window_notify_keys_changed (l->data);
|
|
|
|
}
|
|
|
|
|
2011-12-19 17:33:21 +00:00
|
|
|
/**
|
2021-02-27 22:50:04 +00:00
|
|
|
* gtk_application_set_menubar: (attributes org.gtk.Method.set_property=menubar)
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
|
|
|
* @menubar: (nullable): a `GMenuModel`
|
2011-12-19 17:33:21 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Sets or unsets the menubar for windows of `application`.
|
2011-12-19 17:33:21 +00:00
|
|
|
*
|
|
|
|
* This is a menubar in the traditional sense.
|
|
|
|
*
|
2012-04-30 17:43:23 +00:00
|
|
|
* This can only be done in the primary instance of the application,
|
2021-02-22 14:55:55 +00:00
|
|
|
* after it has been registered. `GApplication::startup` is a good place
|
2012-04-30 17:43:23 +00:00
|
|
|
* to call this.
|
|
|
|
*
|
2011-12-19 17:33:21 +00:00
|
|
|
* Depending on the desktop environment, this may appear at the top of
|
|
|
|
* each window, or at the top of the screen. In some environments, if
|
|
|
|
* both the application menu and the menubar are set, the application
|
|
|
|
* menu will be presented as if it were the first item of the menubar.
|
2015-04-20 22:35:43 +00:00
|
|
|
* Other environments treat the two as completely separate — for example,
|
|
|
|
* the application menu may be rendered by the desktop shell while the
|
|
|
|
* menubar (if set) remains in each individual window.
|
2011-12-19 17:33:21 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Use the base `GActionMap` interface to add actions, to respond to the
|
2015-04-20 22:35:43 +00:00
|
|
|
* user selecting these menu items.
|
2011-12-19 17:33:21 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_application_set_menubar (GtkApplication *application,
|
2012-01-16 19:46:04 +00:00
|
|
|
GMenuModel *menubar)
|
2011-12-19 17:33:21 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2012-01-16 19:46:04 +00:00
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
2012-04-30 17:43:23 +00:00
|
|
|
g_return_if_fail (g_application_get_is_registered (G_APPLICATION (application)));
|
|
|
|
g_return_if_fail (!g_application_get_is_remote (G_APPLICATION (application)));
|
2016-04-10 14:58:49 +00:00
|
|
|
g_return_if_fail (menubar == NULL || G_IS_MENU_MODEL (menubar));
|
2012-01-16 19:46:04 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
if (g_set_object (&priv->menubar, menubar))
|
2012-01-16 19:46:04 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
gtk_application_impl_set_menubar (priv->impl, menubar);
|
2012-01-16 19:46:04 +00:00
|
|
|
|
2015-09-05 14:44:27 +00:00
|
|
|
g_object_notify_by_pspec (G_OBJECT (application), gtk_application_props[PROP_MENUBAR]);
|
2012-01-16 19:46:04 +00:00
|
|
|
}
|
2011-12-19 17:33:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-02-27 22:50:04 +00:00
|
|
|
* gtk_application_get_menubar: (attributes org.gtk.Method.get_property=menubar)
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
2011-12-19 17:33:21 +00:00
|
|
|
*
|
|
|
|
* Returns the menu model that has been set with
|
2021-02-22 14:55:55 +00:00
|
|
|
* [method@Gtk.Application.set_menubar].
|
2011-12-19 17:33:21 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Returns: (nullable) (transfer none): the menubar for windows of `application`
|
2011-12-19 17:33:21 +00:00
|
|
|
*/
|
|
|
|
GMenuModel *
|
|
|
|
gtk_application_get_menubar (GtkApplication *application)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2012-01-16 19:46:04 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
2011-12-19 17:33:21 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
return priv->menubar;
|
2011-12-19 17:33:21 +00:00
|
|
|
}
|
2012-01-03 19:52:29 +00:00
|
|
|
|
2012-01-08 01:01:23 +00:00
|
|
|
/**
|
|
|
|
* GtkApplicationInhibitFlags:
|
2012-01-11 03:16:01 +00:00
|
|
|
* @GTK_APPLICATION_INHIBIT_LOGOUT: Inhibit ending the user session
|
|
|
|
* by logging out or by shutting down the computer
|
2012-01-08 01:01:23 +00:00
|
|
|
* @GTK_APPLICATION_INHIBIT_SWITCH: Inhibit user switching
|
|
|
|
* @GTK_APPLICATION_INHIBIT_SUSPEND: Inhibit suspending the
|
|
|
|
* session or computer
|
|
|
|
* @GTK_APPLICATION_INHIBIT_IDLE: Inhibit the session being
|
|
|
|
* marked as idle (and possibly locked)
|
|
|
|
*
|
2021-02-27 22:50:04 +00:00
|
|
|
* Types of user actions that may be blocked by `GtkApplication`.
|
|
|
|
*
|
|
|
|
* See [method@Gtk.Application.inhibit].
|
2012-01-08 01:01:23 +00:00
|
|
|
*/
|
|
|
|
|
2012-01-07 08:15:26 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_inhibit:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: the `GtkApplication`
|
|
|
|
* @window: (nullable): a `GtkWindow`
|
2012-01-07 08:15:26 +00:00
|
|
|
* @flags: what types of actions should be inhibited
|
2021-02-22 14:55:55 +00:00
|
|
|
* @reason: (nullable): a short, human-readable string that explains
|
|
|
|
* why these operations are inhibited
|
2012-01-07 08:15:26 +00:00
|
|
|
*
|
|
|
|
* Inform the session manager that certain types of actions should be
|
2021-02-27 22:50:04 +00:00
|
|
|
* inhibited.
|
|
|
|
*
|
|
|
|
* This is not guaranteed to work on all platforms and for all types of
|
|
|
|
* actions.
|
2012-01-07 08:15:26 +00:00
|
|
|
*
|
|
|
|
* Applications should invoke this method when they begin an operation
|
|
|
|
* that should not be interrupted, such as creating a CD or DVD. The
|
2021-02-22 14:55:55 +00:00
|
|
|
* types of actions that may be blocked are specified by the `flags`
|
2012-01-07 08:15:26 +00:00
|
|
|
* parameter. When the application completes the operation it should
|
2021-02-22 14:55:55 +00:00
|
|
|
* call [method@Gtk.Application.uninhibit] to remove the inhibitor. Note
|
|
|
|
* that an application can have multiple inhibitors, and all of them must
|
2012-01-11 03:16:01 +00:00
|
|
|
* be individually removed. Inhibitors are also cleared when the
|
|
|
|
* application exits.
|
2012-01-07 08:15:26 +00:00
|
|
|
*
|
|
|
|
* Applications should not expect that they will always be able to block
|
|
|
|
* the action. In most cases, users will be given the option to force
|
|
|
|
* the action to take place.
|
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* The `reason` message should be short and to the point.
|
2012-01-07 08:15:26 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* If `window` is given, the session manager may point the user to
|
2012-01-07 08:15:26 +00:00
|
|
|
* this window to find out more about why the action is inhibited.
|
|
|
|
*
|
|
|
|
* Returns: A non-zero cookie that is used to uniquely identify this
|
2021-02-22 14:55:55 +00:00
|
|
|
* request. It should be used as an argument to [method@Gtk.Application.uninhibit]
|
|
|
|
* in order to remove the request. If the platform does not support
|
|
|
|
* inhibiting or the request failed for some reason, 0 is returned.
|
2012-01-07 08:15:26 +00:00
|
|
|
*/
|
2012-01-03 20:02:49 +00:00
|
|
|
guint
|
|
|
|
gtk_application_inhibit (GtkApplication *application,
|
|
|
|
GtkWindow *window,
|
|
|
|
GtkApplicationInhibitFlags flags,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *reason)
|
2012-01-03 20:02:49 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2012-01-03 20:02:49 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), 0);
|
|
|
|
g_return_val_if_fail (!g_application_get_is_remote (G_APPLICATION (application)), 0);
|
2016-04-10 14:58:49 +00:00
|
|
|
g_return_val_if_fail (window == NULL || GTK_IS_WINDOW (window), 0);
|
2013-07-28 20:09:58 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
return gtk_application_impl_inhibit (priv->impl, window, flags, reason);
|
2012-01-03 20:02:49 +00:00
|
|
|
}
|
|
|
|
|
2012-01-07 08:15:26 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_uninhibit:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: the `GtkApplication`
|
|
|
|
* @cookie: a cookie that was returned by [method@Gtk.Application.inhibit]
|
|
|
|
*
|
2021-02-27 22:50:04 +00:00
|
|
|
* Removes an inhibitor that has been previously established.
|
|
|
|
*
|
|
|
|
* See [method@Gtk.Application.inhibit].
|
2012-01-07 08:15:26 +00:00
|
|
|
*
|
|
|
|
* Inhibitors are also cleared when the application exits.
|
|
|
|
*/
|
2012-01-03 20:02:49 +00:00
|
|
|
void
|
|
|
|
gtk_application_uninhibit (GtkApplication *application,
|
|
|
|
guint cookie)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2012-01-03 20:02:49 +00:00
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
|
|
|
g_return_if_fail (!g_application_get_is_remote (G_APPLICATION (application)));
|
2013-07-28 20:09:58 +00:00
|
|
|
g_return_if_fail (cookie > 0);
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
gtk_application_impl_uninhibit (priv->impl, cookie);
|
2012-01-03 20:02:49 +00:00
|
|
|
}
|
|
|
|
|
2013-07-10 02:33:22 +00:00
|
|
|
GtkActionMuxer *
|
|
|
|
gtk_application_get_parent_muxer_for_window (GtkWindow *window)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplication *application = gtk_window_get_application (window);
|
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2013-07-10 02:33:22 +00:00
|
|
|
|
|
|
|
if (!application)
|
|
|
|
return NULL;
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
return priv->muxer;
|
2013-07-10 02:33:22 +00:00
|
|
|
}
|
2013-07-10 03:44:51 +00:00
|
|
|
|
2016-04-20 15:24:46 +00:00
|
|
|
GtkApplicationAccels *
|
|
|
|
gtk_application_get_application_accels (GtkApplication *application)
|
2013-07-10 03:44:51 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
|
|
|
return priv->accels;
|
2013-07-10 03:44:51 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 03:35:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_list_action_descriptions:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
2013-10-17 03:35:55 +00:00
|
|
|
*
|
|
|
|
* Lists the detailed action names which have associated accelerators.
|
2021-02-27 22:50:04 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* See [method@Gtk.Application.set_accels_for_action].
|
2013-10-17 03:35:55 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Returns: (transfer full) (array zero-terminated=1): the detailed action names
|
2013-10-17 03:35:55 +00:00
|
|
|
*/
|
2020-07-24 18:40:36 +00:00
|
|
|
char **
|
2013-07-10 03:44:51 +00:00
|
|
|
gtk_application_list_action_descriptions (GtkApplication *application)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2016-04-10 14:58:49 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
return gtk_application_accels_list_action_descriptions (priv->accels);
|
2013-07-10 03:44:51 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 03:35:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_set_accels_for_action:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
2014-03-18 11:29:49 +00:00
|
|
|
* @detailed_action_name: a detailed action name, specifying an action
|
2013-10-17 03:35:55 +00:00
|
|
|
* and target to associate accelerators with
|
2015-04-20 22:35:43 +00:00
|
|
|
* @accels: (array zero-terminated=1): a list of accelerators in the format
|
2021-02-22 14:55:55 +00:00
|
|
|
* understood by [func@Gtk.accelerator_parse]
|
2013-10-17 03:35:55 +00:00
|
|
|
*
|
2014-05-05 11:20:31 +00:00
|
|
|
* Sets zero or more keyboard accelerators that will trigger the
|
2021-02-22 14:55:55 +00:00
|
|
|
* given action.
|
|
|
|
*
|
|
|
|
* The first item in `accels` will be the primary accelerator, which may be
|
|
|
|
* displayed in the UI.
|
2013-10-17 03:35:55 +00:00
|
|
|
*
|
2014-05-05 11:20:31 +00:00
|
|
|
* To remove all accelerators for an action, use an empty, zero-terminated
|
2021-02-22 14:55:55 +00:00
|
|
|
* array for `accels`.
|
2014-05-05 11:20:31 +00:00
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* For the `detailed_action_name`, see `g_action_parse_detailed_name()` and
|
|
|
|
* `g_action_print_detailed_name()`.
|
2013-10-17 03:35:55 +00:00
|
|
|
*/
|
2013-07-10 03:44:51 +00:00
|
|
|
void
|
|
|
|
gtk_application_set_accels_for_action (GtkApplication *application,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *detailed_action_name,
|
|
|
|
const char * const *accels)
|
2013-07-10 03:44:51 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2020-07-24 18:40:36 +00:00
|
|
|
char *action_and_target;
|
2013-07-10 03:44:51 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
|
|
|
g_return_if_fail (detailed_action_name != NULL);
|
2016-04-10 14:58:49 +00:00
|
|
|
g_return_if_fail (accels != NULL);
|
2013-07-10 03:44:51 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
gtk_application_accels_set_accels_for_action (priv->accels,
|
2016-04-11 15:28:23 +00:00
|
|
|
detailed_action_name,
|
|
|
|
accels);
|
|
|
|
|
2016-04-20 15:13:26 +00:00
|
|
|
action_and_target = gtk_normalise_detailed_action_name (detailed_action_name);
|
2018-07-07 14:15:02 +00:00
|
|
|
gtk_action_muxer_set_primary_accel (priv->muxer, action_and_target, accels[0]);
|
2013-07-10 03:44:51 +00:00
|
|
|
g_free (action_and_target);
|
2016-04-11 15:28:23 +00:00
|
|
|
|
|
|
|
gtk_application_update_accels (application);
|
2013-07-10 03:44:51 +00:00
|
|
|
}
|
|
|
|
|
2013-10-17 03:35:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_get_accels_for_action:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
2014-03-18 11:29:49 +00:00
|
|
|
* @detailed_action_name: a detailed action name, specifying an action
|
2021-02-22 14:55:55 +00:00
|
|
|
* and target to obtain accelerators for
|
2013-10-17 03:35:55 +00:00
|
|
|
*
|
|
|
|
* Gets the accelerators that are currently associated with
|
|
|
|
* the given action.
|
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* Returns: (transfer full) (array zero-terminated=1) (element-type utf8):
|
|
|
|
* accelerators for `detailed_action_name`
|
2013-10-17 03:35:55 +00:00
|
|
|
*/
|
2020-07-24 18:40:36 +00:00
|
|
|
char **
|
2013-07-10 03:44:51 +00:00
|
|
|
gtk_application_get_accels_for_action (GtkApplication *application,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *detailed_action_name)
|
2013-07-10 03:44:51 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2013-10-27 21:36:32 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
|
|
|
g_return_val_if_fail (detailed_action_name != NULL, NULL);
|
2013-07-10 03:44:51 +00:00
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
return gtk_application_accels_get_accels_for_action (priv->accels,
|
2016-04-11 15:28:23 +00:00
|
|
|
detailed_action_name);
|
2013-07-10 03:44:51 +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
|
|
|
|
2014-08-03 18:27:51 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_get_actions_for_accel:
|
2021-02-22 14:55:55 +00:00
|
|
|
* @application: a `GtkApplication`
|
|
|
|
* @accel: an accelerator that can be parsed by [func@Gtk.accelerator_parse]
|
|
|
|
*
|
|
|
|
* Returns the list of actions (possibly empty) that `accel` maps to.
|
2014-08-03 18:27:51 +00:00
|
|
|
*
|
|
|
|
* Each item in the list is a detailed action name in the usual form.
|
|
|
|
*
|
|
|
|
* This might be useful to discover if an accel already exists in
|
|
|
|
* order to prevent installation of a conflicting accelerator (from
|
|
|
|
* an accelerator editor or a plugin system, for example). Note that
|
|
|
|
* having more than one action per accelerator may not be a bad thing
|
|
|
|
* and might make sense in cases where the actions never appear in the
|
|
|
|
* same context.
|
|
|
|
*
|
|
|
|
* In case there are no actions for a given accelerator, an empty array
|
2021-02-22 14:55:55 +00:00
|
|
|
* is returned. `NULL` is never returned.
|
2014-08-03 18:27:51 +00:00
|
|
|
*
|
|
|
|
* It is a programmer error to pass an invalid accelerator string.
|
|
|
|
*
|
2021-02-22 14:55:55 +00:00
|
|
|
* If you are unsure, check it with [func@Gtk.accelerator_parse] first.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): a %NULL-terminated array of actions for `accel`
|
2014-08-03 18:27:51 +00:00
|
|
|
*/
|
2020-07-24 18:40:36 +00:00
|
|
|
char **
|
2014-08-03 18:27:51 +00:00
|
|
|
gtk_application_get_actions_for_accel (GtkApplication *application,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *accel)
|
2014-08-03 18:27:51 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
2014-08-03 18:27:51 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
|
|
|
g_return_val_if_fail (accel != NULL, NULL);
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
return gtk_application_accels_get_actions_for_accel (priv->accels, accel);
|
2014-08-03 18:27:51 +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
|
|
|
GtkActionMuxer *
|
|
|
|
gtk_application_get_action_muxer (GtkApplication *application)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (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-07-07 14:15:02 +00:00
|
|
|
g_assert (priv->muxer);
|
|
|
|
|
|
|
|
return priv->muxer;
|
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
|
|
|
}
|
|
|
|
|
2014-01-15 06:21:29 +00:00
|
|
|
void
|
|
|
|
gtk_application_insert_action_group (GtkApplication *application,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *name,
|
2014-01-15 06:21:29 +00:00
|
|
|
GActionGroup *action_group)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
|
|
|
gtk_action_muxer_insert (priv->muxer, name, action_group);
|
2014-01-15 06:21:29 +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
|
|
|
void
|
|
|
|
gtk_application_handle_window_realize (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
|
|
|
if (priv->impl)
|
|
|
|
gtk_application_impl_handle_window_realize (priv->impl, 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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_application_handle_window_map (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
|
|
|
if (priv->impl)
|
|
|
|
gtk_application_impl_handle_window_map (priv->impl, 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
|
|
|
}
|
2014-07-04 13:44:12 +00:00
|
|
|
|
2014-07-07 23:44:39 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_get_menu_by_id:
|
|
|
|
* @application: a #GtkApplication
|
|
|
|
* @id: the id of the menu to look up
|
|
|
|
*
|
|
|
|
* Gets a menu from automatically loaded resources.
|
2021-02-22 14:55:55 +00:00
|
|
|
*
|
|
|
|
* See [the section on Automatic resources](class.Application.html#automatic-resources)
|
2014-07-07 23:44:39 +00:00
|
|
|
* for more information.
|
|
|
|
*
|
2020-11-21 15:33:40 +00:00
|
|
|
* Returns: (nullable) (transfer none): Gets the menu with the
|
2014-07-07 23:44:39 +00:00
|
|
|
* given id from the automatically loaded resources
|
|
|
|
*/
|
2014-07-04 13:44:12 +00:00
|
|
|
GMenu *
|
|
|
|
gtk_application_get_menu_by_id (GtkApplication *application,
|
2020-07-24 18:40:36 +00:00
|
|
|
const char *id)
|
2014-07-04 13:44:12 +00:00
|
|
|
{
|
2018-07-07 14:15:02 +00:00
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
2014-07-04 13:44:12 +00:00
|
|
|
GObject *object;
|
|
|
|
|
2016-04-10 14:58:49 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
|
|
|
g_return_val_if_fail (id != NULL, NULL);
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
if (!priv->menus_builder)
|
2014-07-04 13:44:12 +00:00
|
|
|
return NULL;
|
|
|
|
|
2018-07-07 14:15:02 +00:00
|
|
|
object = gtk_builder_get_object (priv->menus_builder, id);
|
2014-07-04 13:44:12 +00:00
|
|
|
|
|
|
|
if (!object || !G_IS_MENU (object))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return G_MENU (object);
|
|
|
|
}
|
2018-08-30 05:06:51 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gtk_application_set_screensaver_active (GtkApplication *application,
|
|
|
|
gboolean active)
|
|
|
|
{
|
|
|
|
GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
|
|
|
|
|
|
|
|
if (priv->screensaver_active != active)
|
|
|
|
{
|
|
|
|
priv->screensaver_active = active;
|
|
|
|
g_object_notify (G_OBJECT (application), "screensaver-active");
|
|
|
|
}
|
|
|
|
}
|