#include <AUI/Layout/AVerticalLayout.h>
#include <AUI/Layout/AAdvancedGridLayout.h>
#include "JumpToCoordsWindow.h"
#include <AUI/Util/UIBuildingHelpers.h>
#include <AUI/View/ATextField.h>
#include <AUI/View/AButton.h>
#include <AUI/Platform/AMessageBox.h>
using namespace declarative;
:
AWindow(
"Jump to coords", 854_dp, 500_dp, parent, WindowStyle::NO_RESIZE) {
auto re = _new<ATextField>();
auto im = _new<ATextField>();
auto scale = _new<ATextField>();
auto pos = fractalView->getPlotPosition();
re->setText(AString::number(pos.x));
im->setText(AString::number(pos.y));
scale->setText(AString::number(fractalView->getPlotScale()));
setContents(Vertical {
_form({
{ "Re="_as, re },
{ "Im="_as, im },
{ "Scale="_as, scale },
}),
Horizontal {
SpacerExpanding {},
_new<AButton>("Jump").connect(
[&, fractalView, re, im, scale]() {
try {
auto dRe = std::stod(re->text()->toStdString());
auto dIm = -std::stod(im->text()->toStdString());
auto dScale = std::stod(scale->text()->toStdString());
fractalView->setPlotPositionAndScale(glm::dvec2 { dRe, dIm }, dScale);
close();
} catch (...) {
}
})
let { it->setDefault(); },
},
});
pack();
}
emits clicked
Left mouse button clicked.
Definition AView.h:933
Represents a window in the underlying windowing system.
Definition AWindow.h:45
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
#define let
Performs multiple operations on a single object without repeating its name (in place) This function c...
Definition kAUI.h:262
API_AUI_VIEWS ResultButton show(AWindow *parent, const AString &title, const AString &message, Icon icon=Icon::NONE, Button b=Button::OK)
Displays a message box, blocking the caller thread until the user dismisses the message.