]> Pileus Git - ~andy/gtk/blobdiff - tests/testentryicons.c
reftests: Add a reftest for width-chars not shrinking the allocation
[~andy/gtk] / tests / testentryicons.c
index 540f04a364b20c67539beeb9034f336a7cc4851b..4c7f4bb9527b6a09ee1e3163e8edd8f33d808ac0 100644 (file)
@@ -40,6 +40,20 @@ clear_pressed (GtkEntry *entry, gint icon, GdkEvent *event, gpointer data)
      gtk_entry_set_text (entry, "");
 }
 
+static void
+drag_begin_cb (GtkWidget      *widget,
+               GdkDragContext *context,
+               gpointer        user_data)
+{
+  gint pos;
+
+  pos = gtk_entry_get_current_icon_drag_source (GTK_ENTRY (widget));
+  if (pos != -1)
+    gtk_drag_set_icon_stock (context, GTK_STOCK_INFO, 2, 2);
+
+  g_print ("drag begin %d\n", pos);
+}
+
 static void
 drag_data_get_cb (GtkWidget        *widget,
                   GdkDragContext   *context,
@@ -75,7 +89,7 @@ int
 main (int argc, char **argv)
 {
   GtkWidget *window;
-  GtkWidget *table;
+  GtkWidget *grid;
   GtkWidget *label;
   GtkWidget *entry;
   GtkWidget *button;
@@ -91,25 +105,24 @@ main (int argc, char **argv)
   g_signal_connect (G_OBJECT (window), "destroy",
                    G_CALLBACK (gtk_main_quit), NULL);
 
-  table = gtk_table_new (2, 4, FALSE);
-  gtk_container_add (GTK_CONTAINER (window), table);
-  gtk_table_set_row_spacings (GTK_TABLE (table), 6);
-  gtk_table_set_col_spacings (GTK_TABLE (table), 6);
+  grid = gtk_grid_new ();
+  gtk_container_add (GTK_CONTAINER (window), grid);
+  gtk_grid_set_row_spacing (GTK_GRID (grid), 6);
+  gtk_grid_set_column_spacing (GTK_GRID (grid), 6);
 
   /*
    * Open File - Sets the icon using a GIcon
    */
   label = gtk_label_new ("Open File:");
-  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), label, 0, 0, 1, 1);
   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
 
   entry = gtk_entry_new ();
-  gtk_table_attach (GTK_TABLE (table), entry, 1, 2, 0, 1,
-                   GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
+  gtk_widget_set_hexpand (entry, TRUE);
+  gtk_grid_attach (GTK_GRID (grid), entry, 1, 0, 1, 1);
 
   icon = g_themed_icon_new ("folder");
-  g_themed_icon_append_name (G_THEMED_ICON (icon), "gtk-directory");
+  g_themed_icon_append_name (G_THEMED_ICON (icon), "folder");
 
   gtk_entry_set_icon_from_gicon (GTK_ENTRY (entry),
                                 GTK_ENTRY_ICON_PRIMARY,
@@ -123,8 +136,7 @@ main (int argc, char **argv)
                                   "Open a file");
 
   button = gtk_button_new_with_label ("Properties");
-  gtk_table_attach (GTK_TABLE (table), button, 2, 3, 0, 1,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), button, 2, 0, 1, 1);
   g_signal_connect (button, "clicked", 
                     G_CALLBACK (properties_cb), entry);                    
 
@@ -133,13 +145,12 @@ main (int argc, char **argv)
    * Save File - sets the icon using a stock id.
    */
   label = gtk_label_new ("Save File:");
-  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), label, 0, 1, 1, 1);
   gtk_misc_set_alignment (GTK_MISC(label), 0.0, 0.5);
 
   entry = gtk_entry_new ();
-  gtk_table_attach (GTK_TABLE (table), entry, 1, 2, 1, 2,
-                   GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
+  gtk_widget_set_hexpand (entry, TRUE);
+  gtk_grid_attach (GTK_GRID (grid), entry, 1, 1, 1, 1);
   gtk_entry_set_text (GTK_ENTRY (entry), "ā€¸Right-to-left");
   gtk_widget_set_direction (entry, GTK_TEXT_DIR_RTL);
   
@@ -154,13 +165,14 @@ main (int argc, char **argv)
   gtk_entry_set_icon_drag_source (GTK_ENTRY (entry),
                                   GTK_ENTRY_ICON_PRIMARY,
                                   tlist, GDK_ACTION_COPY); 
+  g_signal_connect_after (entry, "drag-begin", 
+                          G_CALLBACK (drag_begin_cb), NULL);
   g_signal_connect (entry, "drag-data-get", 
                     G_CALLBACK (drag_data_get_cb), NULL);
   gtk_target_list_unref (tlist);
 
   button = gtk_button_new_with_label ("Properties");
-  gtk_table_attach (GTK_TABLE (table), button, 2, 3, 1, 2,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), button, 2, 1, 1, 1);
   g_signal_connect (button, "clicked", 
                     G_CALLBACK (properties_cb), entry);                    
 
@@ -168,13 +180,12 @@ main (int argc, char **argv)
    * Search - Uses a helper function
    */
   label = gtk_label_new ("Search:");
-  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), label, 0, 2, 1, 1);
   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
 
   entry = gtk_entry_new ();
-  gtk_table_attach (GTK_TABLE (table), entry, 1, 2, 2, 3,
-                   GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
+  gtk_widget_set_hexpand (entry, TRUE);
+  gtk_grid_attach (GTK_GRID (grid), entry, 1, 2, 1, 1);
 
   gtk_entry_set_icon_from_stock (GTK_ENTRY (entry),
                                 GTK_ENTRY_ICON_PRIMARY,
@@ -184,11 +195,10 @@ main (int argc, char **argv)
                                 GTK_ENTRY_ICON_SECONDARY,
                                 GTK_STOCK_CLEAR);
 
-  g_signal_connect (entry, "icon-pressed", G_CALLBACK (clear_pressed), NULL);
+  g_signal_connect (entry, "icon-press", G_CALLBACK (clear_pressed), NULL);
 
   button = gtk_button_new_with_label ("Properties");
-  gtk_table_attach (GTK_TABLE (table), button, 2, 3, 2, 3,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), button, 2, 2, 1, 1);
   g_signal_connect (button, "clicked", 
                     G_CALLBACK (properties_cb), entry);                    
 
@@ -196,13 +206,12 @@ main (int argc, char **argv)
    * Password - Sets the icon using a stock id
    */
   label = gtk_label_new ("Password:");
-  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), label, 0, 3, 1, 1);
   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
 
   entry = gtk_entry_new ();
-  gtk_table_attach (GTK_TABLE (table), entry, 1, 2, 3, 4,
-                   GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
+  gtk_widget_set_hexpand (entry, TRUE);
+  gtk_grid_attach (GTK_GRID (grid), entry, 1, 3, 1, 1);
   gtk_entry_set_visibility (GTK_ENTRY (entry), FALSE);
 
   gtk_entry_set_icon_from_stock (GTK_ENTRY (entry),
@@ -214,24 +223,21 @@ main (int argc, char **argv)
                                  FALSE);
 
   button = gtk_button_new_with_label ("Properties");
-  gtk_table_attach (GTK_TABLE (table), button, 2, 3, 3, 4,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), button, 2, 3, 1, 1);
   g_signal_connect (button, "clicked", 
                     G_CALLBACK (properties_cb), entry);                    
 
   /* Name - Does not set any icons. */
   label = gtk_label_new ("Name:");
-  gtk_table_attach (GTK_TABLE (table), label, 0, 1, 4, 5,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), label, 0, 4, 1, 1);
   gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
 
   entry = gtk_entry_new ();
-  gtk_table_attach (GTK_TABLE (table), entry, 1, 2, 4, 5,
-                   GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
+  gtk_widget_set_hexpand (entry, TRUE);
+  gtk_grid_attach (GTK_GRID (grid), entry, 1, 4, 1, 1);
 
   button = gtk_button_new_with_label ("Properties");
-  gtk_table_attach (GTK_TABLE (table), button, 2, 3, 4, 5,
-                   GTK_FILL, GTK_FILL, 0, 0);
+  gtk_grid_attach (GTK_GRID (grid), button, 2, 4, 1, 1);
   g_signal_connect (button, "clicked", 
                     G_CALLBACK (properties_cb), entry);