26 lines
463 B
C
26 lines
463 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#include <QString>
|
|
|
|
#define SAVE_VERSION "180722"
|
|
|
|
struct Config {
|
|
Config();
|
|
bool saved_layout;
|
|
bool show_track_lines;
|
|
bool scroll_zooms;
|
|
bool edit_tool_selects_links;
|
|
bool edit_tool_also_seeks;
|
|
bool select_also_seeks;
|
|
bool paste_seeks;
|
|
QString img_seq_formats;
|
|
|
|
void load(QString path);
|
|
void save(QString path);
|
|
};
|
|
|
|
extern Config config;
|
|
|
|
#endif // CONFIG_H
|