#include <range/v3/all.hpp>
#include <AUI/View/ARadioButton.h>
#include <AUI/View/ARadioGroup.h>
#include <AUI/Model/AListModel.h>
#include <AUI/Audio/ASS/Property/Sound.h>
#include "AUI/ASS/Property/BackgroundSolid.h"
#include "AUI/ASS/Property/Border.h"
#include "AUI/ASS/Property/TransformOffset.h"
#include "AUI/ASS/Selector/on_state.h"
#include "ExampleWindow.h"
#include "AUI/Layout/AVerticalLayout.h"
#include "AUI/Model/ATreeModel.h"
#include "AUI/Util/AMetric.h"
#include "AUI/View/A2FingerTransformArea.h"
#include "AUI/View/AButton.h"
#include "AUI/Layout/AHorizontalLayout.h"
#include "AUI/Platform/ACustomCaptionWindow.h"
#include "AUI/View/ACircleProgressBar.h"
#include "AUI/View/ALabel.h"
#include "AUI/Layout/AStackedLayout.h"
#include "AUI/View/ACheckBox.h"
#include "AUI/View/AProgressBar.h"
#include "AUI/View/ATextField.h"
#include "AUI/View/ANumberPicker.h"
#include "AUI/View/ADoubleNumberPicker.h"
#include "AUI/View/ASpacerExpanding.h"
#include "AUI/Util/UIBuildingHelpers.h"
#include "DemoListModel.h"
#include "AUI/View/ASpinnerV2.h"
#include "DemoGraphView.h"
#include "AUI/Audio/IAudioPlayer.h"
#include "AUI/View/AGroupBox.h"
#include "AUI/View/ADragNDropView.h"
#include "AUI/Util/ALayoutInflater.h"
#include "AUI/View/ASlider.h"
#include "AUI/Platform/APlatform.h"
#include "AUI/IO/AByteBufferInputStream.h"
#include "AUI/Curl/ACurl.h"
#include "AUI/View/ASpinnerV2.h"
#include <AUI/Model/AListModel.h>
#include <AUI/View/ADropdownList.h>
#include <AUI/i18n/AI18n.h>
#include <AUI/i18n/AI18n.h>
#include <AUI/ASS/ASS.h>
#include <AUI/View/AListView.h>
#include <AUI/View/ATextArea.h>
#include <AUI/View/ARulerView.h>
#include <AUI/View/AForEachUI.h>
#include <AUI/View/ARulerArea.h>
#include <AUI/View/ATreeView.h>
#include <AUI/Platform/ADesktop.h>
#include <AUI/Platform/AMessageBox.h>
#include <AUI/View/ADragArea.h>
#include <memory>
#include <random>
#include <AUI/View/ASplitter.h>
#include <AUI/View/AScrollArea.h>
#include <AUI/View/ATabView.h>
#include <AUI/View/AGridSplitter.h>
#include <AUI/View/AText.h>
#include <AUI/View/ADrawableView.h>
#include <AUI/Traits/platform.h>
using namespace declarative;
t->setLayout(std::make_unique<AStackedLayout>());
t->addView(_new<ALabel>(
"Window contents"));
}
class AllViewsWindow :
public AWindow {
public:
AllViewsWindow() :
AWindow(
"All views", 300_dp, 500_dp, nullptr, WindowStyle::MODAL) {
Vertical {
Centered { _new<ALabel>("ALabel") },
Centered { _new<AButton>("AButton") },
Centered { _new<ATextField>()
let { it->setText(
"ATextField"); } },
}
<< ".all_views_wrap")
.withExpanding() });
}
};
ExampleWindow::ExampleWindow() :
AWindow(
"Examples", 800_dp, 700_dp) {
allowDragNDrop();
setLayout(std::make_unique<AVerticalLayout>());
AStylesheet::global().addRules({ {
} });
#if AUI_PLATFORM_IOS || AUI_PLATFORM_ANDROID
setCustomStyle({
});
#endif
addView(Horizontal {
AText::fromString(
"Building beautiful programs in pure C++ without chromium embedded framework")
with_style {
Expanding(1, 0),
},
"https://raster.shields.io/github/stars/aui-framework/aui?style=raster&logo=github");
};
connect(view->clicked, [] {
APlatform::openUrl("https://github.com/aui-framework/aui/stargazers");
});
it->addView(view);
};
};
},
});
addView(tabView = _new<ATabView>()
let {
it->addTab(
aui::platform::current::is_mobile(), Vertical, Horizontal> {
Vertical {
GroupBox {
Label { "Buttons" },
Vertical {
_new<AButton>("Common button"),
_new<AButton>(
"Default button")
let { it->setDefault(); },
_new<AButton>(
"Disabled button")
let { it->setDisabled(); },
Icon { ":img/logo.svg" },
Label { "Button with icon" },
}
.clicked(this, [&] {
}),
},
},
GroupBox {
CheckBoxWrapper { Label {
"Checkboxes" } }
let { it->checked() =
true; },
Vertical {
CheckBoxWrapper { Label { "Unchecked checkbox" } },
CheckBoxWrapper { Label {
"Checked checkbox" } }
let { it->checked() =
true; },
CheckBoxWrapper { Label {
"Disabled checkbox" } }
let { it->setDisabled(); },
},
},
GroupBox {
Label { "Radiobuttons" },
RadioButton {
"Radiobutton 1" }
let { it->checked() =
true; },
RadioButton { "Radiobutton 2" },
RadioButton { "Radiobutton 3" },
RadioButton {
"Disabled radiobutton" }
let { it->disable(); },
},
},
GroupBox {
Label { "Comboboxes" },
Vertical {
"Combobox 1",
"Combobox 2",
"Combobox 3",
"Combobox 4",
"Combobox 5",
"Combobox 6",
})),
},
},
GroupBox {
Label { "Drag area" },
};
it->addView(ADragArea::convertToDraggable(_new<AButton>("Drag me!"), false));
},
},
Vertical {
#if AUI_PLATFORM_WIN || AUI_PLATFORM_LINUX || AUI_PLATFORM_MACOS
GroupBox {
Label { "Window factory" },
Vertical {
_new<AButton>("Show window")
[&] {
auto w = _new<AWindow>("Basic window", 400_dp, 300_dp);
fillWindow(w);
w->show();
w->setWindowStyle(WindowStyle::MODAL);
mWindows << w;
}),
_new<AButton>("Show window without caption")
[&] {
auto w = _new<ACustomWindow>("Custom window without caption", 400_dp, 300_dp);
fillWindow(w);
w->show();
w->setWindowStyle(WindowStyle::MODAL);
mWindows << w;
}),
_new<AButton>("Show window custom caption")
[&] {
auto w =
_new<ACustomCaptionWindow>("Custom window custom caption", 400_dp, 300_dp);
fillWindow(w->getContentContainer());
w->show();
w->setWindowStyle(WindowStyle::MODAL);
mWindows << w;
}),
_new<AButton>("Close all windows")
[&] {
for (auto& w : mWindows) w->close();
mWindows.clear();
}),
} },
#endif
GroupBox {
Label { "System dialog" },
Vertical {
_new<AButton>("Show file chooser")
[&] {
} else {
}
});
}),
_new<AButton>("Show folder chooser")
[&] {
if (f.empty()) {
} else {
}
});
}),
_new<AButton>("Message box")
[&] {
"Title",
"Message",
}),
_new<AButton>("Cause assertion fail")
_new<AButton>("Cause hang")
[&] {
for (;;)
;
}),
_new<AButton>("Cause access violation")
[&] {
try {
*((volatile int*) nullptr) = 123;
ALogger::info("Example") << "Successfully caught access violation: " << e;
}
}),
},
},
GroupBox {
Label { "List view" },
[] {
auto model = _new<DemoListModel>();
return Vertical {
Horizontal {
_new<ASpacerExpanding>(),
},
_new<AListView>(model)
};
}(),
},
GroupBox {
Label { "AForEachUI" },
[this] {
struct State {
AProperty<AVector<AColor>> colors;
};
auto state = _new<State>();
return Vertical {
Horizontal {
_new<AButton>("Add").connect(
[state] {
static std::default_random_engine re;
do_once { re.seed(std::time(
nullptr)); };
static std::uniform_real_distribution<float> d(0.f, 1.f);
state->colors.writeScope()->push_back({
AColor(d(re), d(re), d(re), 1.f) });
}),
_new<AButton>("Remove").connect(
[state] {
if (!state->colors->empty()) {
state->colors.writeScope()->pop_back();
}
}),
_new<ASpacerExpanding>(),
},
return Horizontal {
}
};
}
};
}(),
},
GroupBox {
Label { "Tree view" },
[] {
{
.value = "dir1",
.children = {
{ .value = "file1" },
{ .value = "file2" },
}
},
{
.value = "dir2",
.children = {
{ .value = "file3" },
{ .value = "file4" },
}
},
}));
}(),
},
},
Vertical::Expanding {
GroupBox {
Label { "Progressbar" },
Vertical {
progressBar,
circleProgressBar,
GroupBox {
Label { "Slider" },
Vertical {
_new<ASlider>()
.connect(&ASlider::valueChanging,
slot(progressBar)::setValue)
.connect(&ASlider::valueChanging,
slot(circleProgressBar)::setValue),
} },
},
},
GroupBox {
Label { "Scaling factor" },
Horizontal {
[](int64_t x) {
{ .scalingFactor = x * 0.25f,
.minimalWindowSizeDp = std::nullopt });
it->setMin(1);
it->setMax(12);
it->setValue(4);
},
Label { "x0.25" } } },
GroupBox {
Label { "Fields" },
Vertical::Expanding {
Label { "Text field" },
_new<ATextField>()
let { it->focus(); },
Label { "Number picker" },
_new<ANumberPicker>(),
_new<ADoubleNumberPicker>(),
Label { "Text area" },
.withContents(_new<ATextArea>(
"AUI Framework - Declarative UI toolkit for modern C++20\n"
"Copyright (C) 2020-2025 Alex2772 and Contributors\n"
"\n"
"SPDX-License-Identifier: MPL-2.0\n"
"\n"
"This Source Code Form is subject to the terms of the Mozilla "
"Public License, v. 2.0. If a copy of the MPL was not distributed with this "
"file, You can obtain one at http://mozilla.org/MPL/2.0/."))
<<
".input-field" let { it->setExpanding(); },
} }
"Common");
#if !AUI_PLATFORM_EMSCRIPTEN
mWavAudio = IAudioPlayer::fromUrl(":sound/sound1.wav");
mOggAudio = IAudioPlayer::fromUrl(":sound/sound1.ogg");
it->addTab(
AScrollArea::Builder().withContents(std::conditional_t<aui::platform::current::is_mobile(), Vertical,
Horizontal> { Horizontal {
Vertical {
_new<ALabel>("Play music using AUI!"),
_new<ALabel>("Volume control"),
_new<ASlider>()
.connect(&ASlider::valueChanging, this,
[player = mWavAudio](aui::float_within_0_1 value) {
player->setVolume(static_cast<uint32_t>(float(value) * 256.f));
}) },
Vertical {
_new<ALabel>("Play music using AUI!"),
_new<ALabel>("Volume control"),
_new<ASlider>()
.connect(&ASlider::valueChanging, this,
[player = mOggAudio](aui::float_within_0_1 value) {
player->setVolume(static_cast<uint32_t>(float(value) * 256.f));
}) },
Vertical {
ass::Sound { IAudioPlayer::fromUrl(
":sound/click.ogg") },
} } } } }),
"Sounds");
#endif
it->addTab(
std::conditional_t<aui::platform::current::is_mobile(), Vertical, Horizontal> { Horizontal {
Vertical {
_new<ALabel>("Gif support!"),
},
Vertical {
_new<ALabel>("Animated WebP support!"),
"Images");
it->addTab(
Vertical {
_new<ALabel>("Horizontal splitter"),
ASplitter::Horizontal().withItems({
_new<AButton>("One"),
_new<AButton>("Two"),
_new<AButton>("Three"),
_new<AButton>("Four"),
_new<AButton>("Five"),
}),
ASplitter::Horizontal().withItems({
_new<AButton>("One"),
_new<AButton>("Two"),
_new<AButton>("Three"),
SpacerExpanding(),
_new<AButton>("Four"),
_new<AButton>("Five"),
}),
_new<ALabel>("Vertical splitter"),
ASplitter::Vertical()
.withItems({ _new<AButton>("One"), _new<AButton>("Two"), _new<AButton>("Three"),
_new<AButton>("Four"), _new<AButton>("Five") })
.build()
let { it->setExpanding(); },
_new<ALabel>("Grid splitter"),
5,
[](size_t y) {
return _new<AButton>("{}x{}"_format(x, y));
});
}))
.build()
let { it->setExpanding(); },
},
"Splitters");
it->addTab(
Vertical {
ASplitter::Horizontal().withItems({
Vertical::Expanding {
_new<ALabel>("Default"),
AText::fromString(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, "
"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non "
"proident, sunt in culpa qui officia deserunt mollit anim id est laborum")
with_style { ATextAlign::JUSTIFY },
Vertical::Expanding {
_new<ALabel>("Word breaking"),
AText::fromString(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, "
"quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo "
"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse "
"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non "
"proident, sunt in culpa qui officia deserunt mollit anim id est laborum",
{ WordBreak::BREAK_ALL }),
}),
[] {
for (int i = 0; i <= 9; ++i) {
v1->addView(Horizontal {
_new<ALabel>("{} px"_format(i + 6)),
v2->addView(Horizontal {
_new<ALabel>("{} px"_format(i + 16)),
}
return Horizontal { v1, v2 };
}(),
}
let { it->setExpanding(); }),
"Text");
it->addTab(
Vertical {
_new<A2FingerTransformArea>()
let {
it->setCustomStyle({
Border { 1_px, AColor::BLACK },
});
ATextAlign::CENTER,
}
};
connect(
it->transformed, blackRect,
[blackRect = blackRect.get(),
keptTransform = _new<A2DTransform>()](
const A2DTransform& transform) {
keptTransform->applyDelta(transform);
blackRect->setCustomStyle({
TransformOffset {
AMetric(keptTransform->offset.x, AMetric::T_PX),
AMetric(keptTransform->offset.y, AMetric::T_PX) },
TransformScale { keptTransform->scale },
TransformRotate { keptTransform->rotation },
});
});
},
_new<ADragNDropView>(),
Horizontal {
Centered {
Vertical {
},
Label { "github.com/aui-framework/aui" }.clicked(
this, [] { APlatform::openUrl(
"https://github.com/aui-framework/aui"); })
with_style {
},
},
},
Stacked {
Centered {
},
},
},
}
let { it->setExpanding(); },
"Others");
it->setExpanding();
});
addView(Horizontal {
Centered {
_new<AButton>(
"Show all views...").connect(&
AButton::clicked,
this, [] { _new<AllViewsWindow>()->show(); }),
},
_new<ASpacerExpanding>(),
_new<ASpinnerV2>(),
CheckBoxWrapper {
Label { "Enabled" },
it->check();
connect(it->checked().changed,
slot(tabView)::setEnabled);
},
_new<ALabel>(
"\u00a9 Alex2772, 2021, alex2772.ru")
let {
it << "#copyright";
it->setEnabled(false);
},
});
}
AWindowBase::onDragDrop(event);
for (
const auto& [k, v] : event.
data.
data()) {
ALogger::info("Drop") << "[" << k << "] = " << AString::fromUtf8(v);
}
auto surface = createOverlappingSurface({ 0, 0 }, { 100, 100 }, false);
ATextAlign::CENTER,
},
if (
auto u = event.data.
urls()) {
auto url = u->first();
if (auto icon = ADesktop::iconOfFile(url.path())) {
}
}
return nullptr;
}(),
AText::fromString(
"Caught drop event. See the logger output for contents.")
with_style { ATextAlign::CENTER,
MinSize { 100_dp, 40_dp } },
Centered {
Button {
"OK" }.clicked(
this, [surface] { surface->close(); }) }
};
popup->pack();
surface->setOverlappingSurfaceSize(popup->size());
surface->setOverlappingSurfacePosition((size() - *popup->size()) / 2);
}
Represents a 4-component floating point color (RGBA).
Definition AColor.h:26
Represents cursor type.
Definition ACursor.h:26
@ POINTER
Pointing finger.
Definition ACursor.h:44
Abstract AUI exception.
Definition AException.h:28
Definition AGridSplitter.h:29
static void inflate(aui::no_escape< AViewContainer > root, const _< AView > &view)
Wraps view with root using Stacked layout and expanding.
static _< AListModel< StoredType > > make(const std::initializer_list< V > &t)
Definition AListModel.h:251
Stores dimensions in scalable units (dp, pt, etc...).
Definition AMetric.h:75
emits< int64_t > valueChanged
Number changed.
Definition ANumberPicker.h:87
An add-on to AString with functions for working with the path.
Definition APath.h:128
Basic implementation of ITreeModel.
Definition ATreeModel.h:32
Uniform Resource Locator implementation.
Definition AUrl.h:31
A std::vector with AUI extensions.
Definition AVector.h:39
void setContents(const _< AViewContainer > &container)
Moves (like via std::move) all children and layout of the specified container to this container.
emits clicked
Left mouse button clicked.
Definition AView.h:933
void setScalingParams(ScalingParams params)
Sets scaling params.
Represents a window in the underlying windowing system.
Definition AWindow.h:45
static AWindowBase * current()
Imitates behaviour of word wrapping, but uses views instead words.
Definition AWordWrappingLayout.h:22
static API_AUI_VIEWS _< IDrawable > fromUrl(const AUrl &url) noexcept
Creates a drawable from an url.
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179
class_of c
Selects views that are of the specified classes.
Definition class_of.h:84
type_of< T > t
Selects views that are of the specified C++ types.
Definition type_of.h:71
#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_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 do_once
Executes following function call or {} block once per program execution.
Definition kAUI.h:391
#define AUI_ASSERT_NO_CONDITION(what)
Always triggers assertion fail.
Definition Assert.h:94
#define ui_thread
Executes lambda on main thread.
Definition kAUI.h:397
#define async
Executes following {} block asynchronously in the global thread pool. Unlike asyncX,...
Definition kAUI.h:329
API_AUI_VIEWS AFuture< APath > browseForDir(AWindowBase *parent, const APath &startingLocation={})
Opens native browse for directory dialog.
API_AUI_VIEWS AFuture< APath > browseForFile(AWindowBase *parent, const APath &startingLocation={}, const AVector< FileExtension > &extensions={ {"All", "*"} })
Opens native browse for file dialog.
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.
@ OK
Display OK button only.
Definition AMessageBox.h:83
@ NONE
No icon is specified.
Definition AMessageBox.h:58
Definition ADragNDrop.h:67
Definition ADragNDrop.h:62
Definition ATreeModel.h:41
Fast gaussian blur.
Definition Backdrop.h:84
Represents backdrop filter effect which applied to the pixels behind the view (i.e....
Definition Backdrop.h:32
Represents textured (image) background.
Definition BackgroundImage.h:89
Represents solid (single color) background.
Definition BackgroundSolid.h:26
Represents bottom border.
Definition BorderBottom.h:27
Controls border radius.
Definition BorderRadius.h:28
Represents border.
Definition Border.h:29
Controls the expanding of AView.
Definition Expanding.h:26
Controls the fixed size of AView.
Definition FixedSize.h:26
Controls the font size of AView.
Definition FontSize.h:27
Controls view's margins.
Definition Margin.h:29
Controls the min size of AView.
Definition MinSize.h:28
Controls the padding of AView.
Definition Padding.h:29
Produces sound effect when the style applied.
Definition Sound.h:28
Controls the text color of AView.
Definition TextColor.h:26
Activated LESS-style subselector.
Definition on_state.h:65
Definition ARadioGroup.h:83