aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2003-09-30 19:12:09 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2003-09-30 19:12:09 +0800
commit170a7f06a20348a51c8b4d9a44128a1ac2681dbe (patch)
tree0dc0ac93376d271d471ce657312148ca2ca003fc
parentdecd3ad66ac173f46db66bdc046041fbe2085bcf (diff)
downloadgsoc2013-epiphany-170a7f06a20348a51c8b4d9a44128a1ac2681dbe.tar
gsoc2013-epiphany-170a7f06a20348a51c8b4d9a44128a1ac2681dbe.tar.gz
gsoc2013-epiphany-170a7f06a20348a51c8b4d9a44128a1ac2681dbe.tar.bz2
gsoc2013-epiphany-170a7f06a20348a51c8b4d9a44128a1ac2681dbe.tar.lz
gsoc2013-epiphany-170a7f06a20348a51c8b4d9a44128a1ac2681dbe.tar.xz
gsoc2013-epiphany-170a7f06a20348a51c8b4d9a44128a1ac2681dbe.tar.zst
gsoc2013-epiphany-170a7f06a20348a51c8b4d9a44128a1ac2681dbe.zip
Implement view menu.
2003-09-30 Marco Pesenti Gritti <marco@gnome.org> * data/epiphany.schemas.in: * data/ui/epiphany-history-window-ui.xml: * src/ephy-history-window.c: (set_columns_visibility), (cmd_view_columns), (get_details_value), (ephy_history_window_construct): Implement view menu.
-rw-r--r--ChangeLog10
-rw-r--r--data/epiphany.schemas.in15
-rw-r--r--data/ui/epiphany-history-window-ui.xml6
-rw-r--r--src/ephy-history-window.c118
4 files changed, 148 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 11e10ef2d..5205ba9cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2003-09-30 Marco Pesenti Gritti <marco@gnome.org>
+
+ * data/epiphany.schemas.in:
+ * data/ui/epiphany-history-window-ui.xml:
+ * src/ephy-history-window.c: (set_columns_visibility),
+ (cmd_view_columns), (get_details_value),
+ (ephy_history_window_construct):
+
+ Implement view menu.
+
2003-09-30 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-history-window.c: (build_search_box):
diff --git a/data/epiphany.schemas.in b/data/epiphany.schemas.in
index 17d08bdeb..84a74de28 100644
--- a/data/epiphany.schemas.in
+++ b/data/epiphany.schemas.in
@@ -62,6 +62,21 @@
</long>
</locale>
</schema>
+ <schema>
+ <key>/schemas/apps/epiphany/dialogs/history_view_details</key>
+ <applyto>/apps/epiphany/dialogs/history_view_details</applyto>
+ <owner>epiphany</owner>
+ <type>list</type>
+ <list_type>string</list_type>
+ <default>[title,address]</default>
+ <locale name="C">
+ <short>The page informations shown in the history view</short>
+ <long>
+ The page informations shown in the history view. Valid values
+ in the list are "address", "title".
+ </long>
+ </locale>
+ </schema>
<schema>
<key>/schemas/apps/epiphany/dialogs/preferences_font_language</key>
<applyto>/apps/epiphany/dialogs/preferences_font_language</applyto>
diff --git a/data/ui/epiphany-history-window-ui.xml b/data/ui/epiphany-history-window-ui.xml
index 1d977b092..2fb22e835 100644
--- a/data/ui/epiphany-history-window-ui.xml
+++ b/data/ui/epiphany-history-window-ui.xml
@@ -20,6 +20,12 @@
<menuitem name="EditClear" action="Clear"/>
</menu>
+<menu name="ViewMenu" action="View">
+ <menuitem name="ViewTitleMenu" action="ViewTitle"/>
+ <menuitem name="ViewAddressMenu" action="ViewAddress"/>
+ <menuitem name="ViewTitleAddressMenu" action="ViewTitleAddress"/>
+</menu>
+
<menu name="HelpMenu" action="Help">
<menuitem name="HelpContents" action="HelpContents"/>
<menuitem name="HelpAbout" action="HelpAbout"/>
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index 1758948d1..72de063d9 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -100,7 +100,9 @@ static void cmd_help_contents (GtkAction *action,
EphyHistoryWindow *editor);
#define EPHY_HISTORY_WINDOW_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), EPHY_TYPE_HISTORY_WINDOW, EphyHistoryWindowPrivate))
+
#define CONF_HISTORY_DATE_FILTER "/apps/epiphany/dialogs/history_date_filter"
+#define CONF_HISTORY_VIEW_DETAILS "/apps/epiphany/dialogs/history_view_details"
struct EphyHistoryWindowPrivate
{
@@ -117,6 +119,8 @@ struct EphyHistoryWindowPrivate
GtkActionGroup *action_group;
GtkWidget *confirmation_dialog;
EphyNode *selected_site;
+ GtkTreeViewColumn *title_col;
+ GtkTreeViewColumn *address_col;
};
enum
@@ -192,6 +196,27 @@ static GtkActionEntry ephy_history_ui_entries [] = {
};
static guint ephy_history_ui_n_entries = G_N_ELEMENTS (ephy_history_ui_entries);
+enum
+{
+ VIEW_TITLE,
+ VIEW_ADDRESS,
+ VIEW_TITLE_AND_ADDRESS
+};
+
+static GtkRadioActionEntry ephy_history_radio_entries [] =
+{
+ /* View Menu */
+ { "ViewTitle", NULL, N_("_Title"), NULL,
+ N_("Show only the title column"), VIEW_TITLE },
+ { "ViewAddress", NULL, N_("_Address"), NULL,
+ N_("Show only the address column"), VIEW_ADDRESS },
+ { "ViewTitleAddress", NULL, N_("T_itle and Address"), NULL,
+ N_("Show both the title and address columns"),
+ VIEW_TITLE_AND_ADDRESS }
+};
+static guint ephy_history_n_radio_entries = G_N_ELEMENTS (ephy_history_radio_entries);
+
+
static void
confirmation_dialog_response_cb (GtkDialog *dialog, gint response,
EphyHistoryWindow *editor)
@@ -525,6 +550,52 @@ cmd_help_contents (GtkAction *action,
"ephy-managing-history");
}
+static void
+set_columns_visibility (EphyHistoryWindow *view, int value)
+{
+ switch (value)
+ {
+ case VIEW_TITLE:
+ gtk_tree_view_column_set_visible (view->priv->title_col, TRUE);
+ gtk_tree_view_column_set_visible (view->priv->address_col, FALSE);
+ break;
+ case VIEW_ADDRESS:
+ gtk_tree_view_column_set_visible (view->priv->title_col, FALSE);
+ gtk_tree_view_column_set_visible (view->priv->address_col, TRUE);
+ break;
+ case VIEW_TITLE_AND_ADDRESS:
+ gtk_tree_view_column_set_visible (view->priv->title_col, TRUE);
+ gtk_tree_view_column_set_visible (view->priv->address_col, TRUE);
+ break;
+ }
+}
+
+static void
+cmd_view_columns (GtkAction *action,
+ GtkRadioAction *current,
+ EphyHistoryWindow *view)
+{
+ int value;
+ GSList *svalues = NULL;
+
+ value = gtk_radio_action_get_current_value (current);
+ set_columns_visibility (view, value);
+
+ switch (value)
+ {
+ case VIEW_TITLE:
+ svalues = g_slist_append (svalues, (gpointer)"title");
+ break;
+ case VIEW_TITLE_AND_ADDRESS:
+ svalues = g_slist_append (svalues, (gpointer)"title");
+ svalues = g_slist_append (svalues, (gpointer)"address");
+ break;
+ }
+
+ eel_gconf_set_string_list (CONF_HISTORY_VIEW_DETAILS, svalues);
+ g_slist_free (svalues);
+}
+
GType
ephy_history_window_get_type (void)
{
@@ -1074,6 +1145,38 @@ view_selection_changed_cb (GtkWidget *view, EphyHistoryWindow *editor)
ephy_history_window_update_menu (editor);
}
+static int
+get_details_value (void)
+{
+ int value;
+ GSList *svalues;
+
+ svalues = eel_gconf_get_string_list (CONF_HISTORY_VIEW_DETAILS);
+ if (svalues == NULL) return VIEW_TITLE_AND_ADDRESS;
+
+ if (g_slist_find_custom (svalues, "title", (GCompareFunc)strcmp) &&
+ g_slist_find_custom (svalues, "address", (GCompareFunc)strcmp))
+ {
+ value = VIEW_TITLE_AND_ADDRESS;
+ }
+ else if (g_slist_find_custom (svalues, "title", (GCompareFunc)strcmp))
+ {
+ value = VIEW_TITLE;
+ }
+ else if (g_slist_find_custom (svalues, "address", (GCompareFunc)strcmp))
+ {
+ value = VIEW_ADDRESS;
+ }
+ else
+ {
+ value = VIEW_TITLE_AND_ADDRESS;
+ }
+
+ g_slist_free (svalues);
+
+ return value;
+}
+
static void
ephy_history_window_construct (EphyHistoryWindow *editor)
{
@@ -1086,7 +1189,7 @@ ephy_history_window_construct (EphyHistoryWindow *editor)
GtkUIManager *ui_merge;
GtkActionGroup *action_group;
GdkPixbuf *icon;
- int col_id;
+ int col_id, details_value;
gtk_window_set_title (GTK_WINDOW (editor), _("History"));
@@ -1111,6 +1214,15 @@ ephy_history_window_construct (EphyHistoryWindow *editor)
gtk_action_group_set_translation_domain (action_group, NULL);
gtk_action_group_add_actions (action_group, ephy_history_ui_entries,
ephy_history_ui_n_entries, editor);
+
+ details_value = get_details_value ();
+ gtk_action_group_add_radio_actions (action_group,
+ ephy_history_radio_entries,
+ ephy_history_n_radio_entries,
+ details_value,
+ G_CALLBACK (cmd_view_columns),
+ editor);
+
gtk_ui_manager_insert_action_group (ui_merge,
action_group, 0);
gtk_ui_manager_add_ui_from_file (ui_merge,
@@ -1207,10 +1319,12 @@ ephy_history_window_construct (EphyHistoryWindow *editor)
-1, EPHY_NODE_VIEW_USER_SORT |
EPHY_NODE_VIEW_SEARCHABLE, NULL);
gtk_tree_view_column_set_max_width (col, 250);
+ editor->priv->title_col = col;
col = ephy_node_view_add_column (EPHY_NODE_VIEW (pages_view), _("Address"),
G_TYPE_STRING, EPHY_NODE_PAGE_PROP_LOCATION,
-1, EPHY_NODE_VIEW_USER_SORT, NULL);
gtk_tree_view_column_set_max_width (col, 200);
+ editor->priv->address_col = col;
gtk_container_add (GTK_CONTAINER (scrolled_window), pages_view);
gtk_widget_show (pages_view);
editor->priv->pages_view = pages_view;
@@ -1240,6 +1354,8 @@ ephy_history_window_construct (EphyHistoryWindow *editor)
"history_paned",
130);
+ set_columns_visibility (editor, details_value);
+
ephy_node_view_select_node (EPHY_NODE_VIEW (sites_view),
ephy_history_get_pages (editor->priv->history));
}