blob: 9f1b4547189d4862f0474313f186858718563d03 (
plain)
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
50
51
52
53
54
55
56
|
/*
* mandelbrot-zoom.h
*
* Created on: 13.01.2018
* Author: Superleo1810
*/
#ifndef MANDELBROT_ZOOM_H_
#define MANDELBROT_ZOOM_H_
#include <gtk/gtk.h>
#include "defs.h"
#include "settings.h"
#include "conversion.h"
typedef struct config {
bool video;
u8 filetype;
u16 width;
u16 height;
u8 renderFPS;
u8 videoFPS;
u32 bitrate;
const char *path;
// TODO: key mapping als option in die struct
} Config;
typedef struct ui_settings {
GtkWidget *settings;
GtkWidget *exportCb;
GtkWidget *gifRd;
GtkWidget *widthSp;
GtkWidget *heightSp;
GtkWidget *fpsRenderSp;
GtkWidget *fpsVideoSp;
GtkWidget *bitrateSp;
GtkWidget *exportTf;
GtkWidget *startBtn;
GtkWidget *exitBtn;
} ui_settings;
ui_settings ui;
Config config;
int main(int argc, char **argv);
void on_exportCb_toggled();
void on_exportTf_changed();
void on_widthSp_valueChanged();
void on_heightSp_valueChanged();
void on_fpsRenderSp_valueChanged();
void on_fpsVideoSp_valueChanged();
void on_bitrateSp_valueChanged();
void on_startBtn_clicked();
void on_exitBtn_clicked();
#endif /* MANDELBROT_ZOOM_H_ */
|