2010-08-11 05:23:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Codethink 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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
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"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2011-01-02 12:29:23 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2010-06-07 20:44:58 +00:00
|
|
|
#include <unistd.h>
|
2011-01-02 12:29:23 +00:00
|
|
|
#endif
|
2010-08-11 05:23:23 +00:00
|
|
|
#include <string.h>
|
2010-06-07 20:44:58 +00:00
|
|
|
|
|
|
|
#include "gtkapplication.h"
|
2010-06-08 22:06:03 +00:00
|
|
|
#include "gtkmarshalers.h"
|
2011-11-10 03:03:10 +00:00
|
|
|
#include "gtkmain.h"
|
2011-12-05 05:27:11 +00:00
|
|
|
#include "gtkapplicationwindow.h"
|
2011-12-05 22:28:19 +00:00
|
|
|
#include "gtkaccelmap.h"
|
2010-06-07 20:44:58 +00:00
|
|
|
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
#include <gdk/x11/gdkx.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gtkapplication
|
|
|
|
* @title: GtkApplication
|
|
|
|
* @short_description: Application class
|
|
|
|
*
|
|
|
|
* #GtkApplication is a class that handles many important aspects
|
|
|
|
* of a GTK+ application in a convenient fashion, without enforcing
|
|
|
|
* a one-size-fits-all application model.
|
|
|
|
*
|
2010-10-23 19:24:24 +00:00
|
|
|
* Currently, GtkApplication handles GTK+ initialization, application
|
2011-12-01 04:48:59 +00:00
|
|
|
* uniqueness, 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 #GtkWindows, it is recommended
|
|
|
|
* to use it together with #GtkApplicationWindow.
|
2010-06-07 20:44:58 +00:00
|
|
|
*
|
|
|
|
* <example id="gtkapplication"><title>A simple application</title>
|
|
|
|
* <programlisting>
|
2011-01-06 06:09:14 +00:00
|
|
|
* <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../examples/bloatpad.c">
|
2010-06-07 20:44:58 +00:00
|
|
|
* <xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback>
|
|
|
|
* </xi:include>
|
|
|
|
* </programlisting>
|
|
|
|
* </example>
|
|
|
|
*/
|
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
enum {
|
|
|
|
WINDOW_ADDED,
|
|
|
|
WINDOW_REMOVED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint gtk_application_signals[LAST_SIGNAL];
|
|
|
|
|
2010-06-07 20:44:58 +00:00
|
|
|
G_DEFINE_TYPE (GtkApplication, gtk_application, G_TYPE_APPLICATION)
|
|
|
|
|
2010-10-19 19:10:02 +00:00
|
|
|
struct _GtkApplicationPrivate
|
2010-06-07 20:44:58 +00:00
|
|
|
{
|
2010-10-19 19:10:02 +00:00
|
|
|
GList *windows;
|
2011-12-05 05:27:11 +00:00
|
|
|
|
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
GDBusConnection *session;
|
|
|
|
gchar *window_prefix;
|
|
|
|
guint next_id;
|
|
|
|
#endif
|
2010-10-19 19:10:02 +00:00
|
|
|
};
|
2010-06-07 20:44:58 +00:00
|
|
|
|
2011-12-05 05:27:11 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint action_export_id;
|
|
|
|
guint window_id;
|
|
|
|
} GtkApplicationWindowInfo;
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_window_realized_x11 (GtkWindow *window,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkApplication *application = user_data;
|
|
|
|
GtkApplicationWindowInfo *info;
|
|
|
|
GdkWindow *gdkwindow;
|
|
|
|
gchar *window_path;
|
|
|
|
const gchar *unique_id;
|
|
|
|
const gchar *app_id;
|
|
|
|
|
|
|
|
gdkwindow = gtk_widget_get_window (GTK_WIDGET (window));
|
|
|
|
|
|
|
|
if (!GDK_IS_X11_WINDOW (gdkwindow))
|
|
|
|
return;
|
|
|
|
|
|
|
|
info = g_object_get_data (G_OBJECT (window), "GtkApplication::window-info");
|
|
|
|
|
|
|
|
window_path = g_strdup_printf ("%s%d", application->priv->window_prefix, info->window_id);
|
|
|
|
gdk_x11_window_set_utf8_property (gdkwindow, "_DBUS_OBJECT_PATH", window_path);
|
|
|
|
g_free (window_path);
|
|
|
|
|
|
|
|
unique_id = g_dbus_connection_get_unique_name (application->priv->session);
|
|
|
|
gdk_x11_window_set_utf8_property (gdkwindow, "_DBUS_UNIQUE_NAME", unique_id);
|
|
|
|
|
|
|
|
app_id = g_application_get_application_id (G_APPLICATION (application));
|
|
|
|
gdk_x11_window_set_utf8_property (gdkwindow, "_DBUS_APPLICATION_ID", app_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_window_added_x11 (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
|
|
|
GtkApplicationWindowInfo *info;
|
|
|
|
|
|
|
|
if (application->priv->session == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!GTK_IS_APPLICATION_WINDOW (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* GtkApplicationWindow associates with us when it is first created,
|
|
|
|
* so surely it's not realized yet...
|
|
|
|
*/
|
|
|
|
g_assert (!gtk_widget_get_realized (GTK_WIDGET (window)));
|
|
|
|
|
|
|
|
/* ...but we want to know when it is. */
|
|
|
|
g_signal_connect (window, "realize", G_CALLBACK (gtk_application_window_realized_x11), application);
|
|
|
|
|
|
|
|
info = g_slice_new (GtkApplicationWindowInfo);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
gchar *window_path;
|
|
|
|
|
|
|
|
info->window_id = application->priv->next_id++;
|
|
|
|
window_path = g_strdup_printf ("%s%d", application->priv->window_prefix, info->window_id);
|
|
|
|
info->action_export_id = g_dbus_connection_export_action_group (application->priv->session, window_path,
|
|
|
|
G_ACTION_GROUP (window), NULL);
|
|
|
|
g_free (window_path);
|
|
|
|
}
|
|
|
|
while (!info->action_export_id);
|
|
|
|
|
|
|
|
g_object_set_data (G_OBJECT (window), "GtkApplication::window-info", info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_window_removed_x11 (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
|
|
|
GtkApplicationWindowInfo *info;
|
|
|
|
|
|
|
|
if (application->priv->session == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!GTK_IS_APPLICATION_WINDOW (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
info = g_object_steal_data (G_OBJECT (window), "GtkApplication::window-info");
|
|
|
|
|
|
|
|
g_dbus_connection_unexport_action_group (application->priv->session, info->action_export_id);
|
|
|
|
|
|
|
|
g_slice_free (GtkApplicationWindowInfo, info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
window_prefix_from_appid (const gchar *appid)
|
|
|
|
{
|
|
|
|
gchar *appid_path, *iter;
|
|
|
|
|
|
|
|
appid_path = g_strconcat ("/", appid, "/windows/", NULL);
|
|
|
|
for (iter = appid_path; *iter; iter++)
|
|
|
|
{
|
|
|
|
if (*iter == '.')
|
|
|
|
*iter = '/';
|
|
|
|
|
|
|
|
if (*iter == '-')
|
|
|
|
*iter = '_';
|
|
|
|
}
|
|
|
|
|
|
|
|
return appid_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_startup_x11 (GtkApplication *application)
|
|
|
|
{
|
|
|
|
const gchar *application_id;
|
|
|
|
|
|
|
|
application_id = g_application_get_application_id (G_APPLICATION (application));
|
|
|
|
application->priv->session = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
|
|
|
|
application->priv->window_prefix = window_prefix_from_appid (application_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_shutdown_x11 (GtkApplication *application)
|
|
|
|
{
|
|
|
|
g_free (application->priv->window_prefix);
|
|
|
|
application->priv->window_prefix = NULL;
|
|
|
|
application->priv->session = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-05-31 22:28:55 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_application_focus_in_event_cb (GtkWindow *window,
|
|
|
|
GdkEventFocus *event,
|
|
|
|
GtkApplication *application)
|
|
|
|
{
|
|
|
|
GtkApplicationPrivate *priv = application->priv;
|
|
|
|
GList *link;
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-06-07 20:44:58 +00:00
|
|
|
static void
|
2010-08-11 05:23:23 +00:00
|
|
|
gtk_application_startup (GApplication *application)
|
2010-06-17 14:41:12 +00:00
|
|
|
{
|
2011-09-14 18:02:51 +00:00
|
|
|
G_APPLICATION_CLASS (gtk_application_parent_class)
|
|
|
|
->startup (application);
|
|
|
|
|
2010-08-11 05:23:23 +00:00
|
|
|
gtk_init (0, 0);
|
2011-12-05 05:27:11 +00:00
|
|
|
|
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
gtk_application_startup_x11 (GTK_APPLICATION (application));
|
|
|
|
#endif
|
2010-06-17 14:41:12 +00:00
|
|
|
}
|
|
|
|
|
2011-12-05 05:25:28 +00:00
|
|
|
static void
|
|
|
|
gtk_application_shutdown (GApplication *application)
|
|
|
|
{
|
2011-12-05 05:27:11 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
gtk_application_shutdown_x11 (GTK_APPLICATION (application));
|
|
|
|
#endif
|
|
|
|
|
2011-12-05 05:25:28 +00:00
|
|
|
G_APPLICATION_CLASS (gtk_application_parent_class)
|
|
|
|
->shutdown (application);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2010-08-11 05:23:23 +00:00
|
|
|
const gchar *startup_id;
|
2010-06-07 20:44:58 +00:00
|
|
|
|
2010-08-11 05:23:23 +00:00
|
|
|
startup_id = getenv ("DESKTOP_STARTUP_ID");
|
|
|
|
|
|
|
|
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
|
2010-08-11 05:23:23 +00:00
|
|
|
gtk_application_before_emit (GApplication *application,
|
|
|
|
GVariant *platform_data)
|
2010-06-07 20:44:58 +00:00
|
|
|
{
|
2010-08-11 05:23:23 +00:00
|
|
|
GVariantIter iter;
|
|
|
|
const gchar *key;
|
|
|
|
GVariant *value;
|
2010-06-07 20:44:58 +00:00
|
|
|
|
2010-08-11 05:23:23 +00:00
|
|
|
g_variant_iter_init (&iter, platform_data);
|
|
|
|
while (g_variant_iter_loop (&iter, "{&sv}", &key, &value))
|
2010-06-07 20:44:58 +00:00
|
|
|
{
|
2010-10-28 18:27:04 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
2010-08-11 05:23:23 +00:00
|
|
|
if (strcmp (key, "desktop-startup-id") == 0)
|
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
const gchar *id;
|
|
|
|
|
|
|
|
display = gdk_display_get_default ();
|
|
|
|
id = g_variant_get_string (value, NULL);
|
|
|
|
gdk_x11_display_set_startup_notification_id (display, id);
|
|
|
|
}
|
2010-10-28 18:27:04 +00:00
|
|
|
#endif
|
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
|
|
|
{
|
2010-08-11 05:23:23 +00:00
|
|
|
gdk_notify_startup_complete ();
|
2010-06-07 20:44:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_init (GtkApplication *application)
|
|
|
|
{
|
2010-10-19 19:10:02 +00:00
|
|
|
application->priv = G_TYPE_INSTANCE_GET_PRIVATE (application,
|
|
|
|
GTK_TYPE_APPLICATION,
|
|
|
|
GtkApplicationPrivate);
|
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)
|
|
|
|
{
|
|
|
|
GtkApplicationPrivate *priv = application->priv;
|
|
|
|
|
|
|
|
priv->windows = g_list_prepend (priv->windows, window);
|
|
|
|
gtk_window_set_application (window, application);
|
|
|
|
g_application_hold (G_APPLICATION (application));
|
|
|
|
|
|
|
|
g_signal_connect (window, "focus-in-event",
|
|
|
|
G_CALLBACK (gtk_application_focus_in_event_cb),
|
|
|
|
application);
|
2011-12-05 05:27:11 +00:00
|
|
|
|
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
gtk_application_window_added_x11 (application, window);
|
|
|
|
#endif
|
2011-05-31 23:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_application_window_removed (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
|
|
|
GtkApplicationPrivate *priv = application->priv;
|
|
|
|
|
2011-12-05 05:27:11 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
gtk_application_window_removed_x11 (application, window);
|
|
|
|
#endif
|
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (window,
|
|
|
|
gtk_application_focus_in_event_cb,
|
|
|
|
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);
|
2011-05-31 23:12:13 +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
|
|
|
{
|
2010-08-11 05:23:23 +00:00
|
|
|
GApplicationClass *application_class = G_APPLICATION_CLASS (class);
|
2010-06-07 20:44:58 +00:00
|
|
|
|
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;
|
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;
|
|
|
|
|
2010-10-19 19:10:02 +00:00
|
|
|
g_type_class_add_private (class, sizeof (GtkApplicationPrivate));
|
2011-05-31 23:12:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkApplication::window-added:
|
|
|
|
* @application: the #GtkApplication which emitted the signal
|
|
|
|
* @window: the newly-added #GtkWindow
|
|
|
|
*
|
|
|
|
* Emitted when a #GtkWindow is added to @application through
|
2011-11-19 16:30:43 +00:00
|
|
|
* gtk_application_add_window().
|
2011-05-31 23:12:13 +00:00
|
|
|
*
|
|
|
|
* Since: 3.2
|
|
|
|
*/
|
|
|
|
gtk_application_signals[WINDOW_ADDED] =
|
|
|
|
g_signal_new ("window-added", GTK_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkApplicationClass, window_added),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__OBJECT,
|
|
|
|
G_TYPE_NONE, 1, GTK_TYPE_WINDOW);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkApplication::window-removed:
|
|
|
|
* @application: the #GtkApplication which emitted the signal
|
|
|
|
* @window: the #GtkWindow that is being removed
|
|
|
|
*
|
|
|
|
* Emitted when a #GtkWindow is removed from @application,
|
|
|
|
* either as a side-effect of being destroyed or explicitly
|
|
|
|
* through gtk_application_remove_window().
|
|
|
|
*
|
|
|
|
* Since: 3.2
|
|
|
|
*/
|
|
|
|
gtk_application_signals[WINDOW_REMOVED] =
|
|
|
|
g_signal_new ("window-removed", GTK_TYPE_APPLICATION, G_SIGNAL_RUN_FIRST,
|
|
|
|
G_STRUCT_OFFSET (GtkApplicationClass, window_removed),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__OBJECT,
|
|
|
|
G_TYPE_NONE, 1, GTK_TYPE_WINDOW);
|
2010-10-19 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
2010-10-23 19:24:24 +00:00
|
|
|
/**
|
|
|
|
* gtk_application_new:
|
|
|
|
* @application_id: the application id
|
|
|
|
* @flags: the application flags
|
|
|
|
*
|
|
|
|
* Creates a new #GtkApplication instance.
|
|
|
|
*
|
|
|
|
* This function calls g_type_init() for you. gtk_init() is called
|
|
|
|
* as soon as the application gets registered as the primary instance.
|
|
|
|
*
|
|
|
|
* The application id must be valid. See g_application_id_is_valid().
|
|
|
|
*
|
|
|
|
* Returns: a new #GtkApplication instance
|
|
|
|
*/
|
2010-10-19 19:10:02 +00:00
|
|
|
GtkApplication *
|
|
|
|
gtk_application_new (const gchar *application_id,
|
|
|
|
GApplicationFlags flags)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (g_application_id_is_valid (application_id), NULL);
|
|
|
|
|
|
|
|
g_type_init ();
|
|
|
|
|
|
|
|
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:
|
2010-10-19 19:10:02 +00:00
|
|
|
* @application: a #GtkApplication
|
|
|
|
* @window: a #GtkWindow
|
|
|
|
*
|
|
|
|
* Adds a window from @application.
|
|
|
|
*
|
2010-10-20 09:06:19 +00:00
|
|
|
* This call is equivalent to setting the #GtkWindow:application
|
2010-10-19 19:10:02 +00:00
|
|
|
* property of @window to @application.
|
|
|
|
*
|
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
|
|
|
|
* remove it with gtk_application_remove_window().
|
|
|
|
*
|
|
|
|
* GTK+ will keep the application running as long as it has
|
|
|
|
* any windows.
|
|
|
|
*
|
2010-10-19 19:10:02 +00:00
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_application_add_window (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
if (!g_list_find (application->priv->windows, window))
|
|
|
|
g_signal_emit (application,
|
|
|
|
gtk_application_signals[WINDOW_ADDED], 0, window);
|
2010-10-19 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_application_remove_window:
|
|
|
|
* @application: a #GtkApplication
|
|
|
|
* @window: a #GtkWindow
|
|
|
|
*
|
|
|
|
* Remove a window from @application.
|
|
|
|
*
|
|
|
|
* If @window belongs to @application then this call is equivalent to
|
2010-10-20 09:06:19 +00:00
|
|
|
* setting the #GtkWindow:application property of @window to
|
2010-10-19 19:10:02 +00:00
|
|
|
* %NULL.
|
|
|
|
*
|
|
|
|
* The application may stop running as a result of a call to this
|
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_application_remove_window (GtkApplication *application,
|
|
|
|
GtkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
|
|
|
|
2011-05-31 23:12:13 +00:00
|
|
|
if (g_list_find (application->priv->windows, window))
|
|
|
|
g_signal_emit (application,
|
|
|
|
gtk_application_signals[WINDOW_REMOVED], 0, window);
|
2010-10-19 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_application_get_windows:
|
|
|
|
* @application: a #GtkApplication
|
|
|
|
*
|
2011-12-01 05:21:11 +00:00
|
|
|
* Gets a list of the #GtkWindows 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
|
|
|
*
|
2011-01-20 09:37:17 +00:00
|
|
|
* Returns: (element-type GtkWindow) (transfer none): a #GList of #GtkWindow
|
2010-10-19 19:10:02 +00:00
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
GList *
|
|
|
|
gtk_application_get_windows (GtkApplication *application)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_APPLICATION (application), NULL);
|
|
|
|
|
|
|
|
return application->priv->windows;
|
2010-06-07 20:44:58 +00:00
|
|
|
}
|
2011-12-05 22:28:19 +00:00
|
|
|
|
|
|
|
/* keep this in sync with gtkmodelmenuitem.c */
|
|
|
|
static gchar *
|
|
|
|
get_accel_path (const gchar *action_name,
|
|
|
|
GVariant *parameter)
|
|
|
|
{
|
|
|
|
GString *s;
|
|
|
|
|
|
|
|
s = g_string_new ("<Actions>/");
|
|
|
|
g_string_append (s, action_name);
|
|
|
|
if (parameter)
|
|
|
|
{
|
|
|
|
g_string_append_c (s, '/');
|
|
|
|
g_variant_print_string (parameter, s, FALSE);
|
|
|
|
}
|
|
|
|
return g_string_free (s, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_application_add_accelerator:
|
|
|
|
* @application: a #GtkApplication
|
|
|
|
* @accelerator: accelerator string
|
|
|
|
* @action_name: the name of the action to activate
|
|
|
|
* @parameter: (allow-none): parameter to pass when activating the action,
|
|
|
|
* or %NULL if the action does not accept an activation parameter
|
|
|
|
*
|
|
|
|
* Installs an accelerator that will cause the named action
|
|
|
|
* to be activated when the key combination specificed by @accelerator
|
|
|
|
* is pressed.
|
|
|
|
*
|
|
|
|
* @accelerator must be a string that can be parsed by
|
|
|
|
* gtk_accelerator_parse(), e.g. "<Primary>q" or "<Control><Alt>p".
|
|
|
|
*
|
|
|
|
* @action_name must be the name of an action as it would be used
|
|
|
|
* in the app menu, i.e. actions that have been added to the application
|
|
|
|
* are referred to with an "app." prefix, and window-specific actions
|
|
|
|
* with a "win." prefix.
|
|
|
|
*
|
|
|
|
* Since: 3.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_application_add_accelerator (GtkApplication *application,
|
|
|
|
const gchar *accelerator,
|
|
|
|
const gchar *action_name,
|
|
|
|
GVariant *parameter)
|
|
|
|
{
|
|
|
|
gchar *accel_path;
|
|
|
|
guint accel_key;
|
|
|
|
GdkModifierType accel_mods;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
|
|
|
|
|
|
|
/* Call this here, since gtk_init() is only getting called in startup() */
|
|
|
|
_gtk_accel_map_init ();
|
|
|
|
|
|
|
|
gtk_accelerator_parse (accelerator, &accel_key, &accel_mods);
|
|
|
|
|
|
|
|
if (accel_key == 0)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to parse accelerator: '%s'\n", accelerator);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
accel_path = get_accel_path (action_name, parameter);
|
|
|
|
|
|
|
|
if (gtk_accel_map_lookup_entry (accel_path, NULL))
|
|
|
|
gtk_accel_map_change_entry (accel_path, accel_key, accel_mods, TRUE);
|
|
|
|
else
|
|
|
|
gtk_accel_map_add_entry (accel_path, accel_key, accel_mods);
|
|
|
|
|
|
|
|
g_free (accel_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_application_remove_accelerator:
|
|
|
|
* @application: a #GtkApplication
|
|
|
|
* @action_name: the name of the action to activate
|
|
|
|
* @parameter: (allow-none): parameter to pass when activating the action,
|
|
|
|
* or %NULL if the action does not accept an activation parameter
|
|
|
|
*
|
|
|
|
* Removes an accelerator that has been previously added
|
|
|
|
* with gtk_application_add_accelerator().
|
|
|
|
*
|
|
|
|
* Since: 3.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_application_remove_accelerator (GtkApplication *application,
|
|
|
|
const gchar *action_name,
|
|
|
|
GVariant *parameter)
|
|
|
|
{
|
|
|
|
gchar *accel_path;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_APPLICATION (application));
|
|
|
|
|
|
|
|
accel_path = get_accel_path (action_name, parameter);
|
|
|
|
|
|
|
|
if (!gtk_accel_map_lookup_entry (accel_path, NULL))
|
|
|
|
{
|
|
|
|
g_warning ("No accelerator found for '%s'\n", accel_path);
|
|
|
|
g_free (accel_path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_accel_map_change_entry (accel_path, 0, 0, FALSE);
|
|
|
|
g_free (accel_path);
|
|
|
|
}
|