aboutsummaryrefslogtreecommitdiff
path: root/src/uplanfahrwin.h
blob: 9decaf7ef7e008efd9277fa38ba6395a658b4f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 */