aboutsummaryrefslogtreecommitdiff
path: root/src/uplanfahrtripview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uplanfahrtripview.h')
-rw-r--r--src/uplanfahrtripview.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/uplanfahrtripview.h b/src/uplanfahrtripview.h
new file mode 100644
index 0000000..828d99c
--- /dev/null
+++ b/src/uplanfahrtripview.h
@@ -0,0 +1,17 @@
+#ifndef __UPLANFAHRTRIPVIEW_H
+#define __UPLANFAHRTRIPVIEW_H
+
+#include <gtk/gtk.h>
+#include "uplanfahrwin.h"
+
+#define U_PLAN_FAHR_TRIP_VIEW_TYPE (u_plan_fahr_trip_view_get_type ())
+#define U_PLAN_FAHR_TRIP_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), U_PLAN_FAHR_TRIP_VIEW_TYPE, UPlanFahrTripView))
+
+typedef struct _UPlanFahrTripView UPlanFahrTripView;
+typedef struct _UPlanFahrTripViewClass UPlanFahrTripViewClass;
+
+GType u_plan_fahr_trip_view_get_type (void);
+GtkWidget *u_plan_fahr_trip_view_new (void);
+void u_plan_fahr_trip_view_store_trips (UPlanFahrTripView *self, GSList *trips);
+
+#endif /* __UPLANFAHRTRIPVIEW_H */