summaryrefslogtreecommitdiff
path: root/examples/selection/gettargets.c
diff options
context:
space:
mode:
authorSven Neumann <sven@gimp.org>2008-08-11 18:36:07 +0000
committerSven Neumann <neo@src.gnome.org>2008-08-11 18:36:07 +0000
commit82f6ccd79cc9c6c1d032a620649c1a0b500943eb (patch)
treea7fe470d84196b53139ee2d9d8f4bef6c352edcc /examples/selection/gettargets.c
parente3e126ae9eb9f860f2b99157d18cb3d6428add78 (diff)
downloadgtk+-82f6ccd79cc9c6c1d032a620649c1a0b500943eb.tar.gz
updated the (quite outdated) examples to use canonical signal names as
2008-08-11 Sven Neumann <sven@gimp.org> * examples/*: updated the (quite outdated) examples to use canonical signal names as well. Removed some unneeded casts and trailing whitespace while I was on it... svn path=/trunk/; revision=21071
Diffstat (limited to 'examples/selection/gettargets.c')
-rw-r--r--examples/selection/gettargets.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/examples/selection/gettargets.c b/examples/selection/gettargets.c
index 388664553b..9b4aca4d7f 100644
--- a/examples/selection/gettargets.c
+++ b/examples/selection/gettargets.c
@@ -2,8 +2,8 @@
#include <stdlib.h>
#include <gtk/gtk.h>
-static void selection_received( GtkWidget *widget,
- GtkSelectionData *selection_data,
+static void selection_received( GtkWidget *widget,
+ GtkSelectionData *selection_data,
gpointer data );
/* Signal handler invoked when user clicks on the "Get Targets" button */
@@ -11,7 +11,7 @@ static void get_targets( GtkWidget *widget,
gpointer data )
{
static GdkAtom targets_atom = GDK_NONE;
- GtkWidget *window = (GtkWidget *)data;
+ GtkWidget *window = (GtkWidget *)data;
/* Get the atom corresponding to the string "TARGETS" */
if (targets_atom == GDK_NONE)
@@ -24,7 +24,7 @@ static void get_targets( GtkWidget *widget,
/* Signal handler called when the selections owner returns the data */
static void selection_received( GtkWidget *widget,
- GtkSelectionData *selection_data,
+ GtkSelectionData *selection_data,
gpointer data )
{
GdkAtom *atoms;
@@ -43,7 +43,7 @@ static void selection_received( GtkWidget *widget,
g_print ("Selection \"TARGETS\" was not returned as atoms!\n");
return;
}
-
+
/* Print out the atoms we received */
atoms = (GdkAtom *)selection_data->data;
@@ -66,7 +66,7 @@ int main( int argc,
{
GtkWidget *window;
GtkWidget *button;
-
+
gtk_init (&argc, &argv);
/* Create the toplevel window */
@@ -75,7 +75,7 @@ int main( int argc,
gtk_window_set_title (GTK_WINDOW (window), "Event Box");
gtk_container_set_border_width (GTK_CONTAINER (window), 10);
- g_signal_connect (G_OBJECT (window), "destroy",
+ g_signal_connect (window, "destroy",
G_CALLBACK (exit), NULL);
/* Create a button the user can click to get targets */
@@ -83,15 +83,15 @@ int main( int argc,
button = gtk_button_new_with_label ("Get Targets");
gtk_container_add (GTK_CONTAINER (window), button);
- g_signal_connect (G_OBJECT (button), "clicked",
+ g_signal_connect (button, "clicked",
G_CALLBACK (get_targets), (gpointer) window);
- g_signal_connect (G_OBJECT (window), "selection_received",
+ g_signal_connect (window, "selection-received",
G_CALLBACK (selection_received), NULL);
gtk_widget_show (button);
gtk_widget_show (window);
-
+
gtk_main ();
-
+
return 0;
}