2010-11-16 12:47:51 +00:00
|
|
|
/*
|
2010-11-23 16:23:37 +00:00
|
|
|
* gtkappchooserdialog.c: an app-chooser dialog
|
2010-11-16 12:47:51 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Novell, Inc.
|
|
|
|
* Copyright (C) 2007, 2010 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-11-16 12:47:51 +00:00
|
|
|
*
|
|
|
|
* Authors: Dave Camp <dave@novell.com>
|
|
|
|
* Alexander Larsson <alexl@redhat.com>
|
|
|
|
* Cosimo Cecchi <ccecchi@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2011-01-06 07:07:35 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkappchooserdialog
|
|
|
|
* @Title: GtkAppChooserDialog
|
|
|
|
* @Short_description: An application chooser dialog
|
|
|
|
*
|
|
|
|
* #GtkAppChooserDialog shows a #GtkAppChooserWidget inside a #GtkDialog.
|
|
|
|
*
|
|
|
|
* Note that #GtkAppChooserDialog does not have any interesting methods
|
|
|
|
* of its own. Instead, you should get the embedded #GtkAppChooserWidget
|
2011-01-06 14:06:24 +00:00
|
|
|
* using gtk_app_chooser_dialog_get_widget() and call its methods if
|
|
|
|
* the generic #GtkAppChooser interface is not sufficient for your needs.
|
2011-09-10 05:40:05 +00:00
|
|
|
*
|
|
|
|
* To set the heading that is shown above the #GtkAppChooserWidget,
|
|
|
|
* use gtk_app_chooser_dialog_set_heading().
|
2011-01-06 07:07:35 +00:00
|
|
|
*/
|
2010-11-24 23:32:05 +00:00
|
|
|
#include "config.h"
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
#include "gtkappchooserdialog.h"
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
#include "gtkintl.h"
|
2010-11-23 16:23:37 +00:00
|
|
|
#include "gtkappchooser.h"
|
2010-11-24 23:32:05 +00:00
|
|
|
#include "gtkappchooserprivate.h"
|
|
|
|
|
|
|
|
#include "gtkmessagedialog.h"
|
2013-12-08 14:22:46 +00:00
|
|
|
#include "gtksettings.h"
|
2010-11-24 23:32:05 +00:00
|
|
|
#include "gtklabel.h"
|
|
|
|
#include "gtkbbox.h"
|
|
|
|
#include "gtkbutton.h"
|
|
|
|
#include "gtkmenuitem.h"
|
2013-12-08 14:22:46 +00:00
|
|
|
#include "gtkheaderbar.h"
|
|
|
|
#include "gtkdialogprivate.h"
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib/gi18n-lib.h>
|
|
|
|
#include <gio/gio.h>
|
|
|
|
|
|
|
|
#define sure_string(s) ((const char *) ((s) != NULL ? (s) : ""))
|
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
struct _GtkAppChooserDialogPrivate {
|
2010-11-16 12:47:51 +00:00
|
|
|
char *content_type;
|
|
|
|
GFile *gfile;
|
2011-01-21 01:55:59 +00:00
|
|
|
char *heading;
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
GtkWidget *label;
|
2013-12-18 02:23:05 +00:00
|
|
|
GtkWidget *software_button;
|
2013-03-23 14:02:33 +00:00
|
|
|
GtkWidget *inner_box;
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
GtkWidget *open_label;
|
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkWidget *app_chooser_widget;
|
2010-11-22 22:05:59 +00:00
|
|
|
GtkWidget *show_more_button;
|
2010-11-23 15:50:21 +00:00
|
|
|
|
|
|
|
gboolean show_more_clicked;
|
2012-02-01 18:16:06 +00:00
|
|
|
gboolean dismissed;
|
2010-11-16 12:47:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_GFILE = 1,
|
|
|
|
PROP_CONTENT_TYPE,
|
2011-01-25 00:25:08 +00:00
|
|
|
PROP_HEADING
|
2010-11-16 12:47:51 +00:00
|
|
|
};
|
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
static void gtk_app_chooser_dialog_iface_init (GtkAppChooserIface *iface);
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (GtkAppChooserDialog, gtk_app_chooser_dialog, GTK_TYPE_DIALOG,
|
2013-06-27 19:02:52 +00:00
|
|
|
G_ADD_PRIVATE (GtkAppChooserDialog)
|
2010-11-24 23:32:05 +00:00
|
|
|
G_IMPLEMENT_INTERFACE (GTK_TYPE_APP_CHOOSER,
|
|
|
|
gtk_app_chooser_dialog_iface_init));
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2010-11-29 17:10:06 +00:00
|
|
|
|
2010-11-24 14:49:47 +00:00
|
|
|
static void
|
|
|
|
add_or_find_application (GtkAppChooserDialog *self)
|
|
|
|
{
|
|
|
|
GAppInfo *app;
|
|
|
|
|
|
|
|
app = gtk_app_chooser_get_app_info (GTK_APP_CHOOSER (self));
|
|
|
|
|
2011-08-29 02:43:20 +00:00
|
|
|
if (app)
|
|
|
|
{
|
|
|
|
/* we don't care about reporting errors here */
|
|
|
|
if (self->priv->content_type)
|
|
|
|
g_app_info_set_as_last_used_for_type (app,
|
|
|
|
self->priv->content_type,
|
|
|
|
NULL);
|
|
|
|
g_object_unref (app);
|
|
|
|
}
|
2010-11-24 14:49:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_app_chooser_dialog_response (GtkDialog *dialog,
|
2010-11-24 23:32:05 +00:00
|
|
|
gint response_id,
|
|
|
|
gpointer user_data)
|
2010-11-24 14:49:47 +00:00
|
|
|
{
|
|
|
|
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (dialog);
|
|
|
|
|
|
|
|
switch (response_id)
|
|
|
|
{
|
|
|
|
case GTK_RESPONSE_OK:
|
|
|
|
add_or_find_application (self);
|
|
|
|
break;
|
2012-02-01 18:16:06 +00:00
|
|
|
case GTK_RESPONSE_CANCEL:
|
|
|
|
case GTK_RESPONSE_DELETE_EVENT:
|
|
|
|
self->priv->dismissed = TRUE;
|
2013-12-08 14:22:46 +00:00
|
|
|
default:
|
2010-11-24 14:49:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-16 12:47:51 +00:00
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
widget_application_selected_cb (GtkAppChooserWidget *widget,
|
2010-11-24 23:32:05 +00:00
|
|
|
GAppInfo *app_info,
|
|
|
|
gpointer user_data)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2013-12-08 14:22:46 +00:00
|
|
|
GtkDialog *self = user_data;
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2013-12-08 14:22:46 +00:00
|
|
|
gtk_dialog_set_response_sensitive (self, GTK_RESPONSE_OK, TRUE);
|
2010-11-16 12:47:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
widget_application_activated_cb (GtkAppChooserWidget *widget,
|
2010-11-24 23:32:05 +00:00
|
|
|
GAppInfo *app_info,
|
|
|
|
gpointer user_data)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = user_data;
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
gtk_dialog_response (GTK_DIALOG (self), GTK_RESPONSE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
get_extension (const char *basename)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
p = strrchr (basename, '.');
|
|
|
|
|
|
|
|
if (p && *(p + 1) != '\0')
|
|
|
|
return g_strdup (p + 1);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
set_dialog_properties (GtkAppChooserDialog *self)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2010-11-24 23:32:05 +00:00
|
|
|
gchar *label;
|
|
|
|
gchar *name;
|
|
|
|
gchar *extension;
|
|
|
|
gchar *description;
|
|
|
|
gchar *default_text;
|
|
|
|
gchar *string;
|
2011-03-01 10:41:15 +00:00
|
|
|
gboolean unknown;
|
2010-11-18 22:17:23 +00:00
|
|
|
PangoFontDescription *font_desc;
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
name = NULL;
|
|
|
|
extension = NULL;
|
|
|
|
label = NULL;
|
|
|
|
description = NULL;
|
2011-03-01 10:41:15 +00:00
|
|
|
unknown = TRUE;
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
if (self->priv->gfile != NULL)
|
|
|
|
{
|
|
|
|
name = g_file_get_basename (self->priv->gfile);
|
|
|
|
extension = get_extension (name);
|
|
|
|
}
|
|
|
|
|
2011-03-01 10:41:15 +00:00
|
|
|
if (self->priv->content_type)
|
|
|
|
{
|
|
|
|
description = g_content_type_get_description (self->priv->content_type);
|
|
|
|
unknown = g_content_type_is_unknown (self->priv->content_type);
|
|
|
|
}
|
|
|
|
|
2010-11-18 22:17:23 +00:00
|
|
|
gtk_window_set_title (GTK_WINDOW (self), "");
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2010-11-18 22:17:23 +00:00
|
|
|
if (name != NULL)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2010-11-17 20:37:09 +00:00
|
|
|
/* Translators: %s is a filename */
|
2013-07-18 02:37:50 +00:00
|
|
|
label = g_strdup_printf (_("Select an application to open “%s”"), name);
|
|
|
|
string = g_strdup_printf (_("No applications available to open “%s”"),
|
2010-11-24 23:32:05 +00:00
|
|
|
name);
|
2010-11-16 12:47:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-17 20:37:09 +00:00
|
|
|
/* Translators: %s is a file type description */
|
2013-07-18 02:37:50 +00:00
|
|
|
label = g_strdup_printf (_("Select an application for “%s” files"),
|
2011-03-01 10:41:15 +00:00
|
|
|
unknown ? self->priv->content_type : description);
|
2013-07-18 02:37:50 +00:00
|
|
|
string = g_strdup_printf (_("No applications available to open “%s” files"),
|
2011-03-01 10:41:15 +00:00
|
|
|
unknown ? self->priv->content_type : description);
|
2010-11-16 12:47:51 +00:00
|
|
|
}
|
|
|
|
|
2010-11-18 22:17:23 +00:00
|
|
|
font_desc = pango_font_description_new ();
|
|
|
|
pango_font_description_set_weight (font_desc, PANGO_WEIGHT_BOLD);
|
2011-01-21 01:55:59 +00:00
|
|
|
gtk_widget_override_font (self->priv->label, font_desc);
|
2010-11-18 22:17:23 +00:00
|
|
|
pango_font_description_free (font_desc);
|
|
|
|
|
2011-01-21 01:55:59 +00:00
|
|
|
if (self->priv->heading != NULL)
|
|
|
|
gtk_label_set_markup (GTK_LABEL (self->priv->label), self->priv->heading);
|
|
|
|
else
|
|
|
|
gtk_label_set_markup (GTK_LABEL (self->priv->label), label);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2010-11-23 11:47:16 +00:00
|
|
|
default_text = g_strdup_printf ("<big><b>%s</b></big>\n%s",
|
2010-11-24 23:32:05 +00:00
|
|
|
string,
|
|
|
|
_("Click \"Show other applications\", for more options, or "
|
2013-12-18 02:23:05 +00:00
|
|
|
"\"Software\" to install a new application"));
|
2010-11-23 11:47:16 +00:00
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_widget_set_default_text (GTK_APP_CHOOSER_WIDGET (self->priv->app_chooser_widget),
|
2010-11-24 23:32:05 +00:00
|
|
|
default_text);
|
2010-11-23 11:47:16 +00:00
|
|
|
|
2010-11-16 12:47:51 +00:00
|
|
|
g_free (label);
|
|
|
|
g_free (name);
|
|
|
|
g_free (extension);
|
|
|
|
g_free (description);
|
2010-11-23 11:47:16 +00:00
|
|
|
g_free (string);
|
|
|
|
g_free (default_text);
|
2010-11-16 12:47:51 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 22:05:59 +00:00
|
|
|
static void
|
|
|
|
show_more_button_clicked_cb (GtkButton *button,
|
2010-11-24 23:32:05 +00:00
|
|
|
gpointer user_data)
|
2010-11-22 22:05:59 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = user_data;
|
2010-11-22 22:05:59 +00:00
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
g_object_set (self->priv->app_chooser_widget,
|
2010-11-24 23:32:05 +00:00
|
|
|
"show-recommended", TRUE,
|
|
|
|
"show-fallback", TRUE,
|
|
|
|
"show-other", TRUE,
|
|
|
|
NULL);
|
2010-11-22 22:05:59 +00:00
|
|
|
|
|
|
|
gtk_widget_hide (self->priv->show_more_button);
|
2010-11-23 15:50:21 +00:00
|
|
|
self->priv->show_more_clicked = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-24 23:32:05 +00:00
|
|
|
widget_notify_for_button_cb (GObject *source,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
gpointer user_data)
|
2010-11-23 15:50:21 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = user_data;
|
|
|
|
GtkAppChooserWidget *widget = GTK_APP_CHOOSER_WIDGET (source);
|
2010-11-23 15:50:21 +00:00
|
|
|
gboolean should_hide;
|
|
|
|
|
2011-01-20 21:22:51 +00:00
|
|
|
should_hide = gtk_app_chooser_widget_get_show_other (widget) ||
|
2010-11-23 15:50:21 +00:00
|
|
|
self->priv->show_more_clicked;
|
|
|
|
|
|
|
|
if (should_hide)
|
|
|
|
gtk_widget_hide (self->priv->show_more_button);
|
2010-11-22 22:05:59 +00:00
|
|
|
}
|
|
|
|
|
2010-11-24 16:11:17 +00:00
|
|
|
static void
|
|
|
|
forget_menu_item_activate_cb (GtkMenuItem *item,
|
2010-11-24 23:32:05 +00:00
|
|
|
gpointer user_data)
|
2010-11-24 16:11:17 +00:00
|
|
|
{
|
|
|
|
GtkAppChooserDialog *self = user_data;
|
|
|
|
GAppInfo *info;
|
|
|
|
|
|
|
|
info = gtk_app_chooser_get_app_info (GTK_APP_CHOOSER (self));
|
|
|
|
|
|
|
|
if (info != NULL)
|
|
|
|
{
|
2010-11-24 23:32:05 +00:00
|
|
|
g_app_info_remove_supports_type (info, self->priv->content_type, NULL);
|
2010-11-24 16:11:17 +00:00
|
|
|
|
|
|
|
gtk_app_chooser_refresh (GTK_APP_CHOOSER (self));
|
|
|
|
|
|
|
|
g_object_unref (info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
build_forget_menu_item (GtkAppChooserDialog *self)
|
|
|
|
{
|
|
|
|
GtkWidget *retval;
|
|
|
|
|
|
|
|
retval = gtk_menu_item_new_with_label (_("Forget association"));
|
|
|
|
gtk_widget_show (retval);
|
|
|
|
|
|
|
|
g_signal_connect (retval, "activate",
|
2010-11-24 23:32:05 +00:00
|
|
|
G_CALLBACK (forget_menu_item_activate_cb), self);
|
2010-11-24 16:11:17 +00:00
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
widget_populate_popup_cb (GtkAppChooserWidget *widget,
|
2010-11-24 23:32:05 +00:00
|
|
|
GtkMenu *menu,
|
|
|
|
GAppInfo *info,
|
|
|
|
gpointer user_data)
|
2010-11-24 16:11:17 +00:00
|
|
|
{
|
|
|
|
GtkAppChooserDialog *self = user_data;
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
|
|
|
|
if (g_app_info_can_remove_supports_type (info))
|
|
|
|
{
|
|
|
|
menu_item = build_forget_menu_item (self);
|
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-17 18:28:48 +00:00
|
|
|
static void
|
2013-03-23 14:02:33 +00:00
|
|
|
construct_appchooser_widget (GtkAppChooserDialog *self)
|
2010-11-17 18:28:48 +00:00
|
|
|
{
|
2011-08-29 03:49:41 +00:00
|
|
|
GAppInfo *info;
|
2010-11-17 18:28:48 +00:00
|
|
|
|
2013-03-23 14:02:33 +00:00
|
|
|
/* Need to build the appchooser widget after, because of the content-type construct-only property */
|
2010-11-23 16:23:37 +00:00
|
|
|
self->priv->app_chooser_widget =
|
|
|
|
gtk_app_chooser_widget_new (self->priv->content_type);
|
2013-03-23 14:02:33 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (self->priv->inner_box), self->priv->app_chooser_widget, TRUE, TRUE, 0);
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_widget_show (self->priv->app_chooser_widget);
|
2010-11-23 15:50:21 +00:00
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
g_signal_connect (self->priv->app_chooser_widget, "application-selected",
|
2010-11-24 23:32:05 +00:00
|
|
|
G_CALLBACK (widget_application_selected_cb), self);
|
2010-11-23 16:23:37 +00:00
|
|
|
g_signal_connect (self->priv->app_chooser_widget, "application-activated",
|
2010-11-24 23:32:05 +00:00
|
|
|
G_CALLBACK (widget_application_activated_cb), self);
|
2011-01-20 21:22:51 +00:00
|
|
|
g_signal_connect (self->priv->app_chooser_widget, "notify::show-other",
|
2010-11-24 23:32:05 +00:00
|
|
|
G_CALLBACK (widget_notify_for_button_cb), self);
|
2010-11-24 16:11:17 +00:00
|
|
|
g_signal_connect (self->priv->app_chooser_widget, "populate-popup",
|
2010-11-24 23:32:05 +00:00
|
|
|
G_CALLBACK (widget_populate_popup_cb), self);
|
2010-11-17 18:28:48 +00:00
|
|
|
|
2013-03-23 14:02:33 +00:00
|
|
|
/* Add the custom button to the new appchooser */
|
|
|
|
gtk_box_pack_start (GTK_BOX (self->priv->app_chooser_widget),
|
|
|
|
self->priv->show_more_button, FALSE, FALSE, 6);
|
2010-11-17 18:28:48 +00:00
|
|
|
|
2011-08-29 03:49:41 +00:00
|
|
|
info = gtk_app_chooser_get_app_info (GTK_APP_CHOOSER (self->priv->app_chooser_widget));
|
2013-12-08 14:22:46 +00:00
|
|
|
gtk_dialog_set_response_sensitive (GTK_DIALOG (self), GTK_RESPONSE_OK, info != NULL);
|
2011-08-29 03:49:41 +00:00
|
|
|
if (info)
|
|
|
|
g_object_unref (info);
|
2010-11-17 18:28:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
set_gfile_and_content_type (GtkAppChooserDialog *self,
|
2013-12-18 02:23:05 +00:00
|
|
|
GFile *file)
|
2010-11-17 18:28:48 +00:00
|
|
|
{
|
|
|
|
GFileInfo *info;
|
|
|
|
|
|
|
|
if (file == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
self->priv->gfile = g_object_ref (file);
|
|
|
|
|
|
|
|
info = g_file_query_info (self->priv->gfile,
|
2010-11-24 23:32:05 +00:00
|
|
|
G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE,
|
|
|
|
0, NULL, NULL);
|
2010-11-17 18:28:48 +00:00
|
|
|
self->priv->content_type = g_strdup (g_file_info_get_content_type (info));
|
|
|
|
|
|
|
|
g_object_unref (info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GAppInfo *
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_dialog_get_app_info (GtkAppChooser *object)
|
2010-11-17 18:28:48 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (object);
|
2012-05-04 21:53:54 +00:00
|
|
|
return gtk_app_chooser_get_app_info (GTK_APP_CHOOSER (self->priv->app_chooser_widget));
|
2010-11-17 18:28:48 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 22:02:57 +00:00
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_dialog_refresh (GtkAppChooser *object)
|
2010-11-22 22:02:57 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (object);
|
2010-11-22 22:02:57 +00:00
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_refresh (GTK_APP_CHOOSER (self->priv->app_chooser_widget));
|
2010-11-22 22:02:57 +00:00
|
|
|
}
|
|
|
|
|
2013-12-18 02:23:05 +00:00
|
|
|
static void
|
|
|
|
show_error_dialog (const gchar *primary,
|
|
|
|
const gchar *secondary,
|
|
|
|
GtkWindow *parent)
|
|
|
|
{
|
|
|
|
GtkWidget *message_dialog;
|
|
|
|
|
|
|
|
message_dialog = gtk_message_dialog_new (parent, 0,
|
|
|
|
GTK_MESSAGE_ERROR,
|
|
|
|
GTK_BUTTONS_OK,
|
|
|
|
NULL);
|
|
|
|
g_object_set (message_dialog,
|
|
|
|
"text", primary,
|
|
|
|
"secondary-text", secondary,
|
|
|
|
NULL);
|
|
|
|
gtk_dialog_set_default_response (GTK_DIALOG (message_dialog), GTK_RESPONSE_OK);
|
|
|
|
|
|
|
|
gtk_widget_show (message_dialog);
|
|
|
|
|
|
|
|
g_signal_connect (message_dialog, "response",
|
|
|
|
G_CALLBACK (gtk_widget_destroy), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
software_button_clicked_cb (GtkButton *button,
|
|
|
|
GtkAppChooserDialog *self)
|
|
|
|
{
|
|
|
|
GSubprocess *process;
|
|
|
|
GError *error = NULL;
|
|
|
|
gchar *option;
|
|
|
|
|
|
|
|
if (self->priv->content_type)
|
|
|
|
option = g_strconcat ("--search=", self->priv->content_type, NULL);
|
|
|
|
else
|
|
|
|
option = g_strdup ("--mode=overview");
|
|
|
|
|
|
|
|
process = g_subprocess_new (0, &error, "gnome-software", option, NULL);
|
|
|
|
if (!process)
|
|
|
|
{
|
|
|
|
show_error_dialog (_("Failed to start GNOME Software"),
|
|
|
|
error->message, GTK_WINDOW (self));
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_object_unref (process);
|
|
|
|
|
|
|
|
g_free (option);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ensure_software_button (GtkAppChooserDialog *self)
|
|
|
|
{
|
|
|
|
if (g_find_program_in_path ("gnome-software"))
|
|
|
|
{
|
2013-12-08 14:22:46 +00:00
|
|
|
GtkWidget *parent;
|
|
|
|
gboolean use_header;
|
|
|
|
|
|
|
|
self->priv->software_button = gtk_button_new_with_label (_("Software"));
|
2013-12-18 02:23:05 +00:00
|
|
|
|
|
|
|
gtk_button_set_always_show_image (GTK_BUTTON (self->priv->software_button), TRUE);
|
|
|
|
gtk_button_set_image (GTK_BUTTON (self->priv->software_button), gtk_image_new_from_icon_name ("gnome-software", GTK_ICON_SIZE_BUTTON));
|
2013-12-08 14:22:46 +00:00
|
|
|
gtk_widget_set_valign (self->priv->software_button, GTK_ALIGN_CENTER);
|
2013-12-18 02:23:05 +00:00
|
|
|
g_signal_connect (self->priv->software_button, "clicked",
|
|
|
|
G_CALLBACK (software_button_clicked_cb), self);
|
|
|
|
gtk_widget_show (self->priv->software_button);
|
2013-12-08 14:22:46 +00:00
|
|
|
|
|
|
|
g_object_get (self, "use-header-bar", &use_header, NULL);
|
|
|
|
if (use_header)
|
|
|
|
{
|
|
|
|
parent = gtk_dialog_get_header_bar (GTK_DIALOG (self));
|
|
|
|
gtk_header_bar_pack_end (GTK_HEADER_BAR (parent), self->priv->software_button);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
|
|
parent = gtk_dialog_get_action_area (GTK_DIALOG (self));
|
|
|
|
gtk_container_add (GTK_CONTAINER (parent), self->priv->software_button);
|
|
|
|
gtk_button_box_set_child_secondary (GTK_BUTTON_BOX (parent), self->priv->software_button, TRUE);
|
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
|
|
|
}
|
2013-12-18 02:23:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-16 12:47:51 +00:00
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_dialog_constructed (GObject *object)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (object);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
if (G_OBJECT_CLASS (gtk_app_chooser_dialog_parent_class)->constructed != NULL)
|
|
|
|
G_OBJECT_CLASS (gtk_app_chooser_dialog_parent_class)->constructed (object);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2013-03-23 14:02:33 +00:00
|
|
|
construct_appchooser_widget (self);
|
2010-11-16 12:47:51 +00:00
|
|
|
set_dialog_properties (self);
|
2013-12-18 02:23:05 +00:00
|
|
|
ensure_software_button (self);
|
2010-11-16 12:47:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-29 17:10:06 +00:00
|
|
|
gtk_app_chooser_dialog_dispose (GObject *object)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (object);
|
2010-11-29 17:10:06 +00:00
|
|
|
|
|
|
|
g_clear_object (&self->priv->gfile);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2013-05-03 00:00:49 +00:00
|
|
|
self->priv->dismissed = TRUE;
|
|
|
|
|
2010-11-29 17:10:06 +00:00
|
|
|
G_OBJECT_CLASS (gtk_app_chooser_dialog_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_app_chooser_dialog_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (object);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
g_free (self->priv->content_type);
|
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
G_OBJECT_CLASS (gtk_app_chooser_dialog_parent_class)->finalize (object);
|
2010-11-16 12:47:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-24 23:32:05 +00:00
|
|
|
gtk_app_chooser_dialog_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (object);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_GFILE:
|
2010-11-17 18:28:48 +00:00
|
|
|
set_gfile_and_content_type (self, g_value_get_object (value));
|
2010-11-16 12:47:51 +00:00
|
|
|
break;
|
|
|
|
case PROP_CONTENT_TYPE:
|
2010-11-17 18:28:48 +00:00
|
|
|
/* don't try to override a value previously set with the GFile */
|
|
|
|
if (self->priv->content_type == NULL)
|
2010-11-24 23:32:05 +00:00
|
|
|
self->priv->content_type = g_value_dup_string (value);
|
2010-11-16 12:47:51 +00:00
|
|
|
break;
|
2011-01-21 01:55:59 +00:00
|
|
|
case PROP_HEADING:
|
|
|
|
gtk_app_chooser_dialog_set_heading (self, g_value_get_string (value));
|
|
|
|
break;
|
2010-11-16 12:47:51 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-24 23:32:05 +00:00
|
|
|
gtk_app_chooser_dialog_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
GtkAppChooserDialog *self = GTK_APP_CHOOSER_DIALOG (object);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_GFILE:
|
|
|
|
if (self->priv->gfile != NULL)
|
2010-11-24 23:32:05 +00:00
|
|
|
g_value_set_object (value, self->priv->gfile);
|
2010-11-16 12:47:51 +00:00
|
|
|
break;
|
|
|
|
case PROP_CONTENT_TYPE:
|
|
|
|
g_value_set_string (value, self->priv->content_type);
|
|
|
|
break;
|
2011-01-21 01:55:59 +00:00
|
|
|
case PROP_HEADING:
|
|
|
|
g_value_set_string (value, self->priv->heading);
|
|
|
|
break;
|
2010-11-16 12:47:51 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-17 18:28:48 +00:00
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_dialog_iface_init (GtkAppChooserIface *iface)
|
2010-11-17 18:28:48 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
iface->get_app_info = gtk_app_chooser_dialog_get_app_info;
|
|
|
|
iface->refresh = gtk_app_chooser_dialog_refresh;
|
2010-11-17 18:28:48 +00:00
|
|
|
}
|
|
|
|
|
2010-11-16 12:47:51 +00:00
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_dialog_class_init (GtkAppChooserDialogClass *klass)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2013-03-23 14:02:33 +00:00
|
|
|
GtkWidgetClass *widget_class;
|
2010-11-16 12:47:51 +00:00
|
|
|
GObjectClass *gobject_class;
|
2010-11-17 18:28:48 +00:00
|
|
|
GParamSpec *pspec;
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
2010-11-29 17:10:06 +00:00
|
|
|
gobject_class->dispose = gtk_app_chooser_dialog_dispose;
|
2010-11-23 16:23:37 +00:00
|
|
|
gobject_class->finalize = gtk_app_chooser_dialog_finalize;
|
|
|
|
gobject_class->set_property = gtk_app_chooser_dialog_set_property;
|
|
|
|
gobject_class->get_property = gtk_app_chooser_dialog_get_property;
|
|
|
|
gobject_class->constructed = gtk_app_chooser_dialog_constructed;
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2010-11-17 18:28:48 +00:00
|
|
|
g_object_class_override_property (gobject_class, PROP_CONTENT_TYPE, "content-type");
|
|
|
|
|
2010-11-30 14:03:33 +00:00
|
|
|
/**
|
|
|
|
* GtkAppChooserDialog:gfile:
|
|
|
|
*
|
|
|
|
* The GFile used by the #GtkAppChooserDialog.
|
|
|
|
* The dialog's #GtkAppChooserWidget content type will be guessed from the
|
|
|
|
* file, if present.
|
|
|
|
*/
|
2010-11-17 18:28:48 +00:00
|
|
|
pspec = g_param_spec_object ("gfile",
|
2010-11-24 23:32:05 +00:00
|
|
|
P_("GFile"),
|
2010-11-30 14:03:33 +00:00
|
|
|
P_("The GFile used by the app chooser dialog"),
|
2010-11-24 23:32:05 +00:00
|
|
|
G_TYPE_FILE,
|
|
|
|
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE |
|
|
|
|
G_PARAM_STATIC_STRINGS);
|
2010-11-17 18:28:48 +00:00
|
|
|
g_object_class_install_property (gobject_class, PROP_GFILE, pspec);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
2011-01-21 01:55:59 +00:00
|
|
|
/**
|
|
|
|
* GtkAppChooserDialog:heading:
|
|
|
|
*
|
|
|
|
* The text to show at the top of the dialog.
|
|
|
|
* The string may contain Pango markup.
|
|
|
|
*/
|
|
|
|
pspec = g_param_spec_string ("heading",
|
|
|
|
P_("Heading"),
|
|
|
|
P_("The text to show at the top of the dialog"),
|
|
|
|
NULL,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
|
|
|
|
g_object_class_install_property (gobject_class, PROP_HEADING, pspec);
|
|
|
|
|
2013-03-23 14:02:33 +00:00
|
|
|
/* Bind class to template
|
|
|
|
*/
|
|
|
|
widget_class = GTK_WIDGET_CLASS (klass);
|
2013-12-08 14:22:46 +00:00
|
|
|
|
2013-03-23 14:02:33 +00:00
|
|
|
gtk_widget_class_set_template_from_resource (widget_class,
|
|
|
|
"/org/gtk/libgtk/gtkappchooserdialog.ui");
|
2013-07-26 20:29:12 +00:00
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkAppChooserDialog, label);
|
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkAppChooserDialog, show_more_button);
|
|
|
|
gtk_widget_class_bind_template_child_private (widget_class, GtkAppChooserDialog, inner_box);
|
2013-07-26 17:49:49 +00:00
|
|
|
gtk_widget_class_bind_template_callback (widget_class, show_more_button_clicked_cb);
|
2010-11-16 12:47:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_dialog_init (GtkAppChooserDialog *self)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
2013-06-27 19:02:52 +00:00
|
|
|
self->priv = gtk_app_chooser_dialog_get_instance_private (self);
|
2010-11-24 14:49:47 +00:00
|
|
|
|
2013-03-23 14:02:33 +00:00
|
|
|
gtk_widget_init_template (GTK_WIDGET (self));
|
2013-12-08 14:22:46 +00:00
|
|
|
gtk_dialog_set_use_header_bar_from_setting (GTK_DIALOG (self));
|
|
|
|
gtk_dialog_add_buttons (GTK_DIALOG (self),
|
|
|
|
_("_Cancel"), GTK_RESPONSE_CANCEL,
|
|
|
|
_("_Select"), GTK_RESPONSE_OK,
|
|
|
|
NULL);
|
|
|
|
gtk_dialog_set_default_response (GTK_DIALOG (self), GTK_RESPONSE_OK);
|
|
|
|
|
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
|
|
|
gtk_dialog_set_alternative_button_order (GTK_DIALOG (self),
|
|
|
|
GTK_RESPONSE_OK,
|
|
|
|
GTK_RESPONSE_CANCEL,
|
|
|
|
-1);
|
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS
|
2013-03-23 14:02:33 +00:00
|
|
|
|
2010-11-24 14:49:47 +00:00
|
|
|
/* we can't override the class signal handler here, as it's a RUN_LAST;
|
|
|
|
* we want our signal handler instead to be executed before any user code.
|
|
|
|
*/
|
|
|
|
g_signal_connect (self, "response",
|
2010-11-24 23:32:05 +00:00
|
|
|
G_CALLBACK (gtk_app_chooser_dialog_response), NULL);
|
2010-11-16 12:47:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-24 23:32:05 +00:00
|
|
|
set_parent_and_flags (GtkWidget *dialog,
|
|
|
|
GtkWindow *parent,
|
|
|
|
GtkDialogFlags flags)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
|
|
|
if (parent != NULL)
|
2010-11-24 23:32:05 +00:00
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
|
|
|
|
|
2010-11-16 12:47:51 +00:00
|
|
|
if (flags & GTK_DIALOG_MODAL)
|
|
|
|
gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
|
|
|
|
|
|
|
|
if (flags & GTK_DIALOG_DESTROY_WITH_PARENT)
|
|
|
|
gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE);
|
|
|
|
}
|
|
|
|
|
2010-11-16 18:24:00 +00:00
|
|
|
/**
|
2010-11-23 16:23:37 +00:00
|
|
|
* gtk_app_chooser_dialog_new:
|
2010-11-16 18:24:00 +00:00
|
|
|
* @parent: (allow-none): a #GtkWindow, or %NULL
|
|
|
|
* @flags: flags for this dialog
|
|
|
|
* @file: a #GFile
|
|
|
|
*
|
2010-11-24 23:32:05 +00:00
|
|
|
* Creates a new #GtkAppChooserDialog for the provided #GFile,
|
|
|
|
* to allow the user to select an application for it.
|
2010-11-16 18:24:00 +00:00
|
|
|
*
|
2010-11-23 16:23:37 +00:00
|
|
|
* Returns: a newly created #GtkAppChooserDialog
|
2010-11-16 18:24:00 +00:00
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
2010-11-16 12:47:51 +00:00
|
|
|
GtkWidget *
|
2010-11-24 23:32:05 +00:00
|
|
|
gtk_app_chooser_dialog_new (GtkWindow *parent,
|
|
|
|
GtkDialogFlags flags,
|
|
|
|
GFile *file)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
|
|
|
GtkWidget *retval;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_FILE (file), NULL);
|
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
retval = g_object_new (GTK_TYPE_APP_CHOOSER_DIALOG,
|
2010-11-24 23:32:05 +00:00
|
|
|
"gfile", file,
|
|
|
|
NULL);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
set_parent_and_flags (retval, parent, flags);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2010-11-16 18:24:00 +00:00
|
|
|
/**
|
2010-11-23 16:23:37 +00:00
|
|
|
* gtk_app_chooser_dialog_new_for_content_type:
|
2010-11-16 18:24:00 +00:00
|
|
|
* @parent: (allow-none): a #GtkWindow, or %NULL
|
|
|
|
* @flags: flags for this dialog
|
|
|
|
* @content_type: a content type string
|
|
|
|
*
|
2010-11-24 23:32:05 +00:00
|
|
|
* Creates a new #GtkAppChooserDialog for the provided content type,
|
|
|
|
* to allow the user to select an application for it.
|
2010-11-16 18:24:00 +00:00
|
|
|
*
|
2010-11-23 16:23:37 +00:00
|
|
|
* Returns: a newly created #GtkAppChooserDialog
|
2010-11-16 18:24:00 +00:00
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
2010-11-16 12:47:51 +00:00
|
|
|
GtkWidget *
|
2010-11-24 23:32:05 +00:00
|
|
|
gtk_app_chooser_dialog_new_for_content_type (GtkWindow *parent,
|
|
|
|
GtkDialogFlags flags,
|
|
|
|
const gchar *content_type)
|
2010-11-16 12:47:51 +00:00
|
|
|
{
|
|
|
|
GtkWidget *retval;
|
|
|
|
|
|
|
|
g_return_val_if_fail (content_type != NULL, NULL);
|
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
retval = g_object_new (GTK_TYPE_APP_CHOOSER_DIALOG,
|
2010-11-24 23:32:05 +00:00
|
|
|
"content-type", content_type,
|
|
|
|
NULL);
|
2010-11-16 12:47:51 +00:00
|
|
|
|
|
|
|
set_parent_and_flags (retval, parent, flags);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
2010-11-16 13:31:03 +00:00
|
|
|
|
2010-11-24 23:32:05 +00:00
|
|
|
/**
|
|
|
|
* gtk_app_chooser_dialog_get_widget:
|
|
|
|
* @self: a #GtkAppChooserDialog
|
|
|
|
*
|
|
|
|
* Returns the #GtkAppChooserWidget of this dialog.
|
|
|
|
*
|
2010-11-30 16:27:53 +00:00
|
|
|
* Returns: (transfer none): the #GtkAppChooserWidget of @self
|
2010-11-24 23:32:05 +00:00
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
*/
|
2010-11-17 18:28:48 +00:00
|
|
|
GtkWidget *
|
2010-11-23 16:23:37 +00:00
|
|
|
gtk_app_chooser_dialog_get_widget (GtkAppChooserDialog *self)
|
2010-11-16 17:02:29 +00:00
|
|
|
{
|
2010-11-23 16:23:37 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_APP_CHOOSER_DIALOG (self), NULL);
|
2010-11-16 17:02:29 +00:00
|
|
|
|
2010-11-23 16:23:37 +00:00
|
|
|
return self->priv->app_chooser_widget;
|
2010-11-16 18:23:15 +00:00
|
|
|
}
|
2011-01-21 01:55:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_app_chooser_dialog_set_heading:
|
|
|
|
* @self: a #GtkAppChooserDialog
|
|
|
|
* @heading: a string containing Pango markup
|
|
|
|
*
|
|
|
|
* Sets the text to display at the top of the dialog.
|
|
|
|
* If the heading is not set, the dialog displays a default text.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_app_chooser_dialog_set_heading (GtkAppChooserDialog *self,
|
|
|
|
const gchar *heading)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_APP_CHOOSER_DIALOG (self));
|
|
|
|
|
|
|
|
g_free (self->priv->heading);
|
|
|
|
self->priv->heading = g_strdup (heading);
|
|
|
|
|
|
|
|
if (self->priv->label && self->priv->heading)
|
|
|
|
gtk_label_set_markup (GTK_LABEL (self->priv->label), self->priv->heading);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (self), "heading");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_app_chooser_dialog_get_heading:
|
|
|
|
* @self: a #GtkAppChooserDialog
|
|
|
|
*
|
|
|
|
* Returns the text to display at the top of the dialog.
|
|
|
|
*
|
|
|
|
* Returns: the text to display at the top of the dialog, or %NULL, in which
|
|
|
|
* case a default text is displayed
|
|
|
|
*/
|
|
|
|
const gchar *
|
|
|
|
gtk_app_chooser_dialog_get_heading (GtkAppChooserDialog *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_APP_CHOOSER_DIALOG (self), NULL);
|
|
|
|
|
|
|
|
return self->priv->heading;
|
|
|
|
}
|