Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  gtkapplication.c

  Sprache: C
 

/*
 * Copyright © 2010 Codethink Limited
 * Copyright © 2013 Canonical Limited
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the licence, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 *
 * Author: Ryan Lortie <desrt@desrt.ca>
 */


#include "config.h"

#include "gtkapplication.h"
#include "gdkprofilerprivate.h"

#include <stdlib.h>

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#include "gtkapplicationprivate.h"
#include "gtkapplicationwindowprivate.h"
#include "gtkmarshalers.h"
#include "gtkmain.h"
#include "gtkicontheme.h"
#include "gtkbuilder.h"
#include "gtkprivate.h"
#include "gtktypebuiltins.h"

/* NB: please do not add backend-specific GDK headers here.  This should
 * be abstracted via GtkApplicationImpl.
 */


#ifdef GDK_WINDOWING_ANDROID
/* Unfortunatly, we'll have to include this here, as we want to force
 * applications running as Android applications to run as service that
 * never exists.
 *
 * It is not possible to move this into GtkApplicationImpl, as
 * gtk_application_startup has yet to be called, which means that
 * gtk_init hasn't been called yet and it is impossible to determine the
 * the correct GtkApplicationImpl to use.
 */

#include "android/gdkandroidinit-private.h"
#endif // GDK_WINDOWING_ANDROID

/**
 * GtkApplication:
 *
 * A high-level API for writing applications.
 *
 * `GtkApplication` supports many aspects of writing a GTK application
 * in a convenient fashion, without enforcing a one-size-fits-all model.
 *
 * Currently, it handles GTK initialization, application 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.
 *
 * While `GtkApplication` works fine with plain [class@Gtk.Window]s,
 * it is recommended to use it together with [class@Gtk.ApplicationWindow].
 *
 * ## Initialization
 *
 * A typical `GtkApplication` will create a window in its
 * [signal@GIO.Application::activate], [signal@GIO.Application::open]
 * or [signal@GIO.Application::command-line] handlers. Note that all
 * of these signals may be emitted multiple times, so handlers must
 * be careful to take existing windows into account.
 *
 * A typical ::activate handler should look like this:
 *
 * ```
 * static void
 * activate (GApplication *gapp)
 * {
 *   GtkApplication *app = GTK_APPLICATION (gapp);
 *   GtkWindow *window;
 *
 *   window = gtk_application_get_active_window (app);
 *   if (!window)
 *     window = create_window (app);
 *
 *   gtk_window_present (window);
 * }
 * ```
 *
 * ## Automatic resources
 *
 * `GtkApplication` will automatically load menus from the `GtkBuilder`
 * resource located at "gtk/menus.ui", relative to the application's
 * resource base path (see [method@Gio.Application.set_resource_base_path]).
 * The menu with the ID "menubar" is taken as the application's
 * menubar. Additional menus (most interesting submenus) can be named
 * and accessed via [method@Gtk.Application.get_menu_by_id] which allows for
 * dynamic population of a part of the menu structure.
 *
 * Note that automatic resource loading uses the resource base path
 * that is set at construction time and will not work if the resource
 * base path is changed at a later time.
 *
 * It is also possible to provide the menubar manually using
 * [method@Gtk.Application.set_menubar].
 *
 * `GtkApplication` will also automatically setup an icon search path for
 * the default icon theme by appending "icons" to the resource base
 * path. This allows your application to easily store its icons as
 * resources. See [method@Gtk.IconTheme.add_resource_path] for more
 * information.
 *
 * If there is a resource located at `gtk/help-overlay.ui` which
 * 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
 * <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`.
 *
 * `GtkApplication` will also automatically set the application id as the
 * default window icon. Use [func@Gtk.Window.set_default_icon_name] or
 * [property@Gtk.Window:icon-name] to override that behavior.
 *
 * ## State saving
 *
 * `GtkApplication` registers with a session manager if possible and
 * offers various functionality related to the session life-cycle,
 * such as state saving.
 *
 * State-saving functionality can be enabled by setting the
 * [property@Gtk.Application:support-save] property to true.
 *
 * In order to save and restore per-window state, applications must
 * connect to the [signal@Gtk.Application::restore-window] signal and
 * handle the [signal@Gtk.ApplicationWindow::save-state] signal. There
 * are also [signal@Gtk.Application::restore-state] and
 * [signal@GtkApplication::save-state] signals, which can be used
 * for global state that is not connected to any window.
 *
 * `GtkApplication` automatically saves state before app shutdown, and by
 * default periodically auto-saves app state (as configured by the
 * [property@Gtk.Application:autosave-interval] property). Applications can
 * also call [method@Gtk.Application.save] themselves at opportune times.
 *
 * # Inhibiting
 *
 * An application can block various ways to end the session with
 * the [method@Gtk.Application.inhibit] function. Typical use cases for
 * 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.
 *
 * ## A simple application
 *
 * [A simple example](https://gitlab.gnome.org/GNOME/gtk/tree/main/examples/bp/bloatpad.c)
 * is available in the GTK source code repository
 *
 * ## See Also
 *
 * - [Using GtkApplication](https://developer.gnome.org/documentation/tutorials/application.html)
 * - [Getting Started with GTK: Basics](getting_started.html#basics)
 */


enum {
  WINDOW_ADDED,
  WINDOW_REMOVED,
  QUERY_END,
  SAVE_STATE,
  RESTORE_STATE,
  RESTORE_WINDOW,
  LAST_SIGNAL
};

static guint gtk_application_signals[LAST_SIGNAL];

enum {
  PROP_ZERO,
  PROP_REGISTER_SESSION,
  PROP_SCREENSAVER_ACTIVE,
  PROP_MENUBAR,
  PROP_ACTIVE_WINDOW,
  PROP_SUPPORT_SAVE,
  PROP_AUTOSAVE_INTERVAL,
  NUM_PROPERTIES
};

static GParamSpec *gtk_application_props[NUM_PROPERTIES];

typedef struct
{
  GtkApplicationImpl *impl;
  GtkApplicationAccels *accels;

  GList *windows;

  GMenuModel      *menubar;
  guint            last_window_id;

  gboolean         register_session;
  gboolean         screensaver_active;
  GtkActionMuxer  *muxer;
  GtkBuilder      *menus_builder;
  char            *help_overlay_path;
  gboolean         support_save;
  guint            autosave_interval;
  guint            autosave_id;
  GVariant        *pending_window_state;
  GVariant        *kept_window_state;
  gboolean         restored;
  gboolean         forgotten;
} GtkApplicationPrivate;

G_DEFINE_TYPE_WITH_PRIVATE (GtkApplication, gtk_application, G_TYPE_APPLICATION)

static void
schedule_autosave (GtkApplication *application);

static void
gtk_application_window_active_cb (GtkWindow      *window,
                                  GParamSpec     *pspec,
                                  GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GList *link;

  schedule_autosave (application);

  if (!gtk_window_is_active (window))
    return;

  /* 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);
    }

  if (priv->impl)
    gtk_application_impl_active_window_changed (priv->impl, window);

  g_object_notify_by_pspec (G_OBJECT (application), gtk_application_props[PROP_ACTIVE_WINDOW]);
}

static void
gtk_application_load_resources (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  const char *base_path;
  const char *optional_slash = "/";

  base_path = g_application_get_resource_base_path (G_APPLICATION (application));

  if (base_path == NULL)
    return;

  if (base_path[strlen (base_path) - 1] == '/')
    optional_slash = "";

  /* Expand the icon search path */
  {
    GtkIconTheme *default_theme;
    char *iconspath;

    default_theme = gtk_icon_theme_get_for_display (gdk_display_get_default ());
    iconspath = g_strconcat (base_path, optional_slash, "icons/", NULL);
    gtk_icon_theme_add_resource_path (default_theme, iconspath);
    g_free (iconspath);
  }

  /* Load the menus */
  {
    char *menuspath;

    menuspath = g_strconcat (base_path, optional_slash, "gtk/menus.ui", NULL);
    if (g_resources_get_info (menuspath, G_RESOURCE_LOOKUP_FLAGS_NONE, NULL, NULL, NULL))
      priv->menus_builder = gtk_builder_new_from_resource (menuspath);
    g_free (menuspath);

    if (priv->menus_builder)
      {
        GObject *menu;

        menu = gtk_builder_get_object (priv->menus_builder, "menubar");
        if (menu != NULL && G_IS_MENU_MODEL (menu))
          gtk_application_set_menubar (application, G_MENU_MODEL (menu));
      }
  }

  /* Help overlay */
  {
    char *path;

    path = g_strconcat (base_path, optional_slash, "gtk/help-overlay.ui", NULL);
    if (g_resources_get_info (path, G_RESOURCE_LOOKUP_FLAGS_NONE, NULL, NULL, NULL))
      {
#ifdef __APPLE__
        const char * const accels[] = { "<Meta>question", NULL };
#else
        const char * const accels[] = { "<Control>question", NULL };
#endif

        priv->help_overlay_path = path;
        gtk_application_set_accels_for_action (application, "win.show-help-overlay", accels);
      }
    else
      {
        g_free (path);
      }
  }
}

static void
gtk_application_set_window_icon (GtkApplication *application)
{
  GtkIconTheme *default_theme;
  const char *appid;

  if (gtk_window_get_default_icon_name () != NULL)
    return;

  default_theme = gtk_icon_theme_get_for_display (gdk_display_get_default ());
  appid = g_application_get_application_id (G_APPLICATION (application));

  if (appid == NULL || !gtk_icon_theme_has_icon (default_theme, appid))
    return;

  gtk_window_set_default_icon_name (appid);
}

static void
gtk_application_startup (GApplication *g_application)
{
  GtkApplication *application = GTK_APPLICATION (g_application);
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  gint64 before G_GNUC_UNUSED;
  gint64 before2 G_GNUC_UNUSED;

  before = GDK_PROFILER_CURRENT_TIME;

  G_APPLICATION_CLASS (gtk_application_parent_class)->startup (g_application);

  gtk_action_muxer_insert (priv->muxer, "app", G_ACTION_GROUP (application));

  gdk_set_portals_app_id (g_application_get_application_id (g_application));

  before2 = GDK_PROFILER_CURRENT_TIME;
  gtk_init ();
  gdk_profiler_end_mark (before2, "gtk_init", NULL);

  priv->impl = gtk_application_impl_new (application, gdk_display_get_default ());

  gtk_application_impl_startup (priv->impl, priv->support_save);

  gtk_application_load_resources (application);
  gtk_application_set_window_icon (application);

  gdk_profiler_end_mark (before, "Application startup", NULL);
}

static void
gtk_application_shutdown (GApplication *g_application)
{
  GtkApplication *application = GTK_APPLICATION (g_application);
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  if (priv->impl == NULL)
    return;

  if (!priv->forgotten)
    gtk_application_save (application);

  gtk_application_impl_shutdown (priv->impl);
  g_clear_object (&priv->impl);

  gtk_action_muxer_remove (priv->muxer, "app");

  gtk_main_sync ();

  G_APPLICATION_CLASS (gtk_application_parent_class)->shutdown (g_application);
}

static gboolean
gtk_application_local_command_line (GApplication   *application,
                                    char         ***arguments,
                                    int            *exit_status)
{
  /* We need to call setlocale() here so --help output works */
  setlocale_initialization ();

#ifdef GDK_WINDOWING_ANDROID
  if (gdk_android_get_activity ())
    {
      g_application_set_flags (application, g_application_get_flags (application) | G_APPLICATION_IS_SERVICE);
      // This should get the application service to never exit on Android
      g_application_hold (application);
    }
#endif // GDK_WINDOWING_ANDROID

  return G_APPLICATION_CLASS (gtk_application_parent_class)->local_command_line (application, arguments, exit_status);
}

static void
gtk_application_add_platform_data (GApplication    *application,
                                   GVariantBuilder *builder)
{
  /* 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.
   */

  const char *startup_id = gdk_get_startup_notification_id ();

  if (startup_id && g_utf8_validate (startup_id, -1, NULL))
    {
      g_variant_builder_add (builder, "{sv}""activation-token",
                             g_variant_new_string (startup_id));
      g_variant_builder_add (builder, "{sv}""desktop-startup-id",
                             g_variant_new_string (startup_id));
    }
}

static gboolean
gtk_application_restore (GtkApplication   *application);

static void
gtk_application_before_emit (GApplication *app,
                             GVariant     *platform_data)
{
  GtkApplication *application = GTK_APPLICATION (app);
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  gtk_application_impl_before_emit (priv->impl, platform_data);

  if (priv->support_save && !priv->restored)
    {
      gtk_application_restore (application);
      schedule_autosave (application);
      priv->restored = TRUE;
    }
}

static void
gtk_application_after_emit (GApplication *application,
                            GVariant     *platform_data)
{
}

static void
gtk_application_init (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  priv->muxer = gtk_action_muxer_new (NULL);

  priv->accels = gtk_application_accels_new ();

  priv->autosave_interval = 15;
}

static void
gtk_application_window_added (GtkApplication *application,
                              GtkWindow      *window)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  if (GTK_IS_APPLICATION_WINDOW (window))
    {
      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"));
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
          if (GTK_IS_SHORTCUTS_WINDOW (help_overlay))
            gtk_application_window_set_help_overlay (GTK_APPLICATION_WINDOW (window),
                                                     GTK_SHORTCUTS_WINDOW (help_overlay));
G_GNUC_END_IGNORE_DEPRECATIONS
          g_object_unref (builder);
        }
    }

  g_clear_pointer (&priv->kept_window_state, g_variant_unref);

  priv->windows = g_list_prepend (priv->windows, window);
  gtk_window_set_application (window, application);
  g_application_hold (G_APPLICATION (application));

  g_signal_connect (window, "notify::is-active",
                    G_CALLBACK (gtk_application_window_active_cb),
                    application);

  gtk_application_impl_window_added (priv->impl, window, priv->pending_window_state);
  priv->pending_window_state = NULL;

  gtk_application_impl_active_window_changed (priv->impl, window);

  g_object_notify_by_pspec (G_OBJECT (application), gtk_application_props[PROP_ACTIVE_WINDOW]);
}

static gboolean
should_remove_from_session (GtkApplication *application,
                            GtkWindow      *window)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  if (!priv->support_save)
    return TRUE;

  if (gtk_window_get_transient_for (window))
    {
      GTK_DEBUG (SESSION, "Removing transient toplevel from session state");
      return TRUE;
    }

  for (GList *l = priv->windows; l != NULL; l = l->next)
    {
      GtkWindow *candidate = GTK_WINDOW (l->data);
      if (candidate != window && !gtk_window_get_transient_for (candidate))
        {
          /* This isn't the last non-transient toplevel in the session */
          GTK_DEBUG (SESSION, "Removing toplevel from session state");
          return TRUE;
        }
    }

  GTK_DEBUG (SESSION, "Keeping last toplevel in session state");
  return FALSE;
}

static GVariant *
collect_window_state (GtkApplication *application,
                      GtkWindow      *window);

static void
gtk_application_window_removed (GtkApplication *application,
                                GtkWindow      *window)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  gpointer old_active;
  gboolean remove_from_session;

  old_active = priv->windows;

  remove_from_session = should_remove_from_session (application, window);

  if (!remove_from_session)
    {
      g_assert (!priv->kept_window_state);
      priv->kept_window_state = collect_window_state (application, window);

      /* If we're keeping around the last window, and the window is now gone,
       * from the user's perspective the app is now gone even if it hasn't
       * technically quit yet. In case the user relaunches the app before
       * it manages to quit, let's re-restore state on next startup. */

      priv->restored = FALSE;
      gtk_application_impl_clear_restore_reason (priv->impl);
    }

  if (priv->impl)
    {
      gtk_application_impl_window_removed (priv->impl, window);

      if (remove_from_session)
        gtk_application_impl_window_forget (priv->impl, window);
    }

  g_signal_handlers_disconnect_by_func (window,
                                        gtk_application_window_active_cb,
                                        application);

  g_application_release (G_APPLICATION (application));
  priv->windows = g_list_remove (priv->windows, window);
  gtk_window_set_application (window, NULL);

  if (priv->windows != old_active && priv->impl)
    {
      gtk_application_impl_active_window_changed (priv->impl, priv->windows ? priv->windows->data : NULL);
      g_object_notify_by_pspec (G_OBJECT (application), gtk_application_props[PROP_ACTIVE_WINDOW]);
    }
}

static void
gtk_application_get_property (GObject    *object,
                              guint       prop_id,
                              GValue     *value,
                              GParamSpec *pspec)
{
  GtkApplication *application = GTK_APPLICATION (object);
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  switch (prop_id)
    {
    case PROP_REGISTER_SESSION:
      g_value_set_boolean (value, priv->register_session);
      break;

    case PROP_SCREENSAVER_ACTIVE:
      g_value_set_boolean (value, priv->screensaver_active);
      break;

    case PROP_MENUBAR:
      g_value_set_object (value, gtk_application_get_menubar (application));
      break;

    case PROP_ACTIVE_WINDOW:
      g_value_set_object (value, gtk_application_get_active_window (application));
      break;

    case PROP_SUPPORT_SAVE:
      g_value_set_boolean (value, priv->support_save);
      break;

    case PROP_AUTOSAVE_INTERVAL:
      g_value_set_uint (value, priv->autosave_interval);
      break;

    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);
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  switch (prop_id)
    {
    case PROP_REGISTER_SESSION:
      priv->register_session = g_value_get_boolean (value);
      break;

    case PROP_MENUBAR:
      gtk_application_set_menubar (application, g_value_get_object (value));
      break;

    case PROP_SUPPORT_SAVE:
      priv->support_save = g_value_get_boolean (value);
      break;

    case PROP_AUTOSAVE_INTERVAL:
      priv->autosave_interval = g_value_get_uint (value);
      break;

    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
      break;
    }
}

static void
gtk_application_finalize (GObject *object)
{
  GtkApplication *application = GTK_APPLICATION (object);
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_clear_object (&priv->menus_builder);
  g_clear_object (&priv->menubar);
  g_clear_object (&priv->muxer);
  g_clear_object (&priv->accels);

  g_clear_pointer (&priv->kept_window_state, g_variant_unref);
  g_clear_handle_id (&priv->autosave_id, g_source_remove);

  g_free (priv->help_overlay_path);

  G_OBJECT_CLASS (gtk_application_parent_class)->finalize (object);
}

static gboolean
gtk_application_dbus_register (GApplication     *application,
                               GDBusConnection  *connection,
                               const char       *object_path,
                               GError          **error)
{
  return TRUE;
}

static void
gtk_application_dbus_unregister (GApplication     *application,
                                 GDBusConnection  *connection,
                                 const char       *object_path)
{
}

static void
gtk_application_class_init (GtkApplicationClass *class)
{
  GObjectClass *object_class = G_OBJECT_CLASS (class);
  GApplicationClass *application_class = G_APPLICATION_CLASS (class);

  object_class->get_property = gtk_application_get_property;
  object_class->set_property = gtk_application_set_property;
  object_class->finalize = gtk_application_finalize;

  application_class->local_command_line = gtk_application_local_command_line;
  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;
  application_class->shutdown = gtk_application_shutdown;
  application_class->dbus_register = gtk_application_dbus_register;
  application_class->dbus_unregister = gtk_application_dbus_unregister;

  class->window_added = gtk_application_window_added;
  class->window_removed = gtk_application_window_removed;

  /**
   * GtkApplication::window-added:
   * @application: the application which emitted the signal
   * @window: the newly-added window
   *
   * Emitted when a window is added to an application.
   *
   * See [method@Gtk.Application.add_window].
   */

  gtk_application_signals[WINDOW_ADDED] =
    g_signal_new (I_("window-added"), GTK_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
                  G_STRUCT_OFFSET (GtkApplicationClass, window_added),
                  NULL, NULL,
                  NULL,
                  G_TYPE_NONE, 1, GTK_TYPE_WINDOW);

  /**
   * GtkApplication::window-removed:
   * @application: the application which emitted the signal
   * @window: the window that is being removed
   *
   * Emitted when a window is removed from an application.
   *
   * This can happen as a side-effect of the window being destroyed
   * or explicitly through [method@Gtk.Application.remove_window].
   */

  gtk_application_signals[WINDOW_REMOVED] =
    g_signal_new (I_("window-removed"), GTK_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
                  G_STRUCT_OFFSET (GtkApplicationClass, window_removed),
                  NULL, NULL,
                  NULL,
                  G_TYPE_NONE, 1, GTK_TYPE_WINDOW);

  /**
   * GtkApplication::query-end:
   * @application: the application which emitted the signal
   *
   * Emitted when the session manager is about to end the session.
   *
   * Applications can connect to this signal and call
   * [method@Gtk.Application.inhibit] with [flags@Gtk.ApplicationInhibitFlags.logout]
   * to delay the end of the session until state has been saved.
   */

  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);

  /**
   * GtkApplication::restore-window:
   * @application: the application which emitted the signal
   * @reason: the reason this window is restored
   * @state: an `a{sv}` dictionary containing the state to restore, as saved by a [signal@Gtk.ApplicationWindow::save-state] handler
   *
   * Emitted when an application's per-window state is restored.
   *
   * In response to this signal, you should create a new application
   * window, add it to @application, apply the provided @state, and present it.
   * The application can use the @reason to determine how much of the state
   * should be restored.
   *
   * You must be careful to be robust in the face of app upgrades and downgrades:
   * the @state might have been created by a previous or occasionally even a future
   * version of your app. Do not assume that a given key exists in the state.
   * Apps must try to restore state saved by a previous version, but are free to
   * discard state if it was written by a future version.
   *
   * GTK will remember which window the user was using most recently, and will
   * emit this signal for that window first. Thus, if you decide that the provided
   * @reason means that only one window should be restored, you can reliably
   * ignore emissions if a window already exists
   *
   * This signal will be emitted whenever the application needs to restore its
   * windows. This normally happens during the initial launch, but it can also
   * happen in the existing application instance if it is re-activated after all
   * application windows were closed.
   *
   * Since: 4.24
   */

  gtk_application_signals[RESTORE_WINDOW] =
    g_signal_new (I_("restore-window"), GTK_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
                  G_STRUCT_OFFSET (GtkApplicationClass, restore_window),
                  NULL, NULL,
                  NULL,
                  G_TYPE_NONE, 2,
                  GTK_TYPE_RESTORE_REASON,
                  G_TYPE_VARIANT);

  /**
   * GtkApplication::save-state:
   * @application: the application which emitted the signal
   * @dict: a dictionary to populate with application state
   *
   * Emitted when the application is saving global state.
   *
   * The handler for this signal should persist any global state of
   * @application into @dict.
   *
   * See [signal@Gtk.Application::restore-state] for how to
   * restore global state, and [signal@Gtk.ApplicationWindow::save-state]
   * and [signal@Gtk.Application::restore-window] for handling
   * per-window state.
   *
   * Returns: true to stop further handlers from running
   *
   * Since: 4.24
   */

  gtk_application_signals[SAVE_STATE] =
    g_signal_new (I_("save-state"),
                  G_TYPE_FROM_CLASS (class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (GtkApplicationClass, save_state),
                  _gtk_boolean_handled_accumulator, NULL,
                  NULL,
                  G_TYPE_BOOLEAN, 1,
                  G_TYPE_VARIANT_DICT);

  /**
   * GtkApplication::restore-state:
   * @application: the application which emitted the signal
   * @reason: the reason for restoring state
   * @state: an `a{sv}` dictionary containing the state to restore, as saved by a [signal@Gtk.Application::save-state] handler
   *
   * Emitted when application global state is restored.
   *
   * The handler for this signal should do the opposite of what the
   * corresponding handler for [signal@Gtk.Application::save-state]
   * does.
   *
   * You must be careful to be robust in the face of app upgrades and downgrades:
   * the @state might have been created by a previous or occasionally even a future
   * version of your app. Do not assume that a given key exists in the state.
   * Apps must try to restore state saved by a previous version, but are free to
   * discard state if it was written by a future version.
   *
   * Returns: true to stop further handlers from running
   *
   * Since: 4.24
   */

  gtk_application_signals[RESTORE_STATE] =
    g_signal_new (I_("restore-state"),
                  G_TYPE_FROM_CLASS (class),
                  G_SIGNAL_RUN_LAST,
                  G_STRUCT_OFFSET (GtkApplicationClass, restore_state),
                  _gtk_boolean_handled_accumulator, NULL,
                  NULL,
                  G_TYPE_BOOLEAN, 2,
                  GTK_TYPE_RESTORE_REASON,
                  G_TYPE_VARIANT);

  /**
   * GtkApplication:register-session:
   *
   * Set this property to true to register with the session manager.
   *
   * This will make GTK track the session state (such as the
   * [property@Gtk.Application:screensaver-active] property).
   *
   * Deprecated: 4.22: This property is ignored. GTK always registers
   * with the session manager
   */

  gtk_application_props[PROP_REGISTER_SESSION] =
    g_param_spec_boolean ("register-session", NULL, NULL,
                          FALSE,
                          G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_DEPRECATED);

  /**
   * GtkApplication:screensaver-active:
   *
   * This property is true if GTK believes that the screensaver
   * is currently active.
   *
   * Tracking the screensaver state is currently only supported on
   * Linux.
   */

  gtk_application_props[PROP_SCREENSAVER_ACTIVE] =
    g_param_spec_boolean ("screensaver-active", NULL, NULL,
                          FALSE,
                          G_PARAM_READABLE | G_PARAM_STATIC_NAME);

  /**
   * GtkApplication:menubar:
   *
   * The menu model to be used for the application's menu bar.
   */

  gtk_application_props[PROP_MENUBAR] =
    g_param_spec_object ("menubar", NULL, NULL,
                         G_TYPE_MENU_MODEL,
                         G_PARAM_READWRITE | G_PARAM_STATIC_NAME);

  /**
   * GtkApplication:active-window:
   *
   * The currently focused window of the application.
   */

  gtk_application_props[PROP_ACTIVE_WINDOW] =
    g_param_spec_object ("active-window", NULL, NULL,
                         GTK_TYPE_WINDOW,
                         G_PARAM_READABLE | G_PARAM_STATIC_NAME);

  /**
   * GtkApplication:support-save:
   *
   * Set this property to true if the application supports
   * state saving and restoring.
   *
   * Since: 4.24
   */

  gtk_application_props[PROP_SUPPORT_SAVE] =
    g_param_spec_boolean ("support-save", NULL, NULL,
                          FALSE,
                          G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_DEPRECATED);

  /**
   * GtkApplication:autosave-interval:
   *
   * The number of seconds between automatic state saves. Defaults to 15.
   * A value of 0 will opt out of automatic state saving.
   *
   * Since: 4.24
   */

  gtk_application_props[PROP_AUTOSAVE_INTERVAL] =
    g_param_spec_uint ("autosave-interval", NULL, NULL,
                       0, G_MAXUINT, 15,
                       G_PARAM_READWRITE | G_PARAM_STATIC_NAME);

  g_object_class_install_properties (object_class, NUM_PROPERTIES, gtk_application_props);
}

/**
 * gtk_application_new:
 * @application_id: (nullable): The application ID
 * @flags: the application flags
 *
 * Creates a new application instance.
 *
 * When using `GtkApplication`, it is not necessary to call [func@Gtk.init]
 * manually. It is called as soon as the application gets registered as
 * the primary instance.
 *
 * Concretely, [func@Gtk.init] is called in the default handler for the
 * `GApplication::startup` signal. Therefore, `GtkApplication` subclasses
 * should always chain up in their [vfunc@GIO.Application.startup] handler
 * before using any GTK API.
 *
 * Note that commandline arguments are not passed to [func@Gtk.init].
 *
 * If `application_id` is not `NULL`, then it must be valid. See
 * [func@Gio.Application.id_is_valid].
 *
 * If no application ID is given then some features (most notably application
 * uniqueness) will be disabled.
 *
 * Returns: a new `GtkApplication` instance
 */

GtkApplication *
gtk_application_new (const char        *application_id,
                     GApplicationFlags  flags)
{
  g_return_val_if_fail (application_id == NULL || g_application_id_is_valid (application_id), NULL);

  return g_object_new (GTK_TYPE_APPLICATION,
                       "application-id", application_id,
                       "flags", flags,
                       NULL);
}

/**
 * gtk_application_add_window:
 * @application: an application
 * @window: a window
 *
 * Adds a window to the application.
 *
 * This call can only happen after the application has started;
 * typically, you should add new application windows in response
 * to the emission of the [signal@GIO.Application::activate] signal.
 *
 * This call is equivalent to setting the [property@Gtk.Window:application]
 * property of the window to @application.
 *
 * Normally, the connection between the application and the window
 * will remain until the window is destroyed, but you can explicitly
 * remove it with [method@Gtk.Application.remove_window].
 *
 * GTK will keep the application running as long as it has any windows.
 **/

void
gtk_application_add_window (GtkApplication *application,
                            GtkWindow      *window)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_if_fail (GTK_IS_APPLICATION (application));
  g_return_if_fail (GTK_IS_WINDOW (window));

  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;
    }

  if (!g_list_find (priv->windows, window))
    g_signal_emit (application,
                   gtk_application_signals[WINDOW_ADDED], 0, window);
}

/**
 * gtk_application_remove_window:
 * @application: an application
 * @window: a window
 *
 * Remove a window from the application.
 *
 * If the window belongs to the application then this call is
 * equivalent to setting the [property@Gtk.Window:application]
 * property of the window to `NULL`.
 *
 * The application may stop running as a result of a call to this
 * function, if the window was the last window of the application.
 **/

void
gtk_application_remove_window (GtkApplication *application,
                               GtkWindow      *window)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_if_fail (GTK_IS_APPLICATION (application));
  g_return_if_fail (GTK_IS_WINDOW (window));

  if (g_list_find (priv->windows, window))
    g_signal_emit (application,
                   gtk_application_signals[WINDOW_REMOVED], 0, window);
}

/**
 * gtk_application_get_windows:
 * @application: an application
 *
 * Gets a list of the window associated with the application.
 *
 * The list is sorted by most recently focused window, such that the first
 * element is the currently focused window. (Useful for choosing a parent
 * 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.
 *
 * Returns: (element-type GtkWindow) (transfer none): the list of windows
 **/

GList *
gtk_application_get_windows (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);

  return priv->windows;
}

/**
 * gtk_application_get_window_by_id:
 * @application: an application`
 * @id: an identifier number
 *
 * Returns the window with the given ID.
 *
 * The ID of a `GtkApplicationWindow` can be retrieved with
 * [method@Gtk.ApplicationWindow.get_id].
 *
 * Returns: (nullable) (transfer none): the window for the given ID
 */

GtkWindow *
gtk_application_get_window_by_id (GtkApplication *application,
                                  guint           id)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GList *l;

  g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);

  for (l = priv->windows; l != NULL; l = l->next)
    {
      if (GTK_IS_APPLICATION_WINDOW (l->data) &&
          gtk_application_window_get_id (GTK_APPLICATION_WINDOW (l->data)) == id)
        return l->data;
    }

  return NULL;
}

/**
 * gtk_application_get_active_window:
 * @application: an application
 *
 * Gets the active window for the application.
 *
 * The active window is the one that was most recently focused
 * (within the application). This window may not have the focus
 * at the moment if another application has it  this is just
 * the most recently-focused window within this application.
 *
 * Returns: (transfer none) (nullable): the active window
 **/

GtkWindow *
gtk_application_get_active_window (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);

  return priv->windows ? priv->windows->data : NULL;
}

static void
gtk_application_update_accels (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GList *l;

  for (l = priv->windows; l != NULL; l = l->next)
    _gtk_window_notify_keys_changed (l->data);
}

/**
 * gtk_application_set_menubar:
 * @application: an application
 * @menubar: (nullable): a menu model
 *
 * Sets or unsets the menubar for windows of the application.
 *
 * This is a menubar in the traditional sense.
 *
 * This can only be done in the primary instance of the application,
 * after it has been registered. [vfunc@GIO.Application.startup] is
 * a good place to call this.
 *
 * 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.
 * 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.
 *
 * Use the base `GActionMap` interface to add actions, to respond to the
 * user selecting these menu items.
 */

void
gtk_application_set_menubar (GtkApplication *application,
                             GMenuModel     *menubar)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_if_fail (GTK_IS_APPLICATION (application));
  g_return_if_fail (g_application_get_is_registered (G_APPLICATION (application)));
  g_return_if_fail (!g_application_get_is_remote (G_APPLICATION (application)));
  g_return_if_fail (menubar == NULL || G_IS_MENU_MODEL (menubar));

  if (g_set_object (&priv->menubar, menubar))
    {
      gtk_application_impl_set_menubar (priv->impl, menubar);

      g_object_notify_by_pspec (G_OBJECT (application), gtk_application_props[PROP_MENUBAR]);
    }
}

/**
 * gtk_application_get_menubar:
 * @application: an application
 *
 * Returns the menu model for the menu bar of the application.
 *
 * Returns: (nullable) (transfer none): the menubar for windows of the application
 */

GMenuModel *
gtk_application_get_menubar (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);

  return priv->menubar;
}

/**
 * GtkApplicationInhibitFlags:
 * @GTK_APPLICATION_INHIBIT_LOGOUT: Inhibit ending the user session
 *   by logging out or by shutting down the computer
 * @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)
 *
 * Types of user actions that may be blocked by `GtkApplication`.
 *
 * See [method@Gtk.Application.inhibit].
 */


/**
 * gtk_application_inhibit:
 * @application: the application
 * @window: (nullable): a window
 * @flags: what types of actions should be inhibited
 * @reason: (nullable): a short, human-readable string that explains
 *   why these operations are inhibited
 *
 * Informs the session manager that certain types of actions should be
 * inhibited.
 *
 * This is not guaranteed to work on all platforms and for all types of
 * actions.
 *
 * Applications should invoke this method when they begin an operation
 * that should not be interrupted, such as creating a CD or DVD. The
 * types of actions that may be blocked are specified by the @flags
 * parameter. When the application completes the operation it should
 * call [method@Gtk.Application.uninhibit] to remove the inhibitor. Note
 * that an application can have multiple inhibitors, and all of them must
 * be individually removed. Inhibitors are also cleared when the
 * application exits.
 *
 * 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.
 *
 * The @reason message should be short and to the point.
 *
 * If a window is given, the session manager may point the user to
 * this window to find out more about why the action is inhibited.
 *
 * The cookie that is returned by this function  should be used as an
 * argument to [method@Gtk.Application.uninhibit] in order to remove
 * the request.
 *
 * Returns: A non-zero cookie that is used to uniquely identify this, or
 *   0 if the platform does not support inhibiting or the request failed
 *   for some reason
 */

guint
gtk_application_inhibit (GtkApplication             *application,
                         GtkWindow                  *window,
                         GtkApplicationInhibitFlags  flags,
                         const char                 *reason)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_val_if_fail (GTK_IS_APPLICATION (application), 0);
  g_return_val_if_fail (!g_application_get_is_remote (G_APPLICATION (application)), 0);
  g_return_val_if_fail (window == NULL || GTK_IS_WINDOW (window), 0);

  return gtk_application_impl_inhibit (priv->impl, window, flags, reason);
}

/**
 * gtk_application_uninhibit:
 * @application: the application
 * @cookie: a cookie that was returned by [method@Gtk.Application.inhibit]
 *
 * Removes an inhibitor that has been previously established.
 *
 * See [method@Gtk.Application.inhibit].
 *
 * Inhibitors are also cleared when the application exits.
 */

void
gtk_application_uninhibit (GtkApplication *application,
                           guint           cookie)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_if_fail (GTK_IS_APPLICATION (application));
  g_return_if_fail (!g_application_get_is_remote (G_APPLICATION (application)));
  g_return_if_fail (cookie > 0);

  gtk_application_impl_uninhibit (priv->impl, cookie);
}

GtkActionMuxer *
gtk_application_get_parent_muxer_for_window (GtkWindow *window)
{
  GtkApplication *application = gtk_window_get_application (window);
  GtkApplicationPrivate *priv;

  if (!application)
    return NULL;

  priv = gtk_application_get_instance_private (application);

  return priv->muxer;
}

GtkApplicationAccels *
gtk_application_get_application_accels (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  return priv->accels;
}

/**
 * gtk_application_list_action_descriptions:
 * @application: an application
 *
 * Lists the detailed action names which have associated accelerators.
 *
 * See [method@Gtk.Application.set_accels_for_action].
 *
 * Returns: (transfer full) (array zero-terminated=1): the detailed action names
 */

char **
gtk_application_list_action_descriptions (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);

  return gtk_application_accels_list_action_descriptions (priv->accels);
}

/**
 * gtk_application_set_accels_for_action:
 * @application: an application
 * @detailed_action_name: a detailed action name, specifying an action
 *   and target to associate accelerators with
 * @accels: (array zero-terminated=1): a list of accelerators in the format
 *   understood by [func@Gtk.accelerator_parse]
 *
 * Sets zero or more keyboard accelerators that will trigger the
 * given action.
 *
 * The first item in @accels will be the primary accelerator,
 * which may be displayed in the UI.
 *
 * To remove all accelerators for an action, use an empty,
 * zero-terminated array for @accels.
 *
 * For the @detailed_action_name, see [func@Gio.Action.parse_detailed_name]
 * and [Gio.Action.print_detailed_name].
 */

void
gtk_application_set_accels_for_action (GtkApplication      *application,
                                       const char          *detailed_action_name,
                                       const char * const *accels)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  char *action_and_target;

  g_return_if_fail (GTK_IS_APPLICATION (application));
  g_return_if_fail (detailed_action_name != NULL);
  g_return_if_fail (accels != NULL);

  gtk_application_accels_set_accels_for_action (priv->accels,
                                                detailed_action_name,
                                                accels);

  action_and_target = gtk_normalise_detailed_action_name (detailed_action_name);
  gtk_action_muxer_set_primary_accel (priv->muxer, action_and_target, accels[0]);
  g_free (action_and_target);

  gtk_application_update_accels (application);
}

/**
 * gtk_application_get_accels_for_action:
 * @application: an application
 * @detailed_action_name: a detailed action name, specifying an action
 *   and target to obtain accelerators for
 *
 * Gets the accelerators that are currently associated with
 * the given action.
 *
 * Returns: (transfer full) (array zero-terminated=1) (element-type utf8):
 *   accelerators for @detailed_action_name
 */

char **
gtk_application_get_accels_for_action (GtkApplication *application,
                                       const char     *detailed_action_name)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
  g_return_val_if_fail (detailed_action_name != NULL, NULL);

  return gtk_application_accels_get_accels_for_action (priv->accels,
                                                       detailed_action_name);
}

/**
 * gtk_application_get_actions_for_accel:
 * @application: a application
 * @accel: an accelerator that can be parsed by [func@Gtk.accelerator_parse]
 *
 * Returns the list of actions (possibly empty) that the accelerator maps to.
 *
 * 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
 * is returned. `NULL` is never returned.
 *
 * It is a programmer error to pass an invalid accelerator string.
 *
 * If you are unsure, check it with [func@Gtk.accelerator_parse] first.
 *
 * Returns: (transfer full): actions for @accel
 */

char **
gtk_application_get_actions_for_accel (GtkApplication *application,
                                       const char     *accel)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
  g_return_val_if_fail (accel != NULL, NULL);

  return gtk_application_accels_get_actions_for_accel (priv->accels, accel);
}

GtkActionMuxer *
gtk_application_get_action_muxer (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  g_assert (priv->muxer);

  return priv->muxer;
}

void
gtk_application_insert_action_group (GtkApplication *application,
                                     const char     *name,
                                     GActionGroup   *action_group)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  gtk_action_muxer_insert (priv->muxer, name, action_group);
}

void
gtk_application_handle_window_realize (GtkApplication *application,
                                       GtkWindow      *window)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  if (priv->impl)
    gtk_application_impl_handle_window_realize (priv->impl, window);
}

void
gtk_application_handle_window_map (GtkApplication *application,
                                   GtkWindow      *window)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  if (priv->impl)
    gtk_application_impl_handle_window_map (priv->impl, window);
}

/**
 * gtk_application_get_menu_by_id:
 * @application: an application
 * @id: the ID of the menu to look up
 *
 * Gets a menu from automatically loaded resources.
 *
 * See [the section on Automatic resources](class.Application.html#automatic-resources)
 * for more information.
 *
 * Returns: (nullable) (transfer none): Gets the menu with the
 *   given ID from the automatically loaded resources
 */

GMenu *
gtk_application_get_menu_by_id (GtkApplication *application,
                                const char     *id)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GObject *object;

  g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
  g_return_val_if_fail (id != NULL, NULL);

  if (!priv->menus_builder)
    return NULL;

  object = gtk_builder_get_object (priv->menus_builder, id);

  if (!object || !G_IS_MENU (object))
    return NULL;

  return G_MENU (object);
}

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_by_pspec (G_OBJECT (application), gtk_application_props[PROP_SCREENSAVER_ACTIVE]);
    }
}

static GVariant *
collect_window_state (GtkApplication *application,
                      GtkWindow      *window)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GVariantBuilder builder;
  GVariantDict *dict;
  GVariant *state;

  g_variant_builder_init (&builder, G_VARIANT_TYPE_VARDICT);
  gtk_application_impl_collect_window_state (priv->impl, window, &builder);

  dict = g_variant_dict_new (NULL);
  if (GTK_IS_APPLICATION_WINDOW (window))
    gtk_application_window_save_state (GTK_APPLICATION_WINDOW (window), dict);

  state = g_variant_new ("(a{sv}@a{sv})", &builder, g_variant_dict_end (dict));
  g_variant_dict_unref (dict);

  g_variant_ref_sink (state);
  return state;
}

/* State saving.
 *
 * The state is stored in a GVariant of the following form:
 *
 * (a{sv}a{sv}a(a{sv}a{sv}))
 *
 *  - the first a{sv} contains global GTK state
 *  - the second a{sv} contains global application state
 *  - the last array contains per-window state. For each
 *    window there is a tuple of per-window GTK state and
 *    application state
 *
 *  Global GTK state is applied during startup (since it contains
 *  IDs that are needed for session registration). All other state
 *  is applied during activate.
 */

static GVariant *
collect_state (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GVariantBuilder win_builder;
  GVariant *state;
  GVariantBuilder global_builder;
  GVariantDict *global_dict;
  gboolean handled;

  g_variant_builder_init (&win_builder, G_VARIANT_TYPE ("a(a{sv}a{sv})"));

  if (priv->kept_window_state)
    {
      GTK_DEBUG (SESSION, "Using state of kept last window");
      g_variant_builder_add_value (&win_builder, priv->kept_window_state);
    }
  else
    {
      GTK_DEBUG (SESSION, "Collecting state for %d windows", g_list_length (priv->windows));

      for (GList *l = priv->windows; l != NULL; l = l->next)
        {
          GtkWindow *window = GTK_WINDOW (l->data);
          GVariant *win_state;

          win_state = collect_window_state (application, window);
          g_variant_builder_add_value (&win_builder, win_state);

          g_variant_unref (win_state);
        }
    }

  g_variant_builder_init (&global_builder, G_VARIANT_TYPE_VARDICT);
  gtk_application_impl_collect_global_state (priv->impl, &global_builder);

  global_dict = g_variant_dict_new (NULL);
  g_signal_emit (application, gtk_application_signals[SAVE_STATE], 0, global_dict, &handled);

  state = g_variant_new ("(a{sv}@a{sv}a(a{sv}a{sv}))",
                         &global_builder,
                         g_variant_dict_end (global_dict),
                         &win_builder);

  g_variant_dict_unref (global_dict);

  g_variant_ref_sink (state);

  return state;
}

/**
 * gtk_application_save:
 * @application: an application
 *
 * Saves the state of the application.
 *
 * See [method@Gtk.Application.forget] for a way to forget the state.
 *
 * Since: 4.24
 */

void
gtk_application_save (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GVariant *state;

  g_return_if_fail (GTK_IS_APPLICATION (application));

  if (!priv->support_save)
    return;

  if (priv->forgotten)
    {
      for (GList *l = priv->windows; l != NULL; l = l->next)
        {
          GtkWindow *window = GTK_WINDOW (l->data);
          gtk_application_impl_window_unforget (priv->impl, window);
        }

      gtk_application_impl_unforget_state (priv->impl);
    }

  state = collect_state (application);
  gtk_application_impl_store_state (priv->impl, state);
  g_variant_unref (state);

  priv->forgotten = FALSE;
  schedule_autosave (application);
}

/**
 * gtk_application_forget:
 * @application: an application
 *
 * Forget state that has been previously saved and prevent further automatic
 * state saving.
 *
 * In order to re-enable state saving, call [method@Gtk.Application.save].
 *
 * Since: 4.24
 */

void
gtk_application_forget (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  if (!priv->support_save)
    return;

  if (priv->kept_window_state)
    {
      GVariant *gtk_state;
      g_variant_get (priv->kept_window_state, "(@a{sv}@a{sv})", >k_state, NULL);
      gtk_application_impl_window_forget_by_state (priv->impl, gtk_state);
      g_variant_unref (gtk_state);
      g_clear_pointer (&priv->kept_window_state, g_variant_unref);
    }

  for (GList *l = priv->windows; l != NULL; l = l->next)
    {
      GtkWindow *window = GTK_WINDOW (l->data);
      gtk_application_impl_window_forget (priv->impl, window);
    }

  gtk_application_impl_forget_state (priv->impl);

  if (priv->autosave_id)
    GTK_DEBUG (SESSION, "State forgotten, cancelling autosave");
  g_clear_handle_id (&priv->autosave_id, g_source_remove);

  priv->forgotten = TRUE;
}

static void
restore_window (GtkApplication   *application,
                GtkRestoreReason  reason,
                GVariant         *app_state,
                GVariant         *gtk_state)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  priv->pending_window_state = gtk_state;
  g_signal_emit (application, gtk_application_signals[RESTORE_WINDOW], 0, reason, app_state);

  if (priv->pending_window_state)
    {
      GTK_DEBUG (SESSION, "App didn't restore a toplevel, removing it from session");
      gtk_application_impl_window_forget_by_state (priv->impl, gtk_state);
      priv->pending_window_state = NULL;
    }
}

static void
restore_file_state (GtkApplication   *application,
               GtkRestoreReason  reason,
               GVariant         *state)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GVariant *gtk_state;
  GVariant *app_state;
  GVariantIter *iter;
  gboolean handled;

  g_return_if_fail (g_variant_is_of_type (state, G_VARIANT_TYPE ("(a{sv}a{sv}a(a{sv}a{sv}))")));

  GTK_DEBUG (SESSION, "Restoring state, reason %s", g_enum_get_value (g_type_class_get (GTK_TYPE_RESTORE_REASON), reason)->value_nick);

  g_variant_get (state, "(@a{sv}@a{sv}a(a{sv}a{sv}))", >k_state, &app_state, NULL);

  gtk_application_impl_restore_global_state (priv->impl, gtk_state);

  g_signal_emit (application, gtk_application_signals[RESTORE_STATE], 0, reason, app_state, &handled);

  g_variant_unref (gtk_state);
  g_variant_unref (app_state);

  g_variant_get (state, "(a{sv}a{sv}a(a{sv}a{sv}))", NULL, NULL, &iter);

  while (g_variant_iter_next (iter, "(@a{sv}@a{sv})", >k_state, &app_state))
    {
      GTK_DEBUG (SESSION, "Restoring window");

      restore_window (application, reason, app_state, gtk_state);

      g_variant_unref (gtk_state);
      g_variant_unref (app_state);
    }

  g_variant_iter_free (iter);
}

static void
restore_kept_state (GtkApplication   *application,
                    GtkRestoreReason  reason)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GVariant *gtk_state;
  GVariant *app_state;

  GTK_DEBUG (SESSION, "Restoring kept toplevel, reason %s", g_enum_get_value (g_type_class_get (GTK_TYPE_RESTORE_REASON), reason)->value_nick);

  g_variant_get (priv->kept_window_state, "(@a{sv}@a{sv})", >k_state, &app_state);

  restore_window (application, reason, app_state, gtk_state);

  g_variant_unref (gtk_state);
  g_variant_unref (app_state);
}

static gboolean
gtk_application_restore (GtkApplication   *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);
  GtkRestoreReason reason;
  GVariant *state;

  reason = gtk_application_impl_get_restore_reason (priv->impl);

  if (reason == GTK_RESTORE_REASON_PRISTINE)
    {
      GTK_DEBUG (SESSION, "Pristine start, not restoring state");
      return FALSE;
    }

  if (priv->kept_window_state)
    {
      restore_kept_state (application, reason);
      return TRUE;
    }

  state = gtk_application_impl_retrieve_state (priv->impl);
  if (state)
    {
      restore_file_state (application, reason, state);
      g_variant_unref (state);
      return TRUE;
    }
  else
    {
      GTK_DEBUG (SESSION, "No saved state, not restoring");
      return FALSE;
    }
}

static gboolean
any_window_active (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  for (GList *l = priv->windows; l != NULL; l = l->next)
    {
      GtkWindow *candidate = GTK_WINDOW (l->data);
      if (gtk_window_is_active (candidate))
        return TRUE;
    }

    return FALSE;
}

static gboolean
autosave_cb (gpointer data)
{
  GtkApplication *application = GTK_APPLICATION (data);
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  GTK_DEBUG (SESSION, "Autosaving");
  gtk_application_save (application);

  if (!any_window_active (application))
    {
      GTK_DEBUG (SESSION, "App no longer focused, stopping autosave");
      priv->autosave_id = 0;
      return G_SOURCE_REMOVE;
    }

  return G_SOURCE_CONTINUE;
}

static void
schedule_autosave (GtkApplication *application)
{
  GtkApplicationPrivate *priv = gtk_application_get_instance_private (application);

  if (!priv->support_save)
    return;

  if (priv->forgotten)
    return;

  if (priv->autosave_interval == 0)
    return;

  if (priv->autosave_id != 0)
    return;

  if (!any_window_active (application))
    return;

  GTK_DEBUG (SESSION, "Scheduling autosave");
  priv->autosave_id = g_timeout_add_seconds (priv->autosave_interval, autosave_cb, application);
}

Messung V0.5 in Prozent
C=98 H=96 G=96

¤ Dauer der Verarbeitung: 0.61 Sekunden  (vorverarbeitet am  2026-07-03) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik