diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
commit | 3ade071f273aaa973e44bf95d6b1d4913a18f03b (patch) | |
tree | e2f99d267ae18427645404f215b984afbe73098d /src/nautilus-global-preferences.c | |
parent | Initial commit. (diff) | |
download | nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.tar.xz nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.zip |
Adding upstream version 43.2.upstream/43.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/nautilus-global-preferences.c')
-rw-r--r-- | src/nautilus-global-preferences.c | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/nautilus-global-preferences.c b/src/nautilus-global-preferences.c new file mode 100644 index 0000000..6bc9919 --- /dev/null +++ b/src/nautilus-global-preferences.c @@ -0,0 +1,67 @@ +/* nautilus-global-preferences.c - Nautilus specific preference keys and + * functions. + * + * Copyright (C) 1999, 2000, 2001 Eazel, Inc. + * + * The Gnome 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. + * + * The Gnome 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 + * License along with the Gnome Library; see the file COPYING.LIB. If not, + * see <http://www.gnu.org/licenses/>. + * + * Authors: Ramiro Estrugo <ramiro@eazel.com> + */ + +#include <config.h> +#include "nautilus-global-preferences.h" + +#include "nautilus-file-utilities.h" +#include "nautilus-file.h" +#include "src/nautilus-files-view.h" +#include <eel/eel-glib-extensions.h> +#include <eel/eel-stock-dialogs.h> +#include <eel/eel-string.h> +#include <glib/gi18n.h> + +GSettings *nautilus_preferences; +GSettings *nautilus_compression_preferences; +GSettings *nautilus_icon_view_preferences; +GSettings *nautilus_list_view_preferences; +GSettings *nautilus_window_state; +GSettings *gtk_filechooser_preferences; +GSettings *gnome_lockdown_preferences; +GSettings *gnome_interface_preferences; +GSettings *gnome_privacy_preferences; + +void +nautilus_global_preferences_init (void) +{ + static gboolean initialized = FALSE; + + if (initialized) + { + return; + } + + initialized = TRUE; + + nautilus_preferences = g_settings_new ("org.gnome.nautilus.preferences"); + nautilus_compression_preferences = g_settings_new ("org.gnome.nautilus.compression"); + nautilus_window_state = g_settings_new ("org.gnome.nautilus.window-state"); + nautilus_icon_view_preferences = g_settings_new ("org.gnome.nautilus.icon-view"); + nautilus_list_view_preferences = g_settings_new ("org.gnome.nautilus.list-view"); + /* Some settings such as show hidden files are shared between Nautilus and GTK file chooser */ + gtk_filechooser_preferences = g_settings_new_with_path ("org.gtk.gtk4.Settings.FileChooser", + "/org/gtk/gtk4/settings/file-chooser/"); + gnome_lockdown_preferences = g_settings_new ("org.gnome.desktop.lockdown"); + gnome_interface_preferences = g_settings_new ("org.gnome.desktop.interface"); + gnome_privacy_preferences = g_settings_new ("org.gnome.desktop.privacy"); +} |