~alexlauni/ubuntu/lucid/gnome-control-center/fix-533888

« back to all changes in this revision

Viewing changes to capplets/appearance/appearance.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-06-13 12:30:08 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20070613123008-nmcon6qb309hkjek
Tags: upstream-2.19.3
ImportĀ upstreamĀ versionĀ 2.19.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2007 The GNOME Foundation
 
3
 * Written by Thomas Wood <thos@gnome.org>
 
4
 * All Rights Reserved
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License along
 
17
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
18
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
19
 */
 
20
 
 
21
#include "config.h"
 
22
 
 
23
#include <glib.h>
 
24
#include <gtk/gtk.h>
 
25
#include <glade/glade.h>
 
26
#include <libgnomevfs/gnome-vfs.h>
 
27
#include <gconf/gconf-client.h>
 
28
#include <libgnomeui/gnome-thumbnail.h>
 
29
 
 
30
typedef struct {
 
31
  GConfClient *client;
 
32
  int argc;
 
33
  char **argv;
 
34
  GladeXML *xml;
 
35
 
 
36
  /* desktop */
 
37
  GHashTable *wp_hash;
 
38
  GnomeThumbnailFactory *wp_thumbs;
 
39
  gboolean wp_update_gconf;
 
40
  GtkIconView *wp_view;
 
41
  GtkTreeModel *wp_model;
 
42
  GtkCellRenderer *wp_cell;
 
43
  GtkWidget *wp_scpicker;
 
44
  GtkWidget *wp_pcpicker;
 
45
  GtkWidget *wp_style_menu;
 
46
  GtkWidget *wp_color_menu;
 
47
  GtkWidget *wp_rem_button;
 
48
  GtkWidget *wp_filesel;
 
49
  GtkWidget *wp_image;
 
50
 
 
51
  /* font */
 
52
  GtkWidget *font_details;
 
53
} AppearanceData;