~ubuntu-branches/ubuntu/quantal/gimp/quantal-updates

« back to all changes in this revision

Viewing changes to app/config/gimpcoreconfig.h

  • Committer: Package Import Robot
  • Author(s): Micah Gersten
  • Date: 2012-05-20 19:21:01 UTC
  • mfrom: (1.1.26) (0.4.16 sid)
  • Revision ID: package-import@ubuntu.com-20120520192101-bs7zetx8ffoq2nfv
Tags: 2.8.0-2ubuntu1
* Merge from Debian unstable (LP: #908472). Remaining Changes:
  - debian/patches/02_help-message.patch,
    debian/patches/03_gimp.desktop.in.in.patch:
    + Update some strings for Ubuntu
  - debian/control:
    + Update description
  - debian/rules:
    + Set gettext domain and update translation templates
* Drop the following patches that were applied upstream:
  - debian/patches/ghost-cursor.patch: fix Wacom tablet cursor events
  - debian/patches/embed-page-setup-dialog.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * GimpCoreConfig class
5
5
 * Copyright (C) 2001  Sven Neumann <sven@gimp.org>
6
6
 *
7
 
 * This program is free software; you can redistribute it and/or modify
 
7
 * This program is free software: you can redistribute it and/or modify
8
8
 * it under the terms of the GNU General Public License as published by
9
 
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * the Free Software Foundation; either version 3 of the License, or
10
10
 * (at your option) any later version.
11
11
 *
12
12
 * This program is distributed in the hope that it will be useful,
15
15
 * GNU General Public License for more details.
16
16
 *
17
17
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program; if not, write to the Free Software
19
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
19
 */
21
20
 
22
21
#ifndef __GIMP_CORE_CONFIG_H__
40
39
{
41
40
  GimpBaseConfig          parent_instance;
42
41
 
 
42
  gchar                  *language;
43
43
  GimpInterpolationType   interpolation_type;
 
44
  gint                    default_threshold;
44
45
  gchar                  *plug_in_path;
45
46
  gchar                  *module_path;
46
47
  gchar                  *interpreter_path;
47
48
  gchar                  *environ_path;
48
49
  gchar                  *brush_path;
49
50
  gchar                  *brush_path_writable;
 
51
  gchar                  *dynamics_path;
 
52
  gchar                  *dynamics_path_writable;
50
53
  gchar                  *pattern_path;
51
54
  gchar                  *pattern_path_writable;
52
55
  gchar                  *palette_path;
53
56
  gchar                  *palette_path_writable;
54
57
  gchar                  *gradient_path;
55
58
  gchar                  *gradient_path_writable;
 
59
  gchar                  *tool_preset_path;
 
60
  gchar                  *tool_preset_path_writable;
56
61
  gchar                  *font_path;
57
62
  gchar                  *font_path_writable;  /*  unused  */
58
63
  gchar                  *default_brush;
 
64
  gchar                  *default_dynamics;
59
65
  gchar                  *default_pattern;
60
66
  gchar                  *default_palette;
 
67
  gchar                  *default_tool_preset;
61
68
  gchar                  *default_gradient;
62
69
  gchar                  *default_font;
63
70
  gboolean                global_brush;
 
71
  gboolean                global_dynamics;
64
72
  gboolean                global_pattern;
65
73
  gboolean                global_palette;
66
74
  gboolean                global_gradient;
76
84
  GimpViewSize            layer_preview_size;
77
85
  GimpThumbnailSize       thumbnail_size;
78
86
  guint64                 thumbnail_filesize_limit;
79
 
  gboolean                install_cmap;
80
 
  gint                    min_colors;
81
87
  GimpColorConfig        *color_management;
82
88
  GimpColorProfilePolicy  color_profile_policy;
83
89
  gboolean                save_document_history;
 
90
  GimpRGB                 quick_mask_color;
84
91
  gboolean                use_gegl;
85
92
};
86
93