diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-28 22:26:04 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-28 22:26:04 +0100 |
commit | cc884ee71f017d9493da22565fc33e6828da123d (patch) | |
tree | 33f97802d7f1461155d34fed0da2cfe1fe657945 /src/mandelbrot-zoom.h | |
parent | da4b72ea58e97d14306cfd322a8ef7a40337645d (diff) |
Added point and click functionality
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 8309885..5aa4dc4 100644 --- a/src/mandelbrot-zoom.h +++ b/src/mandelbrot-zoom.h @@ -21,6 +21,7 @@ typedef struct Ui_settings { GtkSpinButton *threadsSp; GtkButton *colorFromBtn; GtkButton *colorToBtn; + GtkCheckButton *zoomSpecificCb; GtkEntry *zoomToXEntry; GtkEntry *zoomToYEntry; GtkEntry *speedEntry; @@ -39,6 +40,9 @@ typedef struct Ui_settings { GtkButton *startBtn; GtkButton *exitBtn; GtkColorSelectionDialog *colorDialog; + GtkComboBoxText *inCombo; + GtkComboBoxText *incIterCombo; + GtkComboBoxText *decIterCombo; } Ui_settings; Ui_settings ui_settings; |