-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGUI.h
More file actions
49 lines (35 loc) · 746 Bytes
/
Copy pathGUI.h
File metadata and controls
49 lines (35 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef GUI_H_
#define GUI_H_
#include <gtk/gtk.h>
#include <gdk/gdk.h>
#if defined (GDK_WINDOWING_X11)
#include <gdk/gdkx.h>
#elif defined (GDK_WINDOWING_WIN32)
#include <gdk/gdkwin32.h>
#elif defined (GDK_WINDOWING_QUARTZ)
#include <gdk/gdkquartz.h>
#endif
#include "vr.h"
#include "ar.h"
#include "vp.h"
#include "ap.h"
typedef struct _Components {
GtkWidget *window;
GtkWidget *actionsBox;
GtkWidget *vrButton;
GtkWidget *vrOptions;
GtkWidget *recorder;
GtkWidget *vrWindow;
GtkWidget *vpButton;
GtkWidget *player;
GtkWidget *vpWindow;
GtkWidget *arButton;
GtkWidget *arOptions;
GtkWidget *apButton;
vrData vrD;
vpData vpD;
arData arD;
apData apD;
} Components;
void init_GUI(int argc, char *argv[]);
#endif