2008-05-08 Jens Granseuer <jensgr@gmx.net> * appearance-style.c: (style_message_area_response_cb), (update_message_area), (gtk_theme_changed), (style_init): * appearance.h: * data/appearance.glade: also show a missing theme engine in the GTK themes list and offer to install it via packagekit svn path=/trunk/; revision=8698
81 lines
2.3 KiB
C
81 lines
2.3 KiB
C
/*
|
|
* Copyright (C) 2007 The GNOME Foundation
|
|
* Written by Thomas Wood <thos@gnome.org>
|
|
* All Rights Reserved
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib.h>
|
|
#include <gtk/gtk.h>
|
|
#include <glade/glade.h>
|
|
#include <libgnomevfs/gnome-vfs.h>
|
|
#include <gconf/gconf-client.h>
|
|
#include <libgnomeui/gnome-thumbnail.h>
|
|
|
|
#include "gnome-theme-info.h"
|
|
|
|
typedef struct {
|
|
GConfClient *client;
|
|
GladeXML *xml;
|
|
GnomeThumbnailFactory *thumb_factory;
|
|
|
|
/* desktop */
|
|
GHashTable *wp_hash;
|
|
gboolean wp_update_gconf;
|
|
GtkIconView *wp_view;
|
|
GtkTreeModel *wp_model;
|
|
GtkWidget *wp_scpicker;
|
|
GtkWidget *wp_pcpicker;
|
|
GtkWidget *wp_style_menu;
|
|
GtkWidget *wp_color_menu;
|
|
GtkWidget *wp_rem_button;
|
|
GtkFileChooser *wp_filesel;
|
|
GtkWidget *wp_image;
|
|
GSList *wp_uris;
|
|
|
|
/* font */
|
|
GtkWidget *font_details;
|
|
GSList *font_groups;
|
|
|
|
/* themes */
|
|
GtkListStore *theme_store;
|
|
GnomeThemeMetaInfo *theme_custom;
|
|
GdkPixbuf *theme_icon;
|
|
GtkWidget *theme_save_dialog;
|
|
GtkWidget *theme_message_area;
|
|
GtkWidget *theme_message_label;
|
|
GtkWidget *apply_background_button;
|
|
GtkWidget *revert_font_button;
|
|
GtkWidget *apply_font_button;
|
|
GtkWidget *install_button;
|
|
GtkWidget *theme_info_icon;
|
|
GtkWidget *theme_error_icon;
|
|
gchar *revert_application_font;
|
|
gchar *revert_documents_font;
|
|
gchar *revert_desktop_font;
|
|
gchar *revert_windowtitle_font;
|
|
gchar *revert_monospace_font;
|
|
|
|
/* style */
|
|
GdkPixbuf *gtk_theme_icon;
|
|
GdkPixbuf *window_theme_icon;
|
|
GdkPixbuf *icon_theme_icon;
|
|
GtkWidget *style_message_area;
|
|
GtkWidget *style_message_label;
|
|
GtkWidget *style_install_button;
|
|
} AppearanceData;
|