#include <ctre.hpp>
#include <AUI/Platform/Entry.h>
#include <AUI/Platform/AWindow.h>
#include <AUI/Util/UIBuildingHelpers.h>
#include "AUI/View/ADropdownList.h"
#include "AUI/Model/AListModel.h"
#include "AUI/View/ATextField.h"
#include "AUI/Platform/AMessageBox.h"
using namespace declarative;
using namespace std::chrono;
constexpr auto REGEX_DATE = ctre::match<"([0-9]+)\\.([0-9]+)\\.([0-9]{4})">;
struct DateTextFieldState {
};
auto formatDate(system_clock::time_point date) {
return "{0:%d}.{0:%m}.{0:%G}"_format(date);
}
auto dateTextField(DateTextFieldState& state) {
return _new<ATextField>()
let {
[](const AOptional<system_clock::time_point>& v) -> AString {
if (!v) {
return "";
}
return formatDate(*v);
},
auto std = s.toStdString();
auto match = REGEX_DATE.match(std);
if (!match) {
return std::nullopt;
}
return sys_days(year_month_day(
year(std::stoi(match.get<3>().str())), month(std::stoi(match.get<2>().str())),
day(std::stoi(match.get<1>().str()))));
},
}),
it->text());
};
};
}
class FlightBookerWindow :
public AWindow {
public:
FlightBookerWindow() : AWindow("AUI - 7GUIs - Book Flight", 150_dp, 50_dp) {
ass::BackgroundSolid { AColor::RED },
} });
Vertical {
connect(it->selectionId().readProjected([](
int selectionId) { return selectionId == 1; }),
mIsReturnFlight);
},
dateTextField(mDepartureDate),
dateTextField(mReturnDate)
let {
connect(mIsReturnFlight,
slot(it)::setEnabled); },
_new<AButton>(
"Book")
let {
},
},
});
}
private:
DateTextFieldState mDepartureDate { system_clock::now() }, mReturnDate { system_clock::now() };
AProperty<bool> mIsReturnFlight;
APropertyPrecomputed<bool> mIsValid = [&] {
if (!mDepartureDate.parsed->hasValue()) {
return false;
}
if (!mIsReturnFlight) {
return true;
}
if (!mReturnDate.parsed->hasValue()) {
return false;
}
if (mDepartureDate.parsed->value() > mReturnDate.parsed->value()) {
return false;
}
return true;
};
void book() {
AString msg = "Departure - {}"_format(formatDate(mDepartureDate.parsed->value()));
if (mIsReturnFlight) {
msg += "\nReturn - {}"_format(formatDate(mReturnDate.parsed->value()));
}
}
};
_new<FlightBookerWindow>()->show();
return 0;
}
static _< AListModel< StoredType > > make(const std::initializer_list< V > &t)
Definition AListModel.h:251
Utility wrapper implementing the stack-allocated (fast) optional idiom.
Definition AOptional.h:33
Represents a Unicode character string.
Definition AString.h:38
void setContents(const _< AViewContainer > &container)
Moves (like via std::move) all children and layout of the specified container to this container.
Base class of all UI objects.
Definition AView.h:78
void setExtraStylesheet(_< AStylesheet > extraStylesheet)
Definition AView.h:238
void setAssName(const AString &assName, bool value)
Depending on value, either adds or removes ass name.
Definition AView.h:697
Represents a window in the underlying windowing system.
Definition AWindow.h:45
class_of c
Selects views that are of the specified classes.
Definition class_of.h:84
static void biConnect(PropertySource &&propertySource, PropertyDestination &&propertyDestination)
Connects source property to the destination property and opposite (bidirectionally).
Definition AObject.h:156
static decltype(auto) connect(const Signal &signal, Object *object, Function &&function)
Connects signal to the slot of the specified object.
Definition AObject.h:86
#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
#define AUI_ENTRY
Application entry point.
Definition Entry.h:90
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.
Basic easy-to-use property implementation containing T.
Definition AProperty.h:30
Definition callables.h:36