mirror of https://github.com/procxx/kepka.git
Improved calendar layout for export.
This commit is contained in:
parent
841abc2e87
commit
06629e8cd9
|
@ -1744,11 +1744,11 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_export_option_location" = "Download path: {path}";
|
"lng_export_option_location" = "Download path: {path}";
|
||||||
"lng_export_option_html" = "Human-readable HTML";
|
"lng_export_option_html" = "Human-readable HTML";
|
||||||
"lng_export_option_json" = "Machine-readable JSON";
|
"lng_export_option_json" = "Machine-readable JSON";
|
||||||
"lng_export_limits" = "From: {from}, Till: {till}";
|
"lng_export_limits" = "From: {from}, to: {till}";
|
||||||
"lng_export_beginning" = "Beginning";
|
"lng_export_beginning" = "the oldest message";
|
||||||
"lng_export_end" = "End";
|
"lng_export_end" = "present";
|
||||||
"lng_export_from_beginning" = "From Beginning";
|
"lng_export_from_beginning" = "Reset";
|
||||||
"lng_export_till_end" = "Till End";
|
"lng_export_till_end" = "Reset";
|
||||||
"lng_export_start" = "Export";
|
"lng_export_start" = "Export";
|
||||||
"lng_export_state_initializing" = "Initializing...";
|
"lng_export_state_initializing" = "Initializing...";
|
||||||
"lng_export_state_userpics" = "Profile pictures";
|
"lng_export_state_userpics" = "Profile pictures";
|
||||||
|
|
|
@ -573,14 +573,24 @@ calendarPreviousDisabled: icon {{ "title_back", menuIconFg }};
|
||||||
calendarNext: IconButton(calendarPrevious) {
|
calendarNext: IconButton(calendarPrevious) {
|
||||||
icon: icon {{ "title_back-flip_horizontal", boxTitleFg }};
|
icon: icon {{ "title_back-flip_horizontal", boxTitleFg }};
|
||||||
}
|
}
|
||||||
|
CalendarSizes {
|
||||||
|
width: pixels;
|
||||||
|
daysHeight: pixels;
|
||||||
|
cellSize: size;
|
||||||
|
cellInner: pixels;
|
||||||
|
padding: margins;
|
||||||
|
}
|
||||||
calendarNextDisabled: icon {{ "title_back-flip_horizontal", menuIconFg }};
|
calendarNextDisabled: icon {{ "title_back-flip_horizontal", menuIconFg }};
|
||||||
calendarTitleFont: boxTitleFont;
|
calendarTitleFont: boxTitleFont;
|
||||||
|
defaultCalendarSizes: CalendarSizes {
|
||||||
|
width: boxWideWidth;
|
||||||
|
daysHeight: 32px;
|
||||||
|
cellSize: size(48px, 40px);
|
||||||
|
cellInner: 34px;
|
||||||
|
padding: margins(14px, 15px, 14px, 10px);
|
||||||
|
}
|
||||||
calendarDaysFont: normalFont;
|
calendarDaysFont: normalFont;
|
||||||
calendarDaysFg: boxTitleAdditionalFg;
|
calendarDaysFg: boxTitleAdditionalFg;
|
||||||
calendarDaysHeight: 32px;
|
|
||||||
calendarCellSize: size(48px, 40px);
|
|
||||||
calendarCellInner: 34px;
|
|
||||||
calendarPadding: margins(14px, 15px, 14px, 10px);
|
|
||||||
calendarScroll: backgroundScroll;
|
calendarScroll: backgroundScroll;
|
||||||
|
|
||||||
passcodeTextStyle: TextStyle(defaultTextStyle) {
|
passcodeTextStyle: TextStyle(defaultTextStyle) {
|
||||||
|
|
|
@ -185,16 +185,13 @@ QString CalendarBox::Context::labelFromIndex(int index) const {
|
||||||
|
|
||||||
class CalendarBox::Inner : public TWidget, public RPCSender, private base::Subscriber {
|
class CalendarBox::Inner : public TWidget, public RPCSender, private base::Subscriber {
|
||||||
public:
|
public:
|
||||||
Inner(QWidget *parent, Context *context);
|
Inner(
|
||||||
|
QWidget *parent,
|
||||||
|
not_null<Context*> context,
|
||||||
|
const style::CalendarSizes &st);
|
||||||
|
|
||||||
int countHeight() {
|
int countHeight();
|
||||||
auto innerHeight = st::calendarDaysHeight + _context->rowsCount() * st::calendarCellSize.height();
|
void setDateChosenCallback(Fn<void(QDate)> callback);
|
||||||
return st::calendarPadding.top() + innerHeight + st::calendarPadding.bottom();
|
|
||||||
}
|
|
||||||
|
|
||||||
void setDateChosenCallback(Fn<void(QDate)> callback) {
|
|
||||||
_dateChosenCallback = std::move(callback);
|
|
||||||
}
|
|
||||||
|
|
||||||
~Inner();
|
~Inner();
|
||||||
|
|
||||||
|
@ -215,7 +212,8 @@ private:
|
||||||
void paintDayNames(Painter &p, QRect clip);
|
void paintDayNames(Painter &p, QRect clip);
|
||||||
void paintRows(Painter &p, QRect clip);
|
void paintRows(Painter &p, QRect clip);
|
||||||
|
|
||||||
Context *_context = nullptr;
|
const style::CalendarSizes &_st;
|
||||||
|
not_null<Context*> _context;
|
||||||
|
|
||||||
std::map<int, std::unique_ptr<Ui::RippleAnimation>> _ripples;
|
std::map<int, std::unique_ptr<Ui::RippleAnimation>> _ripples;
|
||||||
|
|
||||||
|
@ -227,8 +225,12 @@ private:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
CalendarBox::Inner::Inner(QWidget *parent, Context *context)
|
CalendarBox::Inner::Inner(
|
||||||
|
QWidget *parent,
|
||||||
|
not_null<Context*> context,
|
||||||
|
const style::CalendarSizes &st)
|
||||||
: TWidget(parent)
|
: TWidget(parent)
|
||||||
|
, _st(st)
|
||||||
, _context(context) {
|
, _context(context) {
|
||||||
setMouseTracking(true);
|
setMouseTracking(true);
|
||||||
subscribe(context->month(), [this](QDate month) {
|
subscribe(context->month(), [this](QDate month) {
|
||||||
|
@ -245,7 +247,7 @@ void CalendarBox::Inner::monthChanged(QDate month) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CalendarBox::Inner::resizeToCurrent() {
|
void CalendarBox::Inner::resizeToCurrent() {
|
||||||
resize(st::boxWideWidth, countHeight());
|
resize(_st.width, countHeight());
|
||||||
}
|
}
|
||||||
|
|
||||||
void CalendarBox::Inner::paintEvent(QPaintEvent *e) {
|
void CalendarBox::Inner::paintEvent(QPaintEvent *e) {
|
||||||
|
@ -260,13 +262,13 @@ void CalendarBox::Inner::paintEvent(QPaintEvent *e) {
|
||||||
void CalendarBox::Inner::paintDayNames(Painter &p, QRect clip) {
|
void CalendarBox::Inner::paintDayNames(Painter &p, QRect clip) {
|
||||||
p.setFont(st::calendarDaysFont);
|
p.setFont(st::calendarDaysFont);
|
||||||
p.setPen(st::calendarDaysFg);
|
p.setPen(st::calendarDaysFg);
|
||||||
auto y = st::calendarPadding.top();
|
auto y = _st.padding.top();
|
||||||
auto x = rowsLeft();
|
auto x = rowsLeft();
|
||||||
if (!myrtlrect(x, y, st::calendarCellSize.width() * kDaysInWeek, st::calendarDaysHeight).intersects(clip)) {
|
if (!myrtlrect(x, y, _st.cellSize.width() * kDaysInWeek, _st.daysHeight).intersects(clip)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
for (auto i = 0; i != kDaysInWeek; ++i, x += st::calendarCellSize.width()) {
|
for (auto i = 0; i != kDaysInWeek; ++i, x += _st.cellSize.width()) {
|
||||||
auto rect = myrtlrect(x, y, st::calendarCellSize.width(), st::calendarDaysHeight);
|
auto rect = myrtlrect(x, y, _st.cellSize.width(), _st.daysHeight);
|
||||||
if (!rect.intersects(clip)) {
|
if (!rect.intersects(clip)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -275,11 +277,11 @@ void CalendarBox::Inner::paintDayNames(Painter &p, QRect clip) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int CalendarBox::Inner::rowsLeft() const {
|
int CalendarBox::Inner::rowsLeft() const {
|
||||||
return st::calendarPadding.left();
|
return _st.padding.left();
|
||||||
}
|
}
|
||||||
|
|
||||||
int CalendarBox::Inner::rowsTop() const {
|
int CalendarBox::Inner::rowsTop() const {
|
||||||
return st::calendarPadding.top() + st::calendarDaysHeight;
|
return _st.padding.top() + _st.daysHeight;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CalendarBox::Inner::paintRows(Painter &p, QRect clip) {
|
void CalendarBox::Inner::paintRows(Painter &p, QRect clip) {
|
||||||
|
@ -290,24 +292,24 @@ void CalendarBox::Inner::paintRows(Painter &p, QRect clip) {
|
||||||
auto highlightedIndex = _context->highlightedIndex();
|
auto highlightedIndex = _context->highlightedIndex();
|
||||||
for (auto row = 0, rowsCount = _context->rowsCount(), daysCount = _context->daysCount()
|
for (auto row = 0, rowsCount = _context->rowsCount(), daysCount = _context->daysCount()
|
||||||
; row != rowsCount
|
; row != rowsCount
|
||||||
; ++row, y += st::calendarCellSize.height()) {
|
; ++row, y += _st.cellSize.height()) {
|
||||||
auto x = rowsLeft();
|
auto x = rowsLeft();
|
||||||
if (!myrtlrect(x, y, st::calendarCellSize.width() * kDaysInWeek, st::calendarCellSize.height()).intersects(clip)) {
|
if (!myrtlrect(x, y, _st.cellSize.width() * kDaysInWeek, _st.cellSize.height()).intersects(clip)) {
|
||||||
index += kDaysInWeek;
|
index += kDaysInWeek;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
for (auto col = 0; col != kDaysInWeek; ++col, ++index, x += st::calendarCellSize.width()) {
|
for (auto col = 0; col != kDaysInWeek; ++col, ++index, x += _st.cellSize.width()) {
|
||||||
auto rect = myrtlrect(x, y, st::calendarCellSize.width(), st::calendarCellSize.height());
|
auto rect = myrtlrect(x, y, _st.cellSize.width(), _st.cellSize.height());
|
||||||
auto grayedOut = (index < 0 || index >= daysCount || !rect.intersects(clip));
|
auto grayedOut = (index < 0 || index >= daysCount || !rect.intersects(clip));
|
||||||
auto highlighted = (index == highlightedIndex);
|
auto highlighted = (index == highlightedIndex);
|
||||||
auto enabled = _context->isEnabled(index);
|
auto enabled = _context->isEnabled(index);
|
||||||
auto innerLeft = x + (st::calendarCellSize.width() - st::calendarCellInner) / 2;
|
auto innerLeft = x + (_st.cellSize.width() - _st.cellInner) / 2;
|
||||||
auto innerTop = y + (st::calendarCellSize.height() - st::calendarCellInner) / 2;
|
auto innerTop = y + (_st.cellSize.height() - _st.cellInner) / 2;
|
||||||
if (highlighted) {
|
if (highlighted) {
|
||||||
PainterHighQualityEnabler hq(p);
|
PainterHighQualityEnabler hq(p);
|
||||||
p.setPen(Qt::NoPen);
|
p.setPen(Qt::NoPen);
|
||||||
p.setBrush(grayedOut ? st::windowBgOver : st::dialogsBgActive);
|
p.setBrush(grayedOut ? st::windowBgOver : st::dialogsBgActive);
|
||||||
p.drawEllipse(myrtlrect(innerLeft, innerTop, st::calendarCellInner, st::calendarCellInner));
|
p.drawEllipse(myrtlrect(innerLeft, innerTop, _st.cellInner, _st.cellInner));
|
||||||
p.setBrush(Qt::NoBrush);
|
p.setBrush(Qt::NoBrush);
|
||||||
}
|
}
|
||||||
auto it = _ripples.find(index);
|
auto it = _ripples.find(index);
|
||||||
|
@ -336,7 +338,7 @@ void CalendarBox::Inner::paintRows(Painter &p, QRect clip) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CalendarBox::Inner::mouseMoveEvent(QMouseEvent *e) {
|
void CalendarBox::Inner::mouseMoveEvent(QMouseEvent *e) {
|
||||||
const auto size = st::calendarCellSize;
|
const auto size = _st.cellSize;
|
||||||
const auto point = e->pos();
|
const auto point = e->pos();
|
||||||
const auto inner = QRect(
|
const auto inner = QRect(
|
||||||
rowsLeft(),
|
rowsLeft(),
|
||||||
|
@ -371,14 +373,14 @@ void CalendarBox::Inner::mousePressEvent(QMouseEvent *e) {
|
||||||
|
|
||||||
auto row = index / kDaysInWeek;
|
auto row = index / kDaysInWeek;
|
||||||
auto col = index % kDaysInWeek;
|
auto col = index % kDaysInWeek;
|
||||||
auto cell = QRect(rowsLeft() + col * st::calendarCellSize.width(), rowsTop() + row * st::calendarCellSize.height(), st::calendarCellSize.width(), st::calendarCellSize.height());
|
auto cell = QRect(rowsLeft() + col * _st.cellSize.width(), rowsTop() + row * _st.cellSize.height(), _st.cellSize.width(), _st.cellSize.height());
|
||||||
auto it = _ripples.find(_selected);
|
auto it = _ripples.find(_selected);
|
||||||
if (it == _ripples.cend()) {
|
if (it == _ripples.cend()) {
|
||||||
auto mask = Ui::RippleAnimation::ellipseMask(QSize(st::calendarCellInner, st::calendarCellInner));
|
auto mask = Ui::RippleAnimation::ellipseMask(QSize(_st.cellInner, _st.cellInner));
|
||||||
auto update = [this, cell] { rtlupdate(cell); };
|
auto update = [this, cell] { rtlupdate(cell); };
|
||||||
it = _ripples.emplace(_selected, std::make_unique<Ui::RippleAnimation>(st::defaultRippleAnimation, std::move(mask), std::move(update))).first;
|
it = _ripples.emplace(_selected, std::make_unique<Ui::RippleAnimation>(st::defaultRippleAnimation, std::move(mask), std::move(update))).first;
|
||||||
}
|
}
|
||||||
auto ripplePosition = QPoint(cell.x() + (st::calendarCellSize.width() - st::calendarCellInner) / 2, cell.y() + (st::calendarCellSize.height() - st::calendarCellInner) / 2);
|
auto ripplePosition = QPoint(cell.x() + (_st.cellSize.width() - _st.cellInner) / 2, cell.y() + (_st.cellSize.height() - _st.cellInner) / 2);
|
||||||
it->second->add(e->pos() - ripplePosition);
|
it->second->add(e->pos() - ripplePosition);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -403,11 +405,23 @@ void CalendarBox::Inner::setPressed(int pressed) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int CalendarBox::Inner::countHeight() {
|
||||||
|
const auto innerHeight = _st.daysHeight
|
||||||
|
+ _context->rowsCount() * _st.cellSize.height();
|
||||||
|
return _st.padding.top()
|
||||||
|
+ innerHeight
|
||||||
|
+ _st.padding.bottom();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CalendarBox::Inner::setDateChosenCallback(Fn<void(QDate)> callback) {
|
||||||
|
_dateChosenCallback = std::move(callback);
|
||||||
|
}
|
||||||
|
|
||||||
CalendarBox::Inner::~Inner() = default;
|
CalendarBox::Inner::~Inner() = default;
|
||||||
|
|
||||||
class CalendarBox::Title : public TWidget, private base::Subscriber {
|
class CalendarBox::Title : public TWidget, private base::Subscriber {
|
||||||
public:
|
public:
|
||||||
Title(QWidget *parent, Context *context)
|
Title(QWidget *parent, not_null<Context*> context)
|
||||||
: TWidget(parent)
|
: TWidget(parent)
|
||||||
, _context(context) {
|
, _context(context) {
|
||||||
subscribe(_context->month(), [this](QDate date) { monthChanged(date); });
|
subscribe(_context->month(), [this](QDate date) { monthChanged(date); });
|
||||||
|
@ -419,7 +433,7 @@ protected:
|
||||||
private:
|
private:
|
||||||
void monthChanged(QDate month);
|
void monthChanged(QDate month);
|
||||||
|
|
||||||
Context *_context = nullptr;
|
not_null<Context*> _context;
|
||||||
|
|
||||||
QString _text;
|
QString _text;
|
||||||
int _textWidth = 0;
|
int _textWidth = 0;
|
||||||
|
@ -446,8 +460,25 @@ CalendarBox::CalendarBox(
|
||||||
QDate highlighted,
|
QDate highlighted,
|
||||||
Fn<void(QDate date)> callback,
|
Fn<void(QDate date)> callback,
|
||||||
FnMut<void(not_null<CalendarBox*>)> finalize)
|
FnMut<void(not_null<CalendarBox*>)> finalize)
|
||||||
: _context(std::make_unique<Context>(month, highlighted))
|
: CalendarBox(
|
||||||
, _inner(this, _context.get())
|
nullptr,
|
||||||
|
month,
|
||||||
|
highlighted,
|
||||||
|
std::move(callback),
|
||||||
|
std::move(finalize),
|
||||||
|
st::defaultCalendarSizes) {
|
||||||
|
}
|
||||||
|
|
||||||
|
CalendarBox::CalendarBox(
|
||||||
|
QWidget*,
|
||||||
|
QDate month,
|
||||||
|
QDate highlighted,
|
||||||
|
Fn<void(QDate date)> callback,
|
||||||
|
FnMut<void(not_null<CalendarBox*>)> finalize,
|
||||||
|
const style::CalendarSizes &st)
|
||||||
|
: _st(st)
|
||||||
|
, _context(std::make_unique<Context>(month, highlighted))
|
||||||
|
, _inner(this, _context.get(), _st)
|
||||||
, _title(this, _context.get())
|
, _title(this, _context.get())
|
||||||
, _previous(this, st::calendarPrevious)
|
, _previous(this, st::calendarPrevious)
|
||||||
, _next(this, st::calendarNext)
|
, _next(this, st::calendarNext)
|
||||||
|
@ -498,7 +529,7 @@ bool CalendarBox::isNextEnabled() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CalendarBox::monthChanged(QDate month) {
|
void CalendarBox::monthChanged(QDate month) {
|
||||||
setDimensions(st::boxWideWidth, st::calendarTitleHeight + _inner->countHeight());
|
setDimensions(_st.width, st::calendarTitleHeight + _inner->countHeight());
|
||||||
auto previousEnabled = isPreviousEnabled();
|
auto previousEnabled = isPreviousEnabled();
|
||||||
_previous->setIconOverride(previousEnabled ? nullptr : &st::calendarPreviousDisabled);
|
_previous->setIconOverride(previousEnabled ? nullptr : &st::calendarPreviousDisabled);
|
||||||
_previous->setRippleColorOverride(previousEnabled ? nullptr : &st::boxBg);
|
_previous->setRippleColorOverride(previousEnabled ? nullptr : &st::boxBg);
|
||||||
|
|
|
@ -9,6 +9,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
|
|
||||||
#include "abstract_box.h"
|
#include "abstract_box.h"
|
||||||
|
|
||||||
|
namespace style {
|
||||||
|
struct CalendarSizes;
|
||||||
|
} // namespace style
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class IconButton;
|
class IconButton;
|
||||||
} // namespace Ui
|
} // namespace Ui
|
||||||
|
@ -21,6 +25,14 @@ public:
|
||||||
QDate highlighted,
|
QDate highlighted,
|
||||||
Fn<void(QDate date)> callback,
|
Fn<void(QDate date)> callback,
|
||||||
FnMut<void(not_null<CalendarBox*>)> finalize = nullptr);
|
FnMut<void(not_null<CalendarBox*>)> finalize = nullptr);
|
||||||
|
CalendarBox(
|
||||||
|
QWidget*,
|
||||||
|
QDate month,
|
||||||
|
QDate highlighted,
|
||||||
|
Fn<void(QDate date)> callback,
|
||||||
|
FnMut<void(not_null<CalendarBox*>)> finalize,
|
||||||
|
const style::CalendarSizes &st);
|
||||||
|
|
||||||
|
|
||||||
void setMinDate(QDate date);
|
void setMinDate(QDate date);
|
||||||
void setMaxDate(QDate date);
|
void setMaxDate(QDate date);
|
||||||
|
@ -38,6 +50,8 @@ private:
|
||||||
bool isPreviousEnabled() const;
|
bool isPreviousEnabled() const;
|
||||||
bool isNextEnabled() const;
|
bool isNextEnabled() const;
|
||||||
|
|
||||||
|
const style::CalendarSizes &_st;
|
||||||
|
|
||||||
class Context;
|
class Context;
|
||||||
std::unique_ptr<Context> _context;
|
std::unique_ptr<Context> _context;
|
||||||
|
|
||||||
|
|
|
@ -94,3 +94,10 @@ exportTopBarLabel: FlatLabel(defaultFlatLabel) {
|
||||||
linkFg: windowSubTextFg;
|
linkFg: windowSubTextFg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
exportCalendarSizes: CalendarSizes(defaultCalendarSizes) {
|
||||||
|
width: 320px;
|
||||||
|
daysHeight: 32px;
|
||||||
|
cellSize: size(42px, 38px);
|
||||||
|
cellInner: 32px;
|
||||||
|
padding: margins(14px, 15px, 14px, 10px);
|
||||||
|
}
|
||||||
|
|
|
@ -388,7 +388,8 @@ void SettingsWidget::editDateLimit(
|
||||||
month,
|
month,
|
||||||
highlighted,
|
highlighted,
|
||||||
callback,
|
callback,
|
||||||
finalize);
|
finalize,
|
||||||
|
st::exportCalendarSizes);
|
||||||
*shared = make_weak(box.data());
|
*shared = make_weak(box.data());
|
||||||
_showBoxCallback(std::move(box));
|
_showBoxCallback(std::move(box));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue