#include <AUI/View/ANumberPicker.h>
#include <AUI/View/AButton.h>
#include <AUI/Traits/strings.h>
#include "FractalWindow.h"
#include "FractalView.h"
#include "JumpToCoordsWindow.h"
#include <AUI/Util/UIBuildingHelpers.h>
#include <AUI/ASS/ASS.h>
using namespace ass;
using namespace declarative;
FractalWindow::FractalWindow() :
AWindow(
"Mandelbrot set") {
setLayout(std::make_unique<AHorizontalLayout>());
auto centerPosDisplay = _new<ALabel>("-");
{
centerPosDisplay->setCustomStyle({
});
}
auto fractal = _new<FractalView>();
connect(fractal->centerPosChanged, this, [centerPosDisplay](const glm::dvec2& newPos, double scale) {
centerPosDisplay->setText("Center position: {} {}, scale: {}"_format(newPos.x, -newPos.y, scale));
});
setContents(Horizontal {
Stacked::Expanding {
fractal,
Vertical::Expanding {
SpacerExpanding {},
Horizontal {
SpacerExpanding {},
centerPosDisplay,
},
},
},
Vertical {
_new<AButton>("Jump to coords...")
.connect(&
AButton::clicked,
this, [&, fractal]() { _new<JumpToCoordsWindow>(fractal,
this)->show(); }),
_new<ALabel>("Iterations:"),
_new<ANumberPicker>().connect(
it->setMax(1000);
it->setValue(350);
},
},
});
fractal->focus();
}
emits< int64_t > valueChanged
Number changed.
Definition ANumberPicker.h:87
emits clicked
Left mouse button clicked.
Definition AView.h:933
Represents a window in the underlying windowing system.
Definition AWindow.h:45
#define slot(v)
Passes some variable and type of the variable separated by comma. It's convenient to use with the con...
Definition kAUI.h:88
#define let
Performs multiple operations on a single object without repeating its name (in place) This function c...
Definition kAUI.h:262
Represents solid (single color) background.
Definition BackgroundSolid.h:26
Controls the font size of AView.
Definition FontSize.h:27
Controls the padding of AView.
Definition Padding.h:29
Controls the text color of AView.
Definition TextColor.h:26