Add edit filter link to empty dialogs list.

This commit is contained in:
John Preston 2020-03-25 16:27:24 +04:00
parent 9ba3b11c96
commit fe73251d8e
2 changed files with 16 additions and 0 deletions

View File

@ -44,6 +44,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "ui/widgets/multi_select.h" #include "ui/widgets/multi_select.h"
#include "ui/empty_userpic.h" #include "ui/empty_userpic.h"
#include "ui/unread_badge.h" #include "ui/unread_badge.h"
#include "boxes/filters/edit_filter_box.h"
#include "api/api_chat_filters.h" #include "api/api_chat_filters.h"
#include "facades.h" #include "facades.h"
#include "styles/style_dialogs.h" #include "styles/style_dialogs.h"
@ -115,6 +116,7 @@ InnerWidget::InnerWidget(
return pinnedShiftAnimationCallback(now); return pinnedShiftAnimationCallback(now);
}) })
, _addContactLnk(this, tr::lng_add_contact_button(tr::now)) , _addContactLnk(this, tr::lng_add_contact_button(tr::now))
, _editFilterLnk(this, tr::lng_filters_context_edit(tr::now))
, _cancelSearchInChat(this, st::dialogsCancelSearchInPeer) , _cancelSearchInChat(this, st::dialogsCancelSearchInPeer)
, _cancelSearchFromUser(this, st::dialogsCancelSearchInPeer) { , _cancelSearchFromUser(this, st::dialogsCancelSearchInPeer) {
@ -123,6 +125,7 @@ InnerWidget::InnerWidget(
#endif // OS_MAC_OLD #endif // OS_MAC_OLD
_addContactLnk->addClickHandler([] { App::wnd()->onShowAddContact(); }); _addContactLnk->addClickHandler([] { App::wnd()->onShowAddContact(); });
_editFilterLnk->addClickHandler([=] { editOpenedFilter(); });
_cancelSearchInChat->setClickedCallback([=] { cancelSearchInChat(); }); _cancelSearchInChat->setClickedCallback([=] { cancelSearchInChat(); });
_cancelSearchInChat->hide(); _cancelSearchInChat->hide();
_cancelSearchFromUser->setClickedCallback([=] { _cancelSearchFromUser->setClickedCallback([=] {
@ -1407,6 +1410,7 @@ void InnerWidget::setSearchedPressed(int pressed) {
void InnerWidget::resizeEvent(QResizeEvent *e) { void InnerWidget::resizeEvent(QResizeEvent *e) {
_addContactLnk->move((width() - _addContactLnk->width()) / 2, (st::noContactsHeight + st::noContactsFont->height) / 2); _addContactLnk->move((width() - _addContactLnk->width()) / 2, (st::noContactsHeight + st::noContactsFont->height) / 2);
_editFilterLnk->move((width() - _editFilterLnk->width()) / 2, (st::noContactsHeight + st::noContactsFont->height) / 2);
const auto widthForCancelButton = qMax(width(), st::columnMinimalWidthLeft); const auto widthForCancelButton = qMax(width(), st::columnMinimalWidthLeft);
const auto left = widthForCancelButton - st::dialogsSearchInSkip - _cancelSearchInChat->width(); const auto left = widthForCancelButton - st::dialogsSearchInSkip - _cancelSearchInChat->width();
const auto top = (st::dialogsSearchInHeight - st::dialogsCancelSearchInPeer.height) / 2; const auto top = (st::dialogsSearchInHeight - st::dialogsCancelSearchInPeer.height) / 2;
@ -2185,6 +2189,12 @@ bool InnerWidget::needCollapsedRowsRefresh() const {
: (collapsedHasArchive || _skipTopDialogs != 0); : (collapsedHasArchive || _skipTopDialogs != 0);
} }
void InnerWidget::editOpenedFilter() {
if (_filterId > 0) {
EditExistingFilter(_controller, _filterId);
}
}
void InnerWidget::refresh(bool toTop) { void InnerWidget::refresh(bool toTop) {
if (needCollapsedRowsRefresh()) { if (needCollapsedRowsRefresh()) {
return refreshWithCollapsedRows(toTop); return refreshWithCollapsedRows(toTop);
@ -2194,6 +2204,10 @@ void InnerWidget::refresh(bool toTop) {
&& (_state == WidgetState::Default) && (_state == WidgetState::Default)
&& list->empty() && list->empty()
&& session().data().contactsLoaded().current()); && session().data().contactsLoaded().current());
_editFilterLnk->setVisible((_filterId > 0)
&& (_state == WidgetState::Default)
&& list->empty()
&& session().data().chatsList()->loaded());
auto h = 0; auto h = 0;
if (_state == WidgetState::Default) { if (_state == WidgetState::Default) {
if (list->empty()) { if (list->empty()) {

View File

@ -172,6 +172,7 @@ private:
void dialogRowReplaced(Row *oldRow, Row *newRow); void dialogRowReplaced(Row *oldRow, Row *newRow);
void editOpenedFilter();
void repaintCollapsedFolderRow(not_null<Data::Folder*> folder); void repaintCollapsedFolderRow(not_null<Data::Folder*> folder);
void refreshWithCollapsedRows(bool toTop = false); void refreshWithCollapsedRows(bool toTop = false);
bool needCollapsedRowsRefresh() const; bool needCollapsedRowsRefresh() const;
@ -376,6 +377,7 @@ private:
WidgetState _state = WidgetState::Default; WidgetState _state = WidgetState::Default;
object_ptr<Ui::LinkButton> _addContactLnk; object_ptr<Ui::LinkButton> _addContactLnk;
object_ptr<Ui::LinkButton> _editFilterLnk;
object_ptr<Ui::IconButton> _cancelSearchInChat; object_ptr<Ui::IconButton> _cancelSearchInChat;
object_ptr<Ui::IconButton> _cancelSearchFromUser; object_ptr<Ui::IconButton> _cancelSearchFromUser;