diff options
author | David Bordoley <bordoley@msu.edu> | 2003-03-30 23:57:07 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-03-30 23:57:07 +0800 |
commit | a3638b15667bac68d1afe793ff6416c263d55328 (patch) | |
tree | 2492552f19c78f9da9d61431c41ba05c1cf2cd99 /src/bookmarks/ephy-new-bookmark.c | |
parent | 33700d8d076cee88d0da1e12b4c27dfc0283139b (diff) | |
download | gsoc2013-epiphany-a3638b15667bac68d1afe793ff6416c263d55328.tar gsoc2013-epiphany-a3638b15667bac68d1afe793ff6416c263d55328.tar.gz gsoc2013-epiphany-a3638b15667bac68d1afe793ff6416c263d55328.tar.bz2 gsoc2013-epiphany-a3638b15667bac68d1afe793ff6416c263d55328.tar.lz gsoc2013-epiphany-a3638b15667bac68d1afe793ff6416c263d55328.tar.xz gsoc2013-epiphany-a3638b15667bac68d1afe793ff6416c263d55328.tar.zst gsoc2013-epiphany-a3638b15667bac68d1afe793ff6416c263d55328.zip |
Use hotkeys to navigate around the dialog.
2003-03-30 David Bordoley <bordoley@msu.edu>
* src/bookmarks/ephy-bookmark-properties.c: (build_ui):
* src/bookmarks/ephy-new-bookmark.c: (build_editing_table):
Use hotkeys to navigate around the dialog.
* src/bookmarks/ephy-topics-selector.c: (mneumonic_activated),
(ephy_topics_build_ui), (ephy_topics_selector_new):
Catch the mneumonic-activated signal and focus the currently
selected item in the list. If no items are selected, select the
first item.
* src/bookmarks/ephy-bookmarks-editor.c: (key_pressed_cb):
Change function to return a gboolean and return false
if we don't handle the key event (fixes keynav in the bme).
Diffstat (limited to 'src/bookmarks/ephy-new-bookmark.c')
-rw-r--r-- | src/bookmarks/ephy-new-bookmark.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/bookmarks/ephy-new-bookmark.c b/src/bookmarks/ephy-new-bookmark.c index 116870c55..4217debc4 100644 --- a/src/bookmarks/ephy-new-bookmark.c +++ b/src/bookmarks/ephy-new-bookmark.c @@ -195,31 +195,33 @@ build_editing_table (EphyNewBookmark *editor) gtk_table_set_col_spacings (GTK_TABLE (table), 6); gtk_widget_show (table); - label = gtk_label_new (NULL); - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - str = g_strconcat ("<b>", _("Title:"), "</b>", NULL); - gtk_label_set_markup (GTK_LABEL (label), str); - g_free (str); - gtk_widget_show (label); + entry = gtk_entry_new (); gtk_entry_set_activates_default (GTK_ENTRY (entry), TRUE); editor->priv->title_entry = entry; gtk_widget_set_size_request (entry, 200, -1); gtk_widget_show (entry); + label = gtk_label_new (NULL); + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + str = g_strconcat ("<b>", _("_Title:"), "</b>", NULL); + gtk_label_set_markup_with_mnemonic (GTK_LABEL (label), str); + g_free (str); + gtk_label_set_mnemonic_widget (GTK_LABEL (label), entry); + gtk_widget_show (label); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_FILL, 0, 0, 0); gtk_table_attach (GTK_TABLE (table), entry, 1, 2, 0, 1, GTK_FILL, 0, 0, 0); + + topics_selector = ephy_topics_selector_new (editor->priv->bookmarks, NULL); + gtk_widget_show (topics_selector); + editor->priv->topics_selector = topics_selector; label = gtk_label_new (NULL); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.0); - str = g_strconcat ("<b>", _("Topics:"), "</b>", NULL); - gtk_label_set_markup (GTK_LABEL (label), str); + str = g_strconcat ("<b>", _("To_pics:"), "</b>", NULL); + gtk_label_set_markup_with_mnemonic (GTK_LABEL (label), str); g_free (str); + gtk_label_set_mnemonic_widget (GTK_LABEL (label), topics_selector); gtk_widget_show (label); - topics_selector = ephy_topics_selector_new (editor->priv->bookmarks, NULL); - gtk_widget_show (topics_selector); - editor->priv->topics_selector = topics_selector; - - gtk_widget_show (entry); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_FILL, GTK_FILL, 0, 0); gtk_table_attach (GTK_TABLE (table), topics_selector, 1, 2, 1, 2, GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); |