diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-23 01:08:38 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-23 01:08:38 +0100 |
commit | 8e5bc917659288a257d5de9827458039f5498ef5 (patch) | |
tree | 23adb70c5e1e8b7aa53f9a604f21987ba89d15a4 /src/mandelbrot-zoom.h | |
parent | fe610572ba73898ce159fb70b9fa9a4cccffd331 (diff) |
OpenGL rendering added, cleaned up paths
Diffstat (limited to 'src/mandelbrot-zoom.h')
-rw-r--r-- | src/mandelbrot-zoom.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mandelbrot-zoom.h b/src/mandelbrot-zoom.h index 80d3259..3953b2d 100644 --- a/src/mandelbrot-zoom.h +++ b/src/mandelbrot-zoom.h @@ -17,8 +17,11 @@ typedef struct Ui_settings { GtkWindow *settings; GtkSpinButton *iterationsSp; + GtkSpinButton *threadsSp; GtkButton *colorFromBtn; GtkButton *colorToBtn; + GtkEntry *zoomToXEntry; + GtkEntry *zoomToYEntry; GtkCheckButton *exportCb; GtkRadioButton *gifRd; GtkSpinButton *widthSp; @@ -38,6 +41,7 @@ u8 currentColor; int main(int argc, char **argv); void on_iterationsSp_valueChanged(); +void on_threadsSp_valueChanged(); void on_colorFromBtn_clicked(); void on_colorToBtn_clicked(); void on_exportCb_toggled(); |