/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* caja-global-preferences.c - Caja specific preference keys and functions. Copyright (C) 1999, 2000, 2001 Eazel, Inc. The Mate 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 Mate 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 Mate Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. Authors: Ramiro Estrugo */ #include #include "caja-global-preferences.h" #include "caja-file-utilities.h" #include "caja-file.h" #include #include #include #include #include /* * Public functions */ char * caja_global_preferences_get_default_folder_viewer_preference_as_iid (void) { int preference_value; const char *viewer_iid; preference_value = g_settings_get_enum (caja_preferences, CAJA_PREFERENCES_DEFAULT_FOLDER_VIEWER); if (preference_value == CAJA_DEFAULT_FOLDER_VIEWER_LIST_VIEW) { viewer_iid = CAJA_LIST_VIEW_IID; } else if (preference_value == CAJA_DEFAULT_FOLDER_VIEWER_COMPACT_VIEW) { viewer_iid = CAJA_COMPACT_VIEW_IID; } else { viewer_iid = CAJA_ICON_VIEW_IID; } return g_strdup (viewer_iid); } void caja_global_preferences_init (void) { static gboolean initialized = FALSE; int i; if (initialized) { return; } initialized = TRUE; caja_preferences = g_settings_new("org.mate.caja.preferences"); caja_media_preferences = g_settings_new("org.mate.media-handling"); caja_window_state = g_settings_new("org.mate.caja.window-state"); caja_icon_view_preferences = g_settings_new("org.mate.caja.icon-view"); caja_compact_view_preferences = g_settings_new("org.mate.caja.compact-view"); caja_desktop_preferences = g_settings_new("org.mate.caja.desktop"); caja_tree_sidebar_preferences = g_settings_new("org.mate.caja.sidebar-panels.tree"); caja_list_view_preferences = g_settings_new("org.mate.caja.list-view"); caja_extension_preferences = g_settings_new("org.mate.caja.extensions"); mate_background_preferences = g_settings_new("org.mate.background"); mate_lockdown_preferences = g_settings_new("org.mate.lockdown"); }