-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathmandelbrotmainwindow.h
41 lines (36 loc) · 1.34 KB
/
mandelbrotmainwindow.h
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
#ifndef MANDELBROTMAINWINDOW_H
#define MANDELBROTMAINWINDOW_H
#include <QMainWindow>
#include "jkqtplotter/graphs/jkqtpimage.h"
QT_BEGIN_NAMESPACE
namespace Ui {
class MandelbrotMainWindow;
}
QT_END_NAMESPACE
class MandelbrotMainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MandelbrotMainWindow(QWidget *parent = nullptr);
~MandelbrotMainWindow();
Q_SIGNALS:
void readyForScreenshot();
protected Q_SLOTS:
void paletteChanged(JKQTPMathImageColorPalette pal);
void plotZoomChangedLocally(double newxmin, double newxmax, double newymin, double newymax, JKQTPlotter* sender);
void maxIterationsChanged(int maxIter);
void logScalingChanged(bool en);
void plotResized(int new_width, int new_height, JKQTPlotter* sender);
void resetView();
protected:
void calculateMandelSet(double rmin, double rmax, double imin, double imax, size_t width, size_t height, unsigned int max_iterations = 1000);
private:
Ui::MandelbrotMainWindow *ui;
// graph representing Mandelbrot Set
JKQTPColumnMathImage* graph;
// column for Mandelbrot Set image data, used for calculations (double-buffering with mandelbrot_col_display)
size_t mandelbrot_col;
// column for Mandelbrot Set image data, used for display (double-buffering with mandelbrot_col)
size_t mandelbrot_col_display;
};
#endif // MANDELBROTMAINWINDOW_H