Lines Matching refs:GtkWidget
53 GtkWidget *newSample(const gchar *fileName);
54 void closeSample(GtkWidget *sample);
56 void showabout(GtkWidget */*widget*/, gpointer /*data*/) in showabout() argument
58 GtkWidget *aboutBox; in showabout()
93 GtkWidget *app = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(fileselection), "app")); in openOK()
104 GtkWidget *area = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(app), "area")); in openOK()
125 GtkWidget *app = GTK_WIDGET(data); in openfile()
126 GtkWidget *fileselection; in openfile()
127 GtkWidget *okButton; in openfile()
128 GtkWidget *cancelButton; in openfile()
157 GtkWidget *app = newSample("Sample.txt"); in newapp()
162 void closeapp(GtkWidget */*widget*/, gpointer data) in closeapp() argument
164 GtkWidget *app = GTK_WIDGET(data); in closeapp()
201 gint eventDelete(GtkWidget *widget, GdkEvent */*event*/, gpointer /*data*/) in eventDelete()
209 gint eventConfigure(GtkWidget */*widget*/, GdkEventConfigure *event, Context *context) in eventConfigure() argument
223 gint eventExpose(GtkWidget *widget, GdkEvent */*event*/, Context *context) in eventExpose()
236 GtkWidget *newSample(const gchar *fileName) in newSample()
245 GtkWidget *app = gnome_app_new("gnomeLayout", title); in newSample()
256 GtkWidget *area = gtk_drawing_area_new(); in newSample()
286 void closeSample(GtkWidget *app) in closeSample()
309 GtkWidget *app; in main()