]> Pileus Git - ~andy/gtk/blobdiff - tests/testthreads.c
stylecontext: Do invalidation on first resize container
[~andy/gtk] / tests / testthreads.c
index 2d1e62f1d2c656e6ca39f1ea8069f3674640dc0f..867e44b6143983fda4e2bfecba6ad134baa5e89e 100644 (file)
@@ -12,9 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
@@ -65,12 +63,12 @@ counter (void *data)
 
   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
   gtk_window_set_title (GTK_WINDOW (window), name);
-  gtk_widget_set_usize (window, 100, 50);
+  gtk_widget_set_size_request (window, 100, 50);
 
-  vbox = gtk_vbox_new (FALSE, 0);
+  vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 0);
 
-  gtk_signal_connect (GTK_OBJECT (window), "delete_event",
-                     GTK_SIGNAL_FUNC (delete_cb), &flag);
+  g_signal_connect (window, "delete-event",
+                    G_CALLBACK (delete_cb), &flag);
 
   gtk_container_add (GTK_CONTAINER (window), vbox);
 
@@ -78,8 +76,8 @@ counter (void *data)
   gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, FALSE, 0);
 
   button = gtk_button_new_with_label ("Close");
-  gtk_signal_connect (GTK_OBJECT (button), "clicked",
-                     GTK_SIGNAL_FUNC (close_cb), &flag);
+  g_signal_connect (button, "clicked",
+                    G_CALLBACK (close_cb), &flag);
   gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
 
   gtk_widget_show_all (window);