1 #ifndef __EXAMPLEAPPWIN_H 2 #define __EXAMPLEAPPWIN_H 3 4 #include <gtk/gtk.h> 5 #include "exampleapp.h" 6 7 8 #define EXAMPLE_APP_WINDOW_TYPE (example_app_window_get_type ()) 9 G_DECLARE_FINAL_TYPE (ExampleAppWindow, example_app_window, EXAMPLE, APP_WINDOW, GtkApplicationWindow) 10 11 12 ExampleAppWindow *example_app_window_new (ExampleApp *app); 13 void example_app_window_open (ExampleAppWindow *win, 14 GFile *file); 15 16 17 #endif /* __EXAMPLEAPPWIN_H */ 18