aboutsummaryrefslogtreecommitdiff
path: root/window.h
blob: 8b8a7fec1864013a7b81112d6953602befbe3582 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __WINDOW_H
#define __WINDOW_H

#include <gtk-3.0/gtk/gtk.h>

void create_main_window(GApplication *app);
void get_curr_win_size(gint *width, gint *height);
void scroll_window(gdouble x, gdouble y);
void set_window_title(const char *title);
void quit();

#endif