blob: c4a63397ccd220dba762dff10b183bd2edd5fc5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __WINDOW_H
#define __WINDOW_H
#include <gtk-3.0/gtk/gtk.h>
void create_main_window();
void get_curr_win_size(gint *width, gint *height);
void scroll_window(gdouble x, gdouble y);
void set_window_title(const char *title, int width, int height);
void quit();
void toggle_fullscreen();
void toggle_infopanel();
#endif
|