#include <range/v3/all.hpp>
#include <AUI/Platform/AWindow.h>
#include <AUI/Platform/Entry.h>
#include <AUI/Util/UIBuildingHelpers.h>
#include <AUI/View/AScrollArea.h>
#include <AUI/View/ASplitter.h>
#include <AUI/View/ATextArea.h>
#include <AUI/Model/AListModel.h>
#include "AUI/View/AButton.h"
#include "AUI/View/ADrawableView.h"
#include "AUI/Json/Conversion.h"
#include "AUI/IO/AFileInputStream.h"
#include "AUI/Reflect/for_each_field.h"
#include "AUI/Platform/AMessageBox.h"
#include <AUI/View/AForEachUI.h>
static constexpr auto LOG_TAG = "Notes";
using namespace declarative;
using namespace ass;
struct Note {
};
AJSON_FIELDS(Note, AJSON_FIELDS_ENTRY(title) AJSON_FIELDS_ENTRY(content))
public:
using ATextArea::ATextArea;
void onCharEntered(
char16_t c)
override {
return;
}
ATextArea::onCharEntered(c);
}
};
struct StringOneLinePreview {
AString operator()(const AString& s) const {
return "Empty";
}
return s.
restrictLength(100,
"").
replacedAll(
'\n',
' ');
}
};
return Vertical {
note->title.readProjected(StringOneLinePreview {}),
ATextOverflow::ELLIPSIS,
} &
note->content.readProjected(StringOneLinePreview {}),
};
}
if (note == nullptr) {
return Centered { Label { "No note selected" } };
}
Vertical {
_new<TitleTextArea>(
"Untitled")
let {
if (note->content->empty()) {
it->focus();
}
},
});
}
class MainWindow :
public AWindow {
public:
MainWindow() : AWindow("Notes") {
{
BackgroundSolid { AColor::WHITE },
},
{
t<AWindow>(),
Padding { 0 },
},
});
load();
connect(mNotes.changed, me::markDirty);
ASplitter::Horizontal()
Vertical {
Centered {
Horizontal {
mDirty > &AView::setEnabled,
Button {
Icon {
":img/new.svg" }, Label {
"New Note" } }.connect(
},
},
AScrollArea::Builder()
.withContents(
observeChangesForDirty(note);
return notePreview(note)
let {
connect(it->clicked, [
this, note] { mCurrentNote = note; });
it& mCurrentNote > [note](AView& view, const _<Note>& currentNote) {
ALOG_DEBUG(LOG_TAG) << "currentNote == note " << currentNote << " == " << note;
view.setAssName(".plain_bg", currentNote == note);
};
};
})
.build(),
Vertical::Expanding {
Centered {
Button {
Icon {
":img/trash.svg" }, Label {
"Delete" } }.connect(
mCurrentNote.readProjected([](const _<Note>& n) {
return n != nullptr;
}) > &AView::setEnabled,
},
CustomLayout::Expanding {} & mCurrentNote.readProjected(noteEditor),
}<<
".plain_bg" with_style { MinSize { 200_dp } },
})
});
if (mNotes->empty()) {
newNote();
}
}
~MainWindow() {
if (mDirty) {
save();
}
}
void load() {
try {
if (!"notes.json"_path.isRegularFileExists()) {
return;
}
aui::from_json(AJson::fromStream(AFileInputStream("notes.json")), mNotes);
} catch (const AException& e) {
ALogger::info(LOG_TAG) << "Can't load notes: " << e;
}
}
void save() {
AFileOutputStream("notes.json") << aui::to_json(*mNotes);
mDirty = false;
}
void newNote() {
mNotes.writeScope()->push_back(note);
mCurrentNote = std::move(note);
}
void deleteCurrentNote() {
if (mCurrentNote == nullptr) {
return;
}
this, "Do you really want to delete this note?",
return;
}
auto it = ranges::find(*mNotes, *mCurrentNote);
it = mNotes.writeScope()->erase(it);
mCurrentNote = it != mNotes->end() ? *it : nullptr;
}
void markDirty() {
mDirty = true;
}
void observeChangesForDirty(const _<Note>& note) {
*note,
aui::lambda_overloaded {
[&](auto& field) {},
[&](APropertyReadable auto& field) {
ALOG_DEBUG(LOG_TAG) << "Observing for changes " << &field;
},
});
}
private:
AProperty<AVector<_<Note>>> mNotes;
AProperty<_<Note>> mCurrentNote;
AProperty<bool> mDirty = false;
};
auto w = _new<MainWindow>();
w->show();
return 0;
}
Multiline text input area.
Definition ATextArea.h:48
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
static AWindowBase * current()
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
static void biConnect(PropertySource &&propertySource, PropertyDestination &&propertyDestination)
Connects source property to the destination property and opposite (bidirectionally).
Definition AObject.h:156
constexpr void for_each_field_value(Clazz &&clazz, F &&callback)
Calls callback for each field value of a clazz.
Definition for_each_field.h:38
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 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 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.
@ OK
Indicates the user clicked the OK button.
Definition AMessageBox.h:113
Button
Specifies button(s) to be displayed.
Definition AMessageBox.h:79
@ OK_CANCEL
Display OK and Cancel buttons.
Definition AMessageBox.h:88
Icon
Specifies icon to be displayed.
Definition AMessageBox.h:51
@ NONE
No icon is specified.
Definition AMessageBox.h:58
Basic easy-to-use property implementation containing T.
Definition AProperty.h:30
Controls border radius.
Definition BorderRadius.h:28
Controls the expanding of AView.
Definition Expanding.h:26
Controls the font size of AView.
Definition FontSize.h:27
Controls view's margins.
Definition Margin.h:29
Controls the opacity of AView.
Definition Opacity.h:28
Controls the padding of AView.
Definition Padding.h:29
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