diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-08-03 21:33:01 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-08-03 21:33:01 +0800 |
commit | 6d802e0857acd15eeee35680d780957623375882 (patch) | |
tree | 585bcbe663e47727bf9006eef2584678e68ca0cb /lib/widgets/testiconentry.c | |
parent | fc20059deaca0d195c33fa58245602dbbae0c006 (diff) | |
download | gsoc2013-epiphany-6d802e0857acd15eeee35680d780957623375882.tar gsoc2013-epiphany-6d802e0857acd15eeee35680d780957623375882.tar.gz gsoc2013-epiphany-6d802e0857acd15eeee35680d780957623375882.tar.bz2 gsoc2013-epiphany-6d802e0857acd15eeee35680d780957623375882.tar.lz gsoc2013-epiphany-6d802e0857acd15eeee35680d780957623375882.tar.xz gsoc2013-epiphany-6d802e0857acd15eeee35680d780957623375882.tar.zst gsoc2013-epiphany-6d802e0857acd15eeee35680d780957623375882.zip |
A lib/widgets/testiconentry.c: A lib/widgets/ephy-icon-entry.c: A
2005-08-03 Christian Persch <chpe@cvs.gnome.org>
* lib/widgets/Makefile.am:
A lib/widgets/testiconentry.c:
A lib/widgets/ephy-icon-entry.c:
A lib/widgets/ephy-icon-entry.h:
New widget, looks like a GtkEntry with icons inside.
* lib/widgets/ephy-location-entry.c:
(ephy_location_entry_set_tooltip), (update_address_state),
(match_selected_cb), (entry_clear_activate_cb),
(entry_populate_popup_cb),
(ephy_location_entry_construct_contents),
(ephy_location_entry_set_completion),
(ephy_location_entry_set_location),
(ephy_location_entry_get_location), (ephy_location_entry_reset),
(ephy_location_entry_activate), (ephy_location_entry_get_entry),
(ephy_location_entry_set_show_lock):
Use EphyIconEntry. Fixes location entry drawing with new GNOME default
theme (Clearlooks), and should also fix drawing with all themes,
except those which draw inside-focus on entries even when the entry
has no frame.
Diffstat (limited to 'lib/widgets/testiconentry.c')
-rw-r--r-- | lib/widgets/testiconentry.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/widgets/testiconentry.c b/lib/widgets/testiconentry.c new file mode 100644 index 000000000..622f3ef07 --- /dev/null +++ b/lib/widgets/testiconentry.c @@ -0,0 +1,47 @@ +#include <glib.h> +#include <gtk/gtk.h> +#include <gtk/gtkstock.h> + +#include "ephy-icon-entry.h" +#include "ephy-icon-entry.c" + +int main(int argc, char **argv) +{ + GtkWidget *window, *vbox, *entry, *image; + GtkTooltips *tips; + + gtk_init (&argc, &argv); + + window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + + vbox = gtk_vbox_new (0, FALSE); + gtk_container_add (GTK_CONTAINER (window), vbox); + gtk_container_set_border_width (GTK_CONTAINER (window), 12); + + entry = ephy_icon_entry_new (); + gtk_box_pack_start (GTK_BOX (vbox), entry, TRUE, TRUE, 10); + gtk_entry_set_text (GTK_ENTRY (EPHY_ICON_ENTRY (entry)->entry), "Icon Entry"); + + image = gtk_image_new_from_stock (GTK_STOCK_NEW, GTK_ICON_SIZE_MENU); + ephy_icon_entry_pack_widget (EPHY_ICON_ENTRY (entry), image, TRUE); + image = gtk_image_new_from_stock (GTK_STOCK_CLEAR, GTK_ICON_SIZE_MENU); + ephy_icon_entry_pack_widget (EPHY_ICON_ENTRY (entry), image, TRUE); + image = gtk_image_new_from_stock (GTK_STOCK_QUIT, GTK_ICON_SIZE_MENU); + ephy_icon_entry_pack_widget (EPHY_ICON_ENTRY (entry), image, TRUE); + image = gtk_image_new_from_stock (GTK_STOCK_ADD, GTK_ICON_SIZE_MENU); + ephy_icon_entry_pack_widget (EPHY_ICON_ENTRY (entry), image, FALSE); + image = gtk_image_new_from_stock (GTK_STOCK_CDROM, GTK_ICON_SIZE_MENU); + ephy_icon_entry_pack_widget (EPHY_ICON_ENTRY (entry), image, FALSE); + + entry = gtk_entry_new (); + gtk_box_pack_start (GTK_BOX (vbox), entry, TRUE, TRUE, 10); + gtk_entry_set_text (GTK_ENTRY (entry), "Normal entry"); + + gtk_widget_show_all (window); + + g_signal_connect (window, "delete-event", G_CALLBACK (gtk_main_quit), NULL); + + gtk_main (); + + return 0; +} |