diff options
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(); |