]> spindle.queued.net Git - midori/commitdiff
Add Spell Checking preferences to the dialogue
authorChristian Dywan <christian@twotoasts.de>
Tue, 28 Apr 2009 22:42:47 +0000 (00:42 +0200)
committerChristian Dywan <christian@twotoasts.de>
Tue, 28 Apr 2009 22:42:47 +0000 (00:42 +0200)
We need to think of a better way to choose dictionaries than a
mere text entry.

midori/midori-preferences.c

index 530de62e602e5896b879065a6e392492335f8fdc..fcb0f43d8bef9bf8bb8d4eb5f1e24e94f942d341 100644 (file)
@@ -514,6 +514,17 @@ midori_preferences_set_settings (MidoriPreferences* preferences,
     SPANNED_ADD (button, 0, 1, 4, 5);
     button = katze_property_proxy (settings, "find-while-typing", NULL);
     SPANNED_ADD (button, 1, 2, 4, 5);
+    #if WEBKIT_CHECK_VERSION (1, 1, 6)
+    FRAME_NEW (_("Spell Checking"));
+    TABLE_NEW (1, 2);
+    button = katze_property_proxy (settings, "enable-spell-checking", NULL);
+    gtk_button_set_label (GTK_BUTTON (button), _("Enable Spell Checking"));
+    gtk_widget_set_tooltip_text (button, _("Enables spell checking while typing"));
+    INDENTED_ADD (button, 0, 1, 0, 1);
+    entry = katze_property_proxy (settings, "spell-checking-languages", NULL);
+    gtk_widget_set_tooltip_text (entry, _("A comma separated list of languages to be used for spell checking"));
+    FILLED_ADD (entry, 1, 2, 0, 1);
+    #endif
 
     /* Page "Interface" */
     PAGE_NEW (GTK_STOCK_CONVERT, _("Interface"));