#include <range/v3/all.hpp>
#include <AUI/Platform/Entry.h>
#include <AUI/Platform/AWindow.h>
#include <AUI/Util/UIBuildingHelpers.h>
#include <AUI/View/AForEachUI.h>
#include <AUI/View/AButton.h>
#include "AUI/View/ATextField.h"
#include "AUI/View/AListView.h"
using namespace declarative;
struct User {
};
public:
CRUDWindow():
AWindow(
"AUI - 7GUIs - CRUD", 300_dp, 200_dp) {
{
}
});
auto FILTER_VIEW = ranges::views::filter([this](const _<User>& user) {
return user->displayName->startsWith(mFilterPrefix);
});
Horizontal::Expanding {
Vertical::Expanding {
Horizontal {
Label { "Filter prefix:" },
_new<ATextField>()
with_style { Expanding(1, 0) } && mFilterPrefix,
},
AScrollArea::Builder().withExpanding().withContents(
auto view = _new<ALabel>();
view & i->displayName;
connect(mSelectedUser, view, [
this, &view = *view, i] {
view.setAssName("selected", mSelectedUser == i);
});
mSelectedUser = i;
mEditedUser.name = i->name;
mEditedUser.surname = i->surname;
});
return view;
}
).build()
with_style { BackgroundSolid { AColor::WHITE } },
},
Centered::Expanding {
_form({
{ "Name:", _new<ATextField>() && mEditedUser.name },
{ "Surname:", _new<ATextField>() && mEditedUser.surname },
}),
},
},
Horizontal {
Button {
"Create" }.connect(&
AView::clicked, me::createClicked) & mCreateEnabled > &AView::setEnabled,
Button {
"Update" }.connect(&
AView::clicked, me::updateClicked) & mUpdateEnabled > &AView::setEnabled,
Button {
"Delete" }.connect(&
AView::clicked, me::deleteClicked) & mDeleteEnabled > &AView::setEnabled,
},
});
}
private:
AProperty<AVector<_<User>>> mUsers;
User mEditedUser;
AProperty<_<User>> mSelectedUser;
AProperty<AString> mFilterPrefix;
APropertyPrecomputed<bool> mCreateEnabled = [this] { return !(mEditedUser.surname->empty() || mEditedUser.name->empty()); };
APropertyPrecomputed<bool> mDeleteEnabled = [this] { return mSelectedUser != nullptr; };
APropertyPrecomputed<bool> mUpdateEnabled = [this] { return mCreateEnabled && mDeleteEnabled; };
void createClicked() {
.name = std::exchange(mEditedUser.name, {}), .surname = std::exchange(mEditedUser.surname, {}) });
}
void updateClicked() {
(*mSelectedUser)->name = std::exchange(mEditedUser.name, {});
(*mSelectedUser)->surname = std::exchange(mEditedUser.surname, {});
}
void deleteClicked() {
mSelectedUser = nullptr;
}
};
_new<CRUDWindow>()->show();
return 0;
}
Definition AStylesheet.h:21
void setContents(const _< AViewContainer > &container)
Moves (like via std::move) all children and layout of the specified container to this container.
void setExtraStylesheet(_< AStylesheet > extraStylesheet)
Definition AView.h:238
emits clicked
Left mouse button clicked.
Definition AView.h:933
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 decltype(auto) connect(const Signal &signal, Object *object, Function &&function)
Connects signal to the slot of the specified object.
Definition AObject.h:86
#define AUI_DECLARATIVE_FOR(value, model, layout)
ranged-for-loop style wrapped for AForEachUI.
Definition AForEachUI.h:402
#define with_style
Allows to define a style to the view right in place.
Definition kAUI.h:287
#define AUI_ENTRY
Application entry point.
Definition Entry.h:90
Button
Specifies button(s) to be displayed.
Definition AMessageBox.h:79
Readonly property that holds a value computed by an expression.
Definition APropertyPrecomputed.h:51
Basic easy-to-use property implementation containing T.
Definition AProperty.h:30
aui::PropertyModifier< AProperty > writeScope() noexcept
Definition AProperty.h:130
Represents solid (single color) background.
Definition BackgroundSolid.h:26
static _< T > manage(T *raw)
Delegates memory management of the raw pointer T* raw to the shared pointer, which is returned.
Definition SharedPtrTypes.h:424