aboutsummaryrefslogtreecommitdiffstats
path: root/src/prefs-dialog.c
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2011-12-03 23:55:49 +0800
committerXan Lopez <xan@igalia.com>2011-12-04 00:11:34 +0800
commit0caf7b0f44349cbfd072cb49dbdc609de317a971 (patch)
treeb41043deacba5ae8f1e6d3299651d4e58faa7220 /src/prefs-dialog.c
parent6efd39db328bd1f7e568db119a6ff12844a51160 (diff)
downloadgsoc2013-epiphany-0caf7b0f44349cbfd072cb49dbdc609de317a971.tar
gsoc2013-epiphany-0caf7b0f44349cbfd072cb49dbdc609de317a971.tar.gz
gsoc2013-epiphany-0caf7b0f44349cbfd072cb49dbdc609de317a971.tar.bz2
gsoc2013-epiphany-0caf7b0f44349cbfd072cb49dbdc609de317a971.tar.lz
gsoc2013-epiphany-0caf7b0f44349cbfd072cb49dbdc609de317a971.tar.xz
gsoc2013-epiphany-0caf7b0f44349cbfd072cb49dbdc609de317a971.tar.zst
gsoc2013-epiphany-0caf7b0f44349cbfd072cb49dbdc609de317a971.zip
Remove UI to define a homepage
Later we can remove all the internals to implement the feature. https://bugzilla.gnome.org/show_bug.cgi?id=665469
Diffstat (limited to 'src/prefs-dialog.c')
-rw-r--r--src/prefs-dialog.c75
1 files changed, 11 insertions, 64 deletions
diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c
index d7c80ecf3..a49e2d552 100644
--- a/src/prefs-dialog.c
+++ b/src/prefs-dialog.c
@@ -21,25 +21,25 @@
*/
#include "config.h"
-
#include "prefs-dialog.h"
+
+#include "ephy-debug.h"
#include "ephy-dialog.h"
-#include "ephy-prefs.h"
-#include "ephy-settings.h"
#include "ephy-embed-container.h"
-#include "ephy-embed-shell.h"
-#include "ephy-embed-utils.h"
-#include "ephy-favicon-cache.h"
-#include "ephy-session.h"
#include "ephy-embed-prefs.h"
+#include "ephy-embed-shell.h"
#include "ephy-embed-single.h"
-#include "ephy-shell.h"
-#include "ephy-gui.h"
-#include "ephy-langs.h"
+#include "ephy-embed-utils.h"
#include "ephy-encodings.h"
-#include "ephy-debug.h"
+#include "ephy-favicon-cache.h"
#include "ephy-file-chooser.h"
#include "ephy-file-helpers.h"
+#include "ephy-gui.h"
+#include "ephy-langs.h"
+#include "ephy-prefs.h"
+#include "ephy-session.h"
+#include "ephy-settings.h"
+#include "ephy-shell.h"
#include "ephy-tree-model-node.h"
#include "ephy-tree-model-sort.h"
#include "pdm-dialog.h"
@@ -911,39 +911,6 @@ clear_cache_button_clicked_cb (GtkWidget *button,
CLEAR_ALL_CACHE);
}
-static void
-homepage_current_button_clicked_cb (GtkWidget *button,
- EphyDialog *dialog)
-{
- EphySession *session;
- EphyWindow *window;
- EphyEmbed *embed;
- EphyWebView *view;
-
- session = EPHY_SESSION (ephy_shell_get_session (ephy_shell_get_default ()));
- window = ephy_session_get_active_window (session);
-
- /* can't do anything in this case */
- if (window == NULL) return;
-
- embed = ephy_embed_container_get_active_child
- (EPHY_EMBED_CONTAINER (window));
- g_return_if_fail (embed != NULL);
-
- view = ephy_embed_get_web_view (embed);
-
- g_settings_set_string (EPHY_SETTINGS_MAIN, EPHY_PREFS_HOMEPAGE_URL,
- ephy_web_view_get_address (view));
-}
-
-static void
-homepage_blank_button_clicked_cb (GtkWidget *button,
- EphyDialog *dialog)
-{
- g_settings_set_string (EPHY_SETTINGS_MAIN,
- EPHY_PREFS_HOMEPAGE_URL, "");
-}
-
static gboolean
cookies_get_mapping (GValue *value,
GVariant *variant,
@@ -993,9 +960,6 @@ typedef struct
static const PrefsDialogPreference preferences[] =
{
- { "homepage_entry", "text",
- EPHY_PREFS_SCHEMA, EPHY_PREFS_HOMEPAGE_URL,
- G_SETTINGS_BIND_DEFAULT, NULL, NULL },
{ "automatic_downloads_checkbutton", "active",
EPHY_PREFS_SCHEMA, EPHY_PREFS_AUTO_DOWNLOADS,
G_SETTINGS_BIND_DEFAULT, NULL, NULL },
@@ -1097,8 +1061,6 @@ prefs_dialog_init (PrefsDialog *pd)
ephy_dialog_get_controls (dialog,
"prefs_dialog", &window,
- "homepage_current_button", &curr_button,
- "homepage_blank_button", &blank_button,
"css_checkbox", &css_checkbox,
"css_edit_button", &css_edit_button,
"clear_cache_button", &clear_cache_button,
@@ -1109,21 +1071,6 @@ prefs_dialog_init (PrefsDialog *pd)
g_signal_connect (window, "response",
G_CALLBACK (prefs_dialog_response_cb), dialog);
- g_signal_connect (curr_button, "clicked",
- G_CALLBACK (homepage_current_button_clicked_cb),
- dialog);
- g_signal_connect (blank_button, "clicked",
- G_CALLBACK (homepage_blank_button_clicked_cb),
- dialog);
-
- /* set homepage button sensitivity */
- g_settings_bind_writable (EPHY_SETTINGS_MAIN,
- EPHY_PREFS_HOMEPAGE_URL,
- curr_button, "sensitive", FALSE);
- g_settings_bind_writable (EPHY_SETTINGS_MAIN,
- EPHY_PREFS_HOMEPAGE_URL,
- blank_button, "sensitive", FALSE);
-
g_signal_connect (css_edit_button, "clicked",
G_CALLBACK (css_edit_button_clicked_cb), dialog);