2013-07-24 05:13:06 +00:00
|
|
|
#ifndef __EXAMPLEAPPPREFS_H
|
|
|
|
#define __EXAMPLEAPPPREFS_H
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "exampleappwin.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define EXAMPLE_APP_PREFS_TYPE (example_app_prefs_get_type ())
|
2016-09-06 17:56:22 +00:00
|
|
|
G_DECLARE_FINAL_TYPE (ExampleAppPrefs, example_app_prefs, EXAMPLE, APP_PREFS, GtkDialog)
|
2013-07-24 05:13:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
ExampleAppPrefs *example_app_prefs_new (ExampleAppWindow *win);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __EXAMPLEAPPPREFS_H */
|