summaryrefslogtreecommitdiff
path: root/window_config.h
blob: 639a74692478c6c954948b95e02647559930309e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _WINDOW_CONFIG_H_
#define _WINDOW_CONFIG_H_

#include <gtk/gtk.h>

struct window_config_t {
	GtkDialog *dialog;
	GtkComboBox *interp_combo;
	GtkRange *preload_scale;
};

struct window_config_t *window_config_new();
void window_config_save(struct window_config_t *wct);

#endif