aboutsummaryrefslogtreecommitdiff
path: root/src/uplanfahrwin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uplanfahrwin.h')
-rw-r--r--src/uplanfahrwin.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/uplanfahrwin.h b/src/uplanfahrwin.h
new file mode 100644
index 0000000..9decaf7
--- /dev/null
+++ b/src/uplanfahrwin.h
@@ -0,0 +1,23 @@
+#ifndef __UPLANFAHRWIN_H
+#define __UPLANFAHRWIN_H
+
+#include <gtk/gtk.h>
+#include "uplanfahr.h"
+
+
+#define U_PLAN_FAHR_WINDOW_TYPE (u_plan_fahr_window_get_type ())
+#define U_PLAN_FAHR_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), U_PLAN_FAHR_WINDOW_TYPE, UPlanFahrWindow))
+
+
+typedef struct _UPlanFahrWindow UPlanFahrWindow;
+typedef struct _UPlanFahrWindowClass UPlanFahrWindowClass;
+
+
+GType u_plan_fahr_window_get_type (void);
+UPlanFahrWindow *u_plan_fahr_window_new (UPlanFahr *app);
+void u_plan_fahr_window_open (UPlanFahrWindow *win,
+ GFile *from,
+ GFile *to);
+
+
+#endif /* __UPLANFAHRWIN_H */