966 lines
37 KiB
C
966 lines
37 KiB
C
/* PIKA - Photo and Image Kooker Application
|
|
* a rebranding of The GNU Image Manipulation Program (created with heckimp)
|
|
* A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio
|
|
*
|
|
* Original copyright, applying to most contents (license remains unchanged):
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* PikaGuiConfig class
|
|
* Copyright (C) 2001 Sven Neumann <sven@gimp.org>
|
|
*
|
|
* 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 3 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, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include "libpikabase/pikabase.h"
|
|
#include "libpikaconfig/pikaconfig.h"
|
|
|
|
#include "config-types.h"
|
|
|
|
#include "pikarc-blurbs.h"
|
|
#include "pikaguiconfig.h"
|
|
|
|
#include "pika-intl.h"
|
|
|
|
|
|
#ifdef HAVE_WEBKIT
|
|
#define DEFAULT_HELP_BROWSER PIKA_HELP_BROWSER_PIKA
|
|
#else
|
|
#define DEFAULT_HELP_BROWSER PIKA_HELP_BROWSER_WEB_BROWSER
|
|
#endif
|
|
|
|
#define DEFAULT_USER_MANUAL_ONLINE_URI \
|
|
"https://heckin.technology/AlderconeStudio/PIKApp/wiki/" PIKA_APP_VERSION_STRING
|
|
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_EDIT_NON_VISIBLE,
|
|
PROP_MOVE_TOOL_CHANGES_ACTIVE,
|
|
PROP_FILTER_TOOL_MAX_RECENT,
|
|
PROP_FILTER_TOOL_USE_LAST_SETTINGS,
|
|
PROP_FILTER_TOOL_SHOW_COLOR_OPTIONS,
|
|
PROP_TRUST_DIRTY_FLAG,
|
|
PROP_SAVE_DEVICE_STATUS,
|
|
PROP_DEVICES_SHARE_TOOL,
|
|
PROP_SAVE_SESSION_INFO,
|
|
PROP_RESTORE_SESSION,
|
|
PROP_RESTORE_MONITOR,
|
|
PROP_SAVE_TOOL_OPTIONS,
|
|
PROP_CAN_CHANGE_ACCELS,
|
|
PROP_SAVE_ACCELS,
|
|
PROP_RESTORE_ACCELS,
|
|
PROP_LAST_OPENED_SIZE,
|
|
PROP_MAX_NEW_IMAGE_SIZE,
|
|
PROP_TOOLBOX_COLOR_AREA,
|
|
PROP_TOOLBOX_FOO_AREA,
|
|
PROP_TOOLBOX_IMAGE_AREA,
|
|
PROP_TOOLBOX_MASCOT,
|
|
PROP_TOOLBOX_GROUPS,
|
|
PROP_THEME_PATH,
|
|
PROP_THEME,
|
|
PROP_PREFER_DARK_THEME,
|
|
PROP_OVERRIDE_THEME_ICON_SIZE,
|
|
PROP_CUSTOM_ICON_SIZE,
|
|
PROP_ICON_THEME_PATH,
|
|
PROP_ICON_THEME,
|
|
PROP_PREFER_SYMBOLIC_ICONS,
|
|
PROP_FONT_RELATIVE_SIZE,
|
|
PROP_USE_HELP,
|
|
PROP_SHOW_HELP_BUTTON,
|
|
PROP_HELP_LOCALES,
|
|
PROP_HELP_BROWSER,
|
|
PROP_ACTION_HISTORY_SIZE,
|
|
PROP_USER_MANUAL_ONLINE,
|
|
PROP_USER_MANUAL_ONLINE_URI,
|
|
PROP_DOCK_WINDOW_HINT,
|
|
PROP_CURSOR_HANDEDNESS,
|
|
PROP_CUSTOM_TITLE_BAR,
|
|
|
|
PROP_PLAYGROUND_NPD_TOOL,
|
|
PROP_PLAYGROUND_SEAMLESS_CLONE_TOOL,
|
|
PROP_PLAYGROUND_PAINT_SELECT_TOOL,
|
|
|
|
PROP_HIDE_DOCKS,
|
|
PROP_SINGLE_WINDOW_MODE,
|
|
PROP_SHOW_TABS,
|
|
PROP_TABS_POSITION,
|
|
PROP_LAST_TIP_SHOWN,
|
|
|
|
/* ignored, only for backward compatibility: */
|
|
PROP_CURSOR_FORMAT,
|
|
PROP_IMAGE_MAP_TOOL_MAX_RECENT,
|
|
PROP_INFO_WINDOW_PER_DISPLAY,
|
|
PROP_MENU_MNEMONICS,
|
|
PROP_SHOW_TOOL_TIPS,
|
|
PROP_SHOW_TIPS,
|
|
PROP_TOOLBOX_WINDOW_HINT,
|
|
PROP_TRANSIENT_DOCKS,
|
|
PROP_WEB_BROWSER
|
|
};
|
|
|
|
|
|
static void pika_gui_config_finalize (GObject *object);
|
|
static void pika_gui_config_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec);
|
|
static void pika_gui_config_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec);
|
|
|
|
G_DEFINE_TYPE (PikaGuiConfig, pika_gui_config, PIKA_TYPE_DISPLAY_CONFIG)
|
|
|
|
#define parent_class pika_gui_config_parent_class
|
|
|
|
static void
|
|
pika_gui_config_class_init (PikaGuiConfigClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
gchar *path;
|
|
|
|
object_class->finalize = pika_gui_config_finalize;
|
|
object_class->set_property = pika_gui_config_set_property;
|
|
object_class->get_property = pika_gui_config_get_property;
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_EDIT_NON_VISIBLE,
|
|
"edit-non-visible",
|
|
"Non-visible layers can be edited",
|
|
EDIT_NON_VISIBLE_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_MOVE_TOOL_CHANGES_ACTIVE,
|
|
"move-tool-changes-active",
|
|
"Move tool changes active layer",
|
|
MOVE_TOOL_CHANGES_ACTIVE_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_INT (object_class, PROP_FILTER_TOOL_MAX_RECENT,
|
|
"filter-tool-max-recent",
|
|
"Max recent settings to keep in filters",
|
|
FILTER_TOOL_MAX_RECENT_BLURB,
|
|
0, 255, 10,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_FILTER_TOOL_USE_LAST_SETTINGS,
|
|
"filter-tool-use-last-settings",
|
|
"Use last used settings in filters",
|
|
FILTER_TOOL_USE_LAST_SETTINGS_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_FILTER_TOOL_SHOW_COLOR_OPTIONS,
|
|
"filter-tool-show-color-options",
|
|
"Show advanced color options in filters",
|
|
FILTER_TOOL_SHOW_COLOR_OPTIONS_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_TRUST_DIRTY_FLAG,
|
|
"trust-dirty-flag",
|
|
"Trust dirty flag",
|
|
TRUST_DIRTY_FLAG_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_SAVE_DEVICE_STATUS,
|
|
"save-device-status",
|
|
"Save device status",
|
|
SAVE_DEVICE_STATUS_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_DEVICES_SHARE_TOOL,
|
|
"devices-share-tool",
|
|
"Devices share tool",
|
|
DEVICES_SHARE_TOOL_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_SAVE_SESSION_INFO,
|
|
"save-session-info",
|
|
"Save session",
|
|
SAVE_SESSION_INFO_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_RESTORE_SESSION,
|
|
"restore-session",
|
|
"Restore session",
|
|
RESTORE_SESSION_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_RESTORE_MONITOR,
|
|
"restore-monitor",
|
|
"Restore monitor",
|
|
RESTORE_MONITOR_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_SAVE_TOOL_OPTIONS,
|
|
"save-tool-options",
|
|
"Save tool options",
|
|
SAVE_TOOL_OPTIONS_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
/* XXX: this is now ignored and unsed because we were relying on
|
|
* "gtk-can-change-accels" property of GtkSettings which is deprecated and
|
|
* ignored since GTK+ 3.10.
|
|
*
|
|
* Keeping the property around as a reminder of the regression in PIKA 3.
|
|
* Maybe we can reimplement this with custom code if there are requests. If we
|
|
* end up deciding to completely getting rid of the property, we must add
|
|
* update rules in pika-user-install.c for the pikarc parsing not to break.
|
|
*/
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_CAN_CHANGE_ACCELS,
|
|
"can-change-accels",
|
|
"Can change accelerators",
|
|
CAN_CHANGE_ACCELS_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_SAVE_ACCELS,
|
|
"save-accels",
|
|
"Save accelerators",
|
|
SAVE_ACCELS_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_RESTORE_ACCELS,
|
|
"restore-accels",
|
|
"Restore acclerator",
|
|
RESTORE_ACCELS_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_INT (object_class, PROP_LAST_OPENED_SIZE,
|
|
"last-opened-size",
|
|
"Size of recently used menu",
|
|
LAST_OPENED_SIZE_BLURB,
|
|
0, 1024, 10,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_RESTART);
|
|
|
|
PIKA_CONFIG_PROP_MEMSIZE (object_class, PROP_MAX_NEW_IMAGE_SIZE,
|
|
"max-new-image-size",
|
|
"Maximum new image size",
|
|
MAX_NEW_IMAGE_SIZE_BLURB,
|
|
0, PIKA_MAX_MEMSIZE, 1 << 27, /* 128MB */
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_TOOLBOX_COLOR_AREA,
|
|
"toolbox-color-area",
|
|
"Show toolbox color area",
|
|
TOOLBOX_COLOR_AREA_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_TOOLBOX_FOO_AREA,
|
|
"toolbox-foo-area",
|
|
"Show toolbox foo area",
|
|
TOOLBOX_FOO_AREA_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_TOOLBOX_IMAGE_AREA,
|
|
"toolbox-image-area",
|
|
"Show toolbox image area",
|
|
TOOLBOX_IMAGE_AREA_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_TOOLBOX_MASCOT,
|
|
"toolbox-mascot",
|
|
"Show toolbox wilber",
|
|
TOOLBOX_MASCOT_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_TOOLBOX_GROUPS,
|
|
"toolbox-groups",
|
|
"Use toolbox groups",
|
|
TOOLBOX_GROUPS_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
path = pika_config_build_data_path ("themes");
|
|
PIKA_CONFIG_PROP_PATH (object_class, PROP_THEME_PATH,
|
|
"theme-path",
|
|
"Theme path",
|
|
THEME_PATH_BLURB,
|
|
PIKA_CONFIG_PATH_DIR_LIST, path,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_RESTART);
|
|
g_free (path);
|
|
|
|
PIKA_CONFIG_PROP_STRING (object_class, PROP_THEME,
|
|
"theme",
|
|
"Theme",
|
|
THEME_BLURB,
|
|
PIKA_CONFIG_DEFAULT_THEME,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_PREFER_DARK_THEME,
|
|
"prefer-dark-theme",
|
|
"Prefer Dark Theme",
|
|
THEME_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_OVERRIDE_THEME_ICON_SIZE,
|
|
"override-theme-icon-size",
|
|
"Override theme-set icon sizes",
|
|
OVERRIDE_THEME_ICON_SIZE_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
PIKA_CONFIG_PROP_ENUM (object_class, PROP_CUSTOM_ICON_SIZE,
|
|
"custom-icon-size",
|
|
"Custom icon size",
|
|
ICON_SIZE_BLURB,
|
|
PIKA_TYPE_ICON_SIZE,
|
|
PIKA_ICON_SIZE_MEDIUM,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
path = pika_config_build_data_path ("icons");
|
|
PIKA_CONFIG_PROP_PATH (object_class, PROP_ICON_THEME_PATH,
|
|
"icon-theme-path",
|
|
"Icon theme path",
|
|
ICON_THEME_PATH_BLURB,
|
|
PIKA_CONFIG_PATH_DIR_LIST, path,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_RESTART);
|
|
g_free (path);
|
|
|
|
PIKA_CONFIG_PROP_STRING (object_class, PROP_ICON_THEME,
|
|
"icon-theme",
|
|
"Icon theme",
|
|
ICON_THEME_BLURB,
|
|
PIKA_CONFIG_DEFAULT_ICON_THEME,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_PREFER_SYMBOLIC_ICONS,
|
|
"prefer-symbolic-icons",
|
|
"Prefer symbolic icons",
|
|
PREFER_SYMBOLIC_ICONS_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_DOUBLE (object_class, PROP_FONT_RELATIVE_SIZE,
|
|
"font-relative-size",
|
|
"Tweak font-size from the theme",
|
|
FONT_SIZE_BLURB,
|
|
0.5, 2.0, 1.0,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_USE_HELP,
|
|
"use-help",
|
|
"Use help",
|
|
USE_HELP_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_SHOW_HELP_BUTTON,
|
|
"show-help-button",
|
|
"Show help button",
|
|
SHOW_HELP_BUTTON_BLURB,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_STRING (object_class, PROP_HELP_LOCALES,
|
|
"help-locales",
|
|
"Help locales",
|
|
HELP_LOCALES_BLURB,
|
|
"",
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_ENUM (object_class, PROP_HELP_BROWSER,
|
|
"help-browser",
|
|
"Help browser",
|
|
HELP_BROWSER_BLURB,
|
|
PIKA_TYPE_HELP_BROWSER_TYPE,
|
|
DEFAULT_HELP_BROWSER,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_USER_MANUAL_ONLINE,
|
|
"user-manual-online",
|
|
"User manual online",
|
|
USER_MANUAL_ONLINE_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_STRING (object_class, PROP_USER_MANUAL_ONLINE_URI,
|
|
"user-manual-online-uri",
|
|
"User manual online URI",
|
|
USER_MANUAL_ONLINE_URI_BLURB,
|
|
DEFAULT_USER_MANUAL_ONLINE_URI,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_INT (object_class, PROP_ACTION_HISTORY_SIZE,
|
|
"action-history-size",
|
|
"Action history size",
|
|
ACTION_HISTORY_SIZE_BLURB,
|
|
0, 1000, 100,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_ENUM (object_class, PROP_DOCK_WINDOW_HINT,
|
|
"dock-window-hint",
|
|
"Dock window hint",
|
|
DOCK_WINDOW_HINT_BLURB,
|
|
PIKA_TYPE_WINDOW_HINT,
|
|
PIKA_WINDOW_HINT_UTILITY,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_RESTART);
|
|
|
|
PIKA_CONFIG_PROP_ENUM (object_class, PROP_CURSOR_HANDEDNESS,
|
|
"cursor-handedness",
|
|
"Cursor handedness",
|
|
CURSOR_HANDEDNESS_BLURB,
|
|
PIKA_TYPE_HANDEDNESS,
|
|
PIKA_HANDEDNESS_RIGHT,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_CUSTOM_TITLE_BAR,
|
|
"custom-title-bar",
|
|
"Custom title bar embedding the menu",
|
|
CUSTOM_TITLE_BAR_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_RESTART);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_PLAYGROUND_NPD_TOOL,
|
|
"playground-npd-tool",
|
|
"Playground N-Point Deformation tool",
|
|
PLAYGROUND_NPD_TOOL_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_RESTART);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class,
|
|
PROP_PLAYGROUND_SEAMLESS_CLONE_TOOL,
|
|
"playground-seamless-clone-tool",
|
|
"Playground Seamless Clone tool",
|
|
PLAYGROUND_SEAMLESS_CLONE_TOOL_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_RESTART);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class,
|
|
PROP_PLAYGROUND_PAINT_SELECT_TOOL,
|
|
"playground-paint-select-tool",
|
|
"Playground Paint Select tool",
|
|
PLAYGROUND_PAINT_SELECT_TOOL_BLURB,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_RESTART);
|
|
|
|
g_object_class_install_property (object_class, PROP_HIDE_DOCKS,
|
|
g_param_spec_boolean ("hide-docks",
|
|
NULL,
|
|
HIDE_DOCKS_BLURB,
|
|
FALSE,
|
|
G_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT |
|
|
PIKA_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (object_class, PROP_SINGLE_WINDOW_MODE,
|
|
g_param_spec_boolean ("single-window-mode",
|
|
NULL,
|
|
SINGLE_WINDOW_MODE_BLURB,
|
|
TRUE,
|
|
G_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT |
|
|
PIKA_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (object_class, PROP_SHOW_TABS,
|
|
g_param_spec_boolean ("show-tabs",
|
|
NULL,
|
|
SHOW_TABS_BLURB,
|
|
TRUE,
|
|
G_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT |
|
|
PIKA_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (object_class, PROP_TABS_POSITION,
|
|
g_param_spec_enum ("tabs-position", NULL, NULL,
|
|
PIKA_TYPE_POSITION,
|
|
PIKA_POSITION_TOP,
|
|
G_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT |
|
|
PIKA_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (object_class, PROP_LAST_TIP_SHOWN,
|
|
g_param_spec_int ("last-tip-shown",
|
|
NULL, NULL,
|
|
0, G_MAXINT, 0,
|
|
G_PARAM_READWRITE |
|
|
G_PARAM_CONSTRUCT |
|
|
PIKA_PARAM_STATIC_STRINGS));
|
|
|
|
/* only for backward compatibility: */
|
|
PIKA_CONFIG_PROP_ENUM (object_class, PROP_CURSOR_FORMAT,
|
|
"cursor-format",
|
|
NULL, NULL,
|
|
PIKA_TYPE_CURSOR_FORMAT,
|
|
PIKA_CURSOR_FORMAT_PIXBUF,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
|
|
PIKA_CONFIG_PROP_INT (object_class, PROP_IMAGE_MAP_TOOL_MAX_RECENT,
|
|
"image-map-tool-max-recent",
|
|
NULL, NULL,
|
|
0, 255, 10,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_INFO_WINDOW_PER_DISPLAY,
|
|
"info-window-per-display",
|
|
NULL, NULL,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_MENU_MNEMONICS,
|
|
"menu-mnemonics",
|
|
NULL, NULL,
|
|
TRUE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_SHOW_TOOL_TIPS,
|
|
"show-tool-tips",
|
|
NULL, NULL,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_SHOW_TIPS,
|
|
"show-tips",
|
|
NULL, NULL,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
|
|
PIKA_CONFIG_PROP_ENUM (object_class, PROP_TOOLBOX_WINDOW_HINT,
|
|
"toolbox-window-hint",
|
|
NULL, NULL,
|
|
PIKA_TYPE_WINDOW_HINT,
|
|
PIKA_WINDOW_HINT_UTILITY,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
|
|
PIKA_CONFIG_PROP_BOOLEAN (object_class, PROP_TRANSIENT_DOCKS,
|
|
"transient-docks",
|
|
NULL, NULL,
|
|
FALSE,
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
|
|
PIKA_CONFIG_PROP_PATH (object_class, PROP_WEB_BROWSER,
|
|
"web-browser",
|
|
NULL, NULL,
|
|
PIKA_CONFIG_PATH_FILE,
|
|
"not used any longer",
|
|
PIKA_PARAM_STATIC_STRINGS |
|
|
PIKA_CONFIG_PARAM_IGNORE);
|
|
}
|
|
|
|
static void
|
|
pika_gui_config_init (PikaGuiConfig *config)
|
|
{
|
|
}
|
|
|
|
static void
|
|
pika_gui_config_finalize (GObject *object)
|
|
{
|
|
PikaGuiConfig *gui_config = PIKA_GUI_CONFIG (object);
|
|
|
|
g_free (gui_config->theme_path);
|
|
g_free (gui_config->theme);
|
|
g_free (gui_config->icon_theme_path);
|
|
g_free (gui_config->icon_theme);
|
|
g_free (gui_config->help_locales);
|
|
g_free (gui_config->user_manual_online_uri);
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
pika_gui_config_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PikaGuiConfig *gui_config = PIKA_GUI_CONFIG (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_EDIT_NON_VISIBLE:
|
|
gui_config->edit_non_visible = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_MOVE_TOOL_CHANGES_ACTIVE:
|
|
gui_config->move_tool_changes_active = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_FILTER_TOOL_MAX_RECENT:
|
|
case PROP_IMAGE_MAP_TOOL_MAX_RECENT:
|
|
gui_config->filter_tool_max_recent = g_value_get_int (value);
|
|
break;
|
|
case PROP_FILTER_TOOL_USE_LAST_SETTINGS:
|
|
gui_config->filter_tool_use_last_settings = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_FILTER_TOOL_SHOW_COLOR_OPTIONS:
|
|
gui_config->filter_tool_show_color_options = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_TRUST_DIRTY_FLAG:
|
|
gui_config->trust_dirty_flag = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_SAVE_DEVICE_STATUS:
|
|
gui_config->save_device_status = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_DEVICES_SHARE_TOOL:
|
|
gui_config->devices_share_tool = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_SAVE_SESSION_INFO:
|
|
gui_config->save_session_info = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_RESTORE_SESSION:
|
|
gui_config->restore_session = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_RESTORE_MONITOR:
|
|
gui_config->restore_monitor = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_SAVE_TOOL_OPTIONS:
|
|
gui_config->save_tool_options = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_CAN_CHANGE_ACCELS:
|
|
gui_config->can_change_accels = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_SAVE_ACCELS:
|
|
gui_config->save_accels = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_RESTORE_ACCELS:
|
|
gui_config->restore_accels = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_LAST_OPENED_SIZE:
|
|
gui_config->last_opened_size = g_value_get_int (value);
|
|
break;
|
|
case PROP_MAX_NEW_IMAGE_SIZE:
|
|
gui_config->max_new_image_size = g_value_get_uint64 (value);
|
|
break;
|
|
case PROP_TOOLBOX_COLOR_AREA:
|
|
gui_config->toolbox_color_area = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_TOOLBOX_FOO_AREA:
|
|
gui_config->toolbox_foo_area = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_TOOLBOX_IMAGE_AREA:
|
|
gui_config->toolbox_image_area = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_TOOLBOX_MASCOT:
|
|
gui_config->toolbox_mascot = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_TOOLBOX_GROUPS:
|
|
gui_config->toolbox_groups = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_THEME_PATH:
|
|
g_free (gui_config->theme_path);
|
|
gui_config->theme_path = g_value_dup_string (value);
|
|
break;
|
|
case PROP_THEME:
|
|
g_free (gui_config->theme);
|
|
gui_config->theme = g_value_dup_string (value);
|
|
break;
|
|
case PROP_PREFER_DARK_THEME:
|
|
gui_config->prefer_dark_theme = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_OVERRIDE_THEME_ICON_SIZE:
|
|
gui_config->override_icon_size = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_CUSTOM_ICON_SIZE:
|
|
gui_config->custom_icon_size = g_value_get_enum (value);
|
|
break;
|
|
case PROP_ICON_THEME_PATH:
|
|
g_free (gui_config->icon_theme_path);
|
|
gui_config->icon_theme_path = g_value_dup_string (value);
|
|
break;
|
|
case PROP_ICON_THEME:
|
|
g_free (gui_config->icon_theme);
|
|
gui_config->icon_theme = g_value_dup_string (value);
|
|
break;
|
|
case PROP_PREFER_SYMBOLIC_ICONS:
|
|
gui_config->prefer_symbolic_icons = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_FONT_RELATIVE_SIZE:
|
|
gui_config->font_relative_size = g_value_get_double (value);
|
|
break;
|
|
case PROP_USE_HELP:
|
|
gui_config->use_help = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_SHOW_HELP_BUTTON:
|
|
gui_config->show_help_button = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_HELP_LOCALES:
|
|
g_free (gui_config->help_locales);
|
|
gui_config->help_locales = g_value_dup_string (value);
|
|
break;
|
|
case PROP_HELP_BROWSER:
|
|
gui_config->help_browser = g_value_get_enum (value);
|
|
break;
|
|
case PROP_USER_MANUAL_ONLINE:
|
|
gui_config->user_manual_online = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_USER_MANUAL_ONLINE_URI:
|
|
g_free (gui_config->user_manual_online_uri);
|
|
gui_config->user_manual_online_uri = g_value_dup_string (value);
|
|
break;
|
|
case PROP_ACTION_HISTORY_SIZE:
|
|
gui_config->action_history_size = g_value_get_int (value);
|
|
break;
|
|
case PROP_DOCK_WINDOW_HINT:
|
|
gui_config->dock_window_hint = g_value_get_enum (value);
|
|
break;
|
|
case PROP_CURSOR_HANDEDNESS:
|
|
gui_config->cursor_handedness = g_value_get_enum (value);
|
|
break;
|
|
case PROP_CUSTOM_TITLE_BAR:
|
|
gui_config->custom_title_bar = g_value_get_boolean (value);
|
|
break;
|
|
|
|
case PROP_PLAYGROUND_NPD_TOOL:
|
|
gui_config->playground_npd_tool = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_PLAYGROUND_SEAMLESS_CLONE_TOOL:
|
|
gui_config->playground_seamless_clone_tool = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_PLAYGROUND_PAINT_SELECT_TOOL:
|
|
gui_config->playground_paint_select_tool = g_value_get_boolean (value);
|
|
break;
|
|
|
|
case PROP_HIDE_DOCKS:
|
|
gui_config->hide_docks = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_SINGLE_WINDOW_MODE:
|
|
gui_config->single_window_mode = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_SHOW_TABS:
|
|
gui_config->show_tabs = g_value_get_boolean (value);
|
|
break;
|
|
case PROP_TABS_POSITION:
|
|
gui_config->tabs_position = g_value_get_enum (value);
|
|
break;
|
|
case PROP_LAST_TIP_SHOWN:
|
|
gui_config->last_tip_shown = g_value_get_int (value);
|
|
break;
|
|
|
|
case PROP_CURSOR_FORMAT:
|
|
case PROP_INFO_WINDOW_PER_DISPLAY:
|
|
case PROP_MENU_MNEMONICS:
|
|
case PROP_SHOW_TOOL_TIPS:
|
|
case PROP_SHOW_TIPS:
|
|
case PROP_TOOLBOX_WINDOW_HINT:
|
|
case PROP_TRANSIENT_DOCKS:
|
|
case PROP_WEB_BROWSER:
|
|
/* ignored */
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
pika_gui_config_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PikaGuiConfig *gui_config = PIKA_GUI_CONFIG (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_EDIT_NON_VISIBLE:
|
|
g_value_set_boolean (value, gui_config->edit_non_visible);
|
|
break;
|
|
case PROP_MOVE_TOOL_CHANGES_ACTIVE:
|
|
g_value_set_boolean (value, gui_config->move_tool_changes_active);
|
|
break;
|
|
case PROP_FILTER_TOOL_MAX_RECENT:
|
|
case PROP_IMAGE_MAP_TOOL_MAX_RECENT:
|
|
g_value_set_int (value, gui_config->filter_tool_max_recent);
|
|
break;
|
|
case PROP_FILTER_TOOL_USE_LAST_SETTINGS:
|
|
g_value_set_boolean (value, gui_config->filter_tool_use_last_settings);
|
|
break;
|
|
case PROP_FILTER_TOOL_SHOW_COLOR_OPTIONS:
|
|
g_value_set_boolean (value, gui_config->filter_tool_show_color_options);
|
|
break;
|
|
case PROP_TRUST_DIRTY_FLAG:
|
|
g_value_set_boolean (value, gui_config->trust_dirty_flag);
|
|
break;
|
|
case PROP_SAVE_DEVICE_STATUS:
|
|
g_value_set_boolean (value, gui_config->save_device_status);
|
|
break;
|
|
case PROP_DEVICES_SHARE_TOOL:
|
|
g_value_set_boolean (value, gui_config->devices_share_tool);
|
|
break;
|
|
case PROP_SAVE_SESSION_INFO:
|
|
g_value_set_boolean (value, gui_config->save_session_info);
|
|
break;
|
|
case PROP_RESTORE_SESSION:
|
|
g_value_set_boolean (value, gui_config->restore_session);
|
|
break;
|
|
case PROP_RESTORE_MONITOR:
|
|
g_value_set_boolean (value, gui_config->restore_monitor);
|
|
break;
|
|
case PROP_SAVE_TOOL_OPTIONS:
|
|
g_value_set_boolean (value, gui_config->save_tool_options);
|
|
break;
|
|
case PROP_CAN_CHANGE_ACCELS:
|
|
g_value_set_boolean (value, gui_config->can_change_accels);
|
|
break;
|
|
case PROP_SAVE_ACCELS:
|
|
g_value_set_boolean (value, gui_config->save_accels);
|
|
break;
|
|
case PROP_RESTORE_ACCELS:
|
|
g_value_set_boolean (value, gui_config->restore_accels);
|
|
break;
|
|
case PROP_LAST_OPENED_SIZE:
|
|
g_value_set_int (value, gui_config->last_opened_size);
|
|
break;
|
|
case PROP_MAX_NEW_IMAGE_SIZE:
|
|
g_value_set_uint64 (value, gui_config->max_new_image_size);
|
|
break;
|
|
case PROP_TOOLBOX_COLOR_AREA:
|
|
g_value_set_boolean (value, gui_config->toolbox_color_area);
|
|
break;
|
|
case PROP_TOOLBOX_FOO_AREA:
|
|
g_value_set_boolean (value, gui_config->toolbox_foo_area);
|
|
break;
|
|
case PROP_TOOLBOX_IMAGE_AREA:
|
|
g_value_set_boolean (value, gui_config->toolbox_image_area);
|
|
break;
|
|
case PROP_TOOLBOX_MASCOT:
|
|
g_value_set_boolean (value, gui_config->toolbox_mascot);
|
|
break;
|
|
case PROP_TOOLBOX_GROUPS:
|
|
g_value_set_boolean (value, gui_config->toolbox_groups);
|
|
break;
|
|
case PROP_THEME_PATH:
|
|
g_value_set_string (value, gui_config->theme_path);
|
|
break;
|
|
case PROP_THEME:
|
|
g_value_set_string (value, gui_config->theme);
|
|
break;
|
|
case PROP_PREFER_DARK_THEME:
|
|
g_value_set_boolean (value, gui_config->prefer_dark_theme);
|
|
break;
|
|
case PROP_OVERRIDE_THEME_ICON_SIZE:
|
|
g_value_set_boolean (value, gui_config->override_icon_size);
|
|
break;
|
|
case PROP_CUSTOM_ICON_SIZE:
|
|
g_value_set_enum (value, gui_config->custom_icon_size);
|
|
break;
|
|
case PROP_ICON_THEME_PATH:
|
|
g_value_set_string (value, gui_config->icon_theme_path);
|
|
break;
|
|
case PROP_ICON_THEME:
|
|
g_value_set_string (value, gui_config->icon_theme);
|
|
break;
|
|
case PROP_PREFER_SYMBOLIC_ICONS:
|
|
g_value_set_boolean (value, gui_config->prefer_symbolic_icons);
|
|
break;
|
|
case PROP_FONT_RELATIVE_SIZE:
|
|
g_value_set_double (value, gui_config->font_relative_size);
|
|
break;
|
|
case PROP_USE_HELP:
|
|
g_value_set_boolean (value, gui_config->use_help);
|
|
break;
|
|
case PROP_SHOW_HELP_BUTTON:
|
|
g_value_set_boolean (value, gui_config->show_help_button);
|
|
break;
|
|
case PROP_HELP_LOCALES:
|
|
g_value_set_string (value, gui_config->help_locales);
|
|
break;
|
|
case PROP_HELP_BROWSER:
|
|
g_value_set_enum (value, gui_config->help_browser);
|
|
break;
|
|
case PROP_USER_MANUAL_ONLINE:
|
|
g_value_set_boolean (value, gui_config->user_manual_online);
|
|
break;
|
|
case PROP_USER_MANUAL_ONLINE_URI:
|
|
g_value_set_string (value, gui_config->user_manual_online_uri);
|
|
break;
|
|
case PROP_ACTION_HISTORY_SIZE:
|
|
g_value_set_int (value, gui_config->action_history_size);
|
|
break;
|
|
case PROP_DOCK_WINDOW_HINT:
|
|
g_value_set_enum (value, gui_config->dock_window_hint);
|
|
break;
|
|
case PROP_CURSOR_HANDEDNESS:
|
|
g_value_set_enum (value, gui_config->cursor_handedness);
|
|
break;
|
|
case PROP_CUSTOM_TITLE_BAR:
|
|
g_value_set_boolean (value, gui_config->custom_title_bar);
|
|
break;
|
|
|
|
case PROP_PLAYGROUND_NPD_TOOL:
|
|
g_value_set_boolean (value, gui_config->playground_npd_tool);
|
|
break;
|
|
case PROP_PLAYGROUND_SEAMLESS_CLONE_TOOL:
|
|
g_value_set_boolean (value, gui_config->playground_seamless_clone_tool);
|
|
break;
|
|
case PROP_PLAYGROUND_PAINT_SELECT_TOOL:
|
|
g_value_set_boolean (value, gui_config->playground_paint_select_tool);
|
|
break;
|
|
|
|
case PROP_HIDE_DOCKS:
|
|
g_value_set_boolean (value, gui_config->hide_docks);
|
|
break;
|
|
case PROP_SINGLE_WINDOW_MODE:
|
|
g_value_set_boolean (value, gui_config->single_window_mode);
|
|
break;
|
|
case PROP_SHOW_TABS:
|
|
g_value_set_boolean (value, gui_config->show_tabs);
|
|
break;
|
|
case PROP_TABS_POSITION:
|
|
g_value_set_enum (value, gui_config->tabs_position);
|
|
break;
|
|
case PROP_LAST_TIP_SHOWN:
|
|
g_value_set_int (value, gui_config->last_tip_shown);
|
|
break;
|
|
|
|
case PROP_CURSOR_FORMAT:
|
|
case PROP_INFO_WINDOW_PER_DISPLAY:
|
|
case PROP_MENU_MNEMONICS:
|
|
case PROP_SHOW_TOOL_TIPS:
|
|
case PROP_SHOW_TIPS:
|
|
case PROP_TOOLBOX_WINDOW_HINT:
|
|
case PROP_TRANSIENT_DOCKS:
|
|
case PROP_WEB_BROWSER:
|
|
/* ignored */
|
|
break;
|
|
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|