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 ())
9G_DECLARE_FINAL_TYPE (ExampleAppWindow, example_app_window, EXAMPLE, APP_WINDOW, GtkApplicationWindow)
10
11
12ExampleAppWindow *example_app_window_new (ExampleApp *app);
13void example_app_window_open (ExampleAppWindow *win,
14 GFile *file);
15
16
17#endif /* __EXAMPLEAPPWIN_H */
18

source code of gtk/examples/application1/exampleappwin.h