summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authormbkma <[email protected]>2020-07-07 15:57:46 +0200
committerraveit65 <[email protected]>2020-07-29 16:47:54 +0200
commit2edb465b646f671f3372c70f020bd3d3076e86ad (patch)
tree0203909db2933fef2bff19084b67ae8f4ccfef19 /plugins
parent8f02e21f3703c9549fb357986f77c9534186f2ab (diff)
downloadpluma-2edb465b646f671f3372c70f020bd3d3076e86ad.tar.bz2
pluma-2edb465b646f671f3372c70f020bd3d3076e86ad.tar.xz
Port main program to GSettings
Remove pluma_prefs_manager. Plugins were already ported to GSettings. Based on: https://gitlab.gnome.org/GNOME/gedit/-/commit/4215be0e8924f45170683493beaa2695e8e2e483
Diffstat (limited to 'plugins')
-rw-r--r--plugins/modelines/modeline-parser.c22
-rw-r--r--plugins/spell/pluma-spell-plugin.c1
2 files changed, 13 insertions, 10 deletions
diff --git a/plugins/modelines/modeline-parser.c b/plugins/modelines/modeline-parser.c
index 3f347a7b..c5ec0fe8 100644
--- a/plugins/modelines/modeline-parser.c
+++ b/plugins/modelines/modeline-parser.c
@@ -19,14 +19,15 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
+#include "modeline-parser.h"
+
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <gtk/gtk.h>
#include <pluma/pluma-language-manager.h>
-#include <pluma/pluma-prefs-manager.h>
#include <pluma/pluma-debug.h>
-#include "modeline-parser.h"
+#include <pluma/pluma-settings.h>
#define MODELINES_LANGUAGE_MAPPINGS_FILE "language-mappings"
@@ -675,6 +676,8 @@ modeline_parser_apply_modeline (GtkSourceView *view)
GtkTextBuffer *buffer;
GtkTextIter iter, liter;
gint line_count;
+ /* FIXME: avoid making a new gsettings variable */
+ GSettings *settings = g_settings_new (PLUMA_SCHEMA_ID);
options.language_id = NULL;
options.set = MODELINE_SET_NONE;
@@ -766,13 +769,13 @@ modeline_parser_apply_modeline (GtkSourceView *view)
if (has_option (&options, MODELINE_SET_INSERT_SPACES))
{
gtk_source_view_set_insert_spaces_instead_of_tabs
- (view, options.insert_spaces);
+ (view, options.insert_spaces);
}
else if (check_previous (view, previous, MODELINE_SET_INSERT_SPACES))
{
gtk_source_view_set_insert_spaces_instead_of_tabs
- (view,
- pluma_prefs_manager_get_insert_spaces ());
+ (view,
+ g_settings_get_boolean (settings, PLUMA_SETTINGS_INSERT_SPACES));
}
if (has_option (&options, MODELINE_SET_TAB_WIDTH))
@@ -782,7 +785,7 @@ modeline_parser_apply_modeline (GtkSourceView *view)
else if (check_previous (view, previous, MODELINE_SET_TAB_WIDTH))
{
gtk_source_view_set_tab_width (view,
- pluma_prefs_manager_get_tabs_size ());
+ g_settings_get_uint (settings, PLUMA_SETTINGS_TABS_SIZE));
}
if (has_option (&options, MODELINE_SET_INDENT_WIDTH))
@@ -801,7 +804,7 @@ modeline_parser_apply_modeline (GtkSourceView *view)
else if (check_previous (view, previous, MODELINE_SET_WRAP_MODE))
{
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view),
- pluma_prefs_manager_get_wrap_mode ());
+ g_settings_get_enum (settings, PLUMA_SETTINGS_WRAP_MODE));
}
if (has_option (&options, MODELINE_SET_RIGHT_MARGIN_POSITION))
@@ -811,7 +814,7 @@ modeline_parser_apply_modeline (GtkSourceView *view)
else if (check_previous (view, previous, MODELINE_SET_RIGHT_MARGIN_POSITION))
{
gtk_source_view_set_right_margin_position (view,
- pluma_prefs_manager_get_right_margin_position ());
+ g_settings_get_uint (settings, PLUMA_SETTINGS_RIGHT_MARGIN_POSITION));
}
if (has_option (&options, MODELINE_SET_SHOW_RIGHT_MARGIN))
@@ -821,7 +824,7 @@ modeline_parser_apply_modeline (GtkSourceView *view)
else if (check_previous (view, previous, MODELINE_SET_SHOW_RIGHT_MARGIN))
{
gtk_source_view_set_show_right_margin (view,
- pluma_prefs_manager_get_display_right_margin ());
+ g_settings_get_boolean (settings, PLUMA_SETTINGS_DISPLAY_RIGHT_MARGIN));
}
if (previous)
@@ -842,6 +845,7 @@ modeline_parser_apply_modeline (GtkSourceView *view)
}
g_free (options.language_id);
+ g_object_unref (settings);
}
void
diff --git a/plugins/spell/pluma-spell-plugin.c b/plugins/spell/pluma-spell-plugin.c
index fdc2588f..c09c4cd0 100644
--- a/plugins/spell/pluma-spell-plugin.c
+++ b/plugins/spell/pluma-spell-plugin.c
@@ -36,7 +36,6 @@
#include <pluma/pluma-window.h>
#include <pluma/pluma-debug.h>
-#include <pluma/pluma-prefs-manager.h>
#include <pluma/pluma-statusbar.h>
#include <pluma/pluma-utils.h>