From cbdd65ce75e49a8c0cc4055bf0c02dad66cab0cd Mon Sep 17 00:00:00 2001 From: Jasmine Hassan Date: Thu, 18 Oct 2012 16:43:59 +0200 Subject: [test] remove test-eel-image-scrolled http://git.gnome.org/browse/nautilus/commit/?id=931644a649175b1886dce5cc8e50c21380f8b8b0 --- test/test-eel-image-scrolled.c | 187 ----------------------------------------- 1 file changed, 187 deletions(-) delete mode 100644 test/test-eel-image-scrolled.c (limited to 'test/test-eel-image-scrolled.c') diff --git a/test/test-eel-image-scrolled.c b/test/test-eel-image-scrolled.c deleted file mode 100644 index c89cfe9f..00000000 --- a/test/test-eel-image-scrolled.c +++ /dev/null @@ -1,187 +0,0 @@ -#include "test.h" - -#if 0 -typedef struct -{ - GtkWidget *window; - GtkWidget *vbox; - GtkWidget *entry; - GtkWidget *hbox; - GtkWidget *smooth_toggle; - GtkWidget *frame; - GtkWidget *label; -} Window; - -#if 0 -static void -toggle_smooth_callback (GtkWidget *widget, gpointer callback_data) -{ - Window *window; - EelLabel *label; - - window = (Window *) callback_data; - - if (!EEL_IS_LABEL (window->label)) { - return; - } - - label = GTK_LABEL (window->label); - - gtk_label_set_is_smooth (label, !gtk_label_get_is_smooth (label)); -} -#endif - -static Window * -window_new (const char *title, guint border_width) -{ - Window *window; - GtkWidget *main_vbox; - - window = g_new0 (Window, 1); - - window->window = test_window_new (title, border_width); - - main_vbox = gtk_vbox_new (FALSE, 0); - gtk_container_add (GTK_CONTAINER (window->window), main_vbox); - - window->vbox = gtk_vbox_new (FALSE, 0); - window->entry = gtk_entry_new (); - window->hbox = gtk_hbox_new (FALSE, 0); -// window->smooth_toggle = gtk_check_button_new_with_label ("Smooth"); - - gtk_box_pack_start (GTK_BOX (main_vbox), window->vbox, TRUE, TRUE, 0); - gtk_box_pack_start (GTK_BOX (main_vbox), window->hbox, FALSE, FALSE, 0); - gtk_box_pack_end (GTK_BOX (main_vbox), window->entry, FALSE, FALSE, 0); - -// gtk_box_pack_start (GTK_BOX (window->hbox), window->smooth_toggle, FALSE, FALSE, 0); - - gtk_widget_show (main_vbox); - gtk_widget_show (window->vbox); - gtk_widget_show (window->hbox); - gtk_widget_show (window->entry); - - return window; -} - -static Window * -label_window_new (const char *title, - guint border_width, - const char *file_name, - const char *tile_file_name) -{ - Window *window; - - window = window_new (title, border_width); - - window->frame = gtk_frame_new ("Foo"); - window->label = gtk_label_new (file_name); - - if (tile_file_name != NULL) { - gtk_label_set_tile_pixbuf_from_file_name (GTK_LABEL (window->label), - tile_file_name); - } - - gtk_container_add (GTK_CONTAINER (window->frame), window->label); - - gtk_box_pack_start (GTK_BOX (window->vbox), window->frame, TRUE, TRUE, 0); - - gtk_widget_show (window->label); - gtk_widget_show (window->frame); - - return window; -} -#endif - -static const char text[] = -"The Eel shell is under development; it's not " -"ready for daily use. Some features are not yet done, " -"partly done, or unstable. The program doesn't look " -"or act exactly the way it will in version 1.0." -"\n\n" -"If you do decide to test this version of Eel, " -"beware. The program could do something " -"unpredictable and may even delete or overwrite " -"files on your computer." -"\n\n" -"For more information, visit http://eel.eazel.com."; - -static GtkWidget * -label_window_new (void) -{ - GtkWidget *window; - GtkWidget *label; - EelBackground *background; - - window = test_window_new ("Scrolled Label Test", 10); - - background = eel_get_widget_background (GTK_WIDGET (window)); - eel_background_set_color (background, "white"); - - /* Label */ - label = gtk_label_new (text); - gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); - - gtk_container_add (GTK_CONTAINER (window), label); - - gtk_widget_show (label); - - return window; -} - -static GtkWidget * -label_window_new_scrolled (void) -{ - GtkWidget *window; - GtkWidget *scrolled; - GtkWidget *viewport; - GtkWidget *label; - EelBackground *background; - - window = test_window_new ("Scrolled Label Test", 10); - - /* Scrolled window */ - scrolled = gtk_scrolled_window_new (NULL, NULL); - gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled), - GTK_POLICY_NEVER, - GTK_POLICY_AUTOMATIC); - gtk_container_add (GTK_CONTAINER (window), scrolled); - - /* Viewport */ - viewport = gtk_viewport_new (NULL, NULL); - gtk_viewport_set_shadow_type (GTK_VIEWPORT (viewport), GTK_SHADOW_OUT); - gtk_container_add (GTK_CONTAINER (scrolled), viewport); - - background = eel_get_widget_background (GTK_WIDGET (viewport)); - eel_background_set_color (background, "white"); - - /* Label */ - label = gtk_label_new (text); - gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); - - gtk_container_add (GTK_CONTAINER (viewport), label); - - gtk_widget_show (label); - gtk_widget_show (viewport); - gtk_widget_show (scrolled); - - return window; -} - -int -main (int argc, char* argv[]) -{ - GtkWidget *label_window; - GtkWidget *scrolled_label_window; - - test_init (&argc, &argv); - - label_window = label_window_new (); - scrolled_label_window = label_window_new_scrolled (); - - gtk_widget_show (scrolled_label_window); - gtk_widget_show (label_window); - - gtk_main (); - - return 0; -} -- cgit v1.2.1