#include "ContactDetailsView.h"
#include "AUI/View/ATextField.h"
#include "common.h"
#include "AUI/Platform/AMessageBox.h"
#include <AUI/Util/UIBuildingHelpers.h>
#include <AUI/View/AButton.h>
#include <AUI/View/AScrollArea.h>
#include <AUI/View/ATextArea.h>
using namespace ass;
using namespace declarative;
static constexpr auto EDITOR_CONTENT_MAX_WIDTH = 400_dp;
namespace {
return Centered {
Label {} & contact->displayName.readProjected([](
const AString& s) {
return s.
empty() ?
"?" :
AString(1, s.
first()).
uppercase();
};
}
template <typename T>
return Label {} & property.readProjected([](const T& v) { return "{}"_format(v); });
}
template <typename T>
template <>
return _new<ATextField>() && property;
}
}
template <typename T>
if (mEditorMode) {
return editor(property) << ".row-value";
}
return viewer(property) << ".row-value";
}
ContactDetailsView::ContactDetailsView(
_<Contact> contact) : mContact(std::move(contact)) {
mOriginalContact = mContact;
{
},
});
connect(mEditorMode, [this] {
setContents(Vertical::Expanding {
Vertical::Expanding {
Horizontal {
profilePhoto(mContact),
Centered::Expanding {
},
row("Phone", mContact->phone),
row("Address", mContact->address),
row("Email", mContact->email),
row("Homepage", mContact->homepage),
Horizontal::Expanding {
Vertical {
},
_new<ATextArea>() && mContact->note,
},
}),
Centered {
Horizontal::Expanding {
SpacerExpanding(),
Button { mEditorMode ?
"Discard" :
"Delete" }
let { connect(it->clicked, me::drop); },
Button { mEditorMode ?
"Done" :
"Edit" }
let { connect(it->clicked, me::toggleEdit); },
},
});
});
}
void ContactDetailsView::drop() {
if (!mEditorMode) {
return;
}
return;
}
mContact = mOriginalContact;
mEditorMode = false;
}
void ContactDetailsView::toggleEdit() {
if (mEditorMode) {
*mOriginalContact = std::move(*mContact);
mContact = mOriginalContact;
} else {
mContact = _new<Contact>(*mOriginalContact);
}
mEditorMode = !mEditorMode;
}
template <typename T>
if (!mEditorMode) {
if (property == T {}) {
return nullptr;
}
}
return Vertical {
Horizontal {
presentation(property),
},
common_views::divider(),
};
}
Represents a Unicode character string.
Definition AString.h:38
Definition AStylesheet.h:21
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
#define emit
emits the specified signal in context of this object.
Definition AObject.h:343
#define let
Performs multiple operations on a single object without repeating its name (in place) This function c...
Definition kAUI.h:262
#define with_style
Allows to define a style to the view right in place.
Definition kAUI.h:287
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.
@ YES
Indicates the user clicked the Yes button.
Definition AMessageBox.h:123
@ YES_NO
Display Yes and No buttons.
Definition AMessageBox.h:93
@ NONE
No icon is specified.
Definition AMessageBox.h:58
Basic easy-to-use property implementation containing T.
Definition AProperty.h:30
Represents gradient background.
Definition BackgroundGradient.h:26
Controls border radius.
Definition BorderRadius.h:28
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 max size of AView.
Definition MaxSize.h:29
Controls the min size of AView.
Definition MinSize.h:28
Controls the opacity of AView.
Definition Opacity.h:28
Controls the padding of AView.
Definition Padding.h:29