Lines Matching refs:GtkWidget
47 GtkWidget *newSample(const gchar *fileName);
48 void closeSample(GtkWidget *sample);
50 void showabout(GtkWidget */*widget*/, gpointer /*data*/) in showabout() argument
52 GtkWidget *aboutBox; in showabout()
87 GtkWidget *app = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(fileselection), "app")); in openOK()
98 GtkWidget *area = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(app), "area")); in openOK()
119 GtkWidget *app = GTK_WIDGET(data); in openfile()
120 GtkWidget *fileselection; in openfile()
121 GtkWidget *okButton; in openfile()
122 GtkWidget *cancelButton; in openfile()
151 GtkWidget *app = newSample("Sample.txt"); in newapp()
156 void closeapp(GtkWidget */*widget*/, gpointer data) in closeapp() argument
158 GtkWidget *app = GTK_WIDGET(data); in closeapp()
195 gint eventDelete(GtkWidget *widget, GdkEvent */*event*/, gpointer /*data*/) in eventDelete()
203 gint eventConfigure(GtkWidget */*widget*/, GdkEventConfigure *event, Context *context) in eventConfigure() argument
217 gint eventExpose(GtkWidget *widget, GdkEvent */*event*/, Context *context) in eventExpose()
230 GtkWidget *newSample(const gchar *fileName) in newSample()
239 GtkWidget *app = gnome_app_new("gnomeLayout", title); in newSample()
250 GtkWidget *area = gtk_drawing_area_new(); in newSample()
280 void closeSample(GtkWidget *app) in closeSample()
303 GtkWidget *app; in main()