Show different filter icons.
After Width: | Height: | Size: 684 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 615 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 897 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 633 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 757 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 553 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 521 B |
After Width: | Height: | Size: 913 B |
After Width: | Height: | Size: 1.5 KiB |
|
@ -276,6 +276,22 @@ windowFiltersUnmuted: SideBarButton(windowFiltersButton) {
|
||||||
icon: icon {{ "filters_unmuted", sideBarIconFg }};
|
icon: icon {{ "filters_unmuted", sideBarIconFg }};
|
||||||
iconActive: icon {{ "filters_unmuted_active", sideBarIconFgActive }};
|
iconActive: icon {{ "filters_unmuted_active", sideBarIconFgActive }};
|
||||||
}
|
}
|
||||||
|
windowFiltersBots: SideBarButton(windowFiltersButton) {
|
||||||
|
icon: icon {{ "filters_bots", sideBarIconFg }};
|
||||||
|
iconActive: icon {{ "filters_bots_active", sideBarIconFgActive }};
|
||||||
|
}
|
||||||
|
windowFiltersChannels: SideBarButton(windowFiltersButton) {
|
||||||
|
icon: icon {{ "filters_channels", sideBarIconFg }};
|
||||||
|
iconActive: icon {{ "filters_channels_active", sideBarIconFgActive }};
|
||||||
|
}
|
||||||
|
windowFiltersGroups: SideBarButton(windowFiltersButton) {
|
||||||
|
icon: icon {{ "filters_groups", sideBarIconFg }};
|
||||||
|
iconActive: icon {{ "filters_groups_active", sideBarIconFgActive }};
|
||||||
|
}
|
||||||
|
windowFiltersPrivate: SideBarButton(windowFiltersButton) {
|
||||||
|
icon: icon {{ "filters_private", sideBarIconFg }};
|
||||||
|
iconActive: icon {{ "filters_private_active", sideBarIconFgActive }};
|
||||||
|
}
|
||||||
windowFiltersCustom: SideBarButton(windowFiltersButton) {
|
windowFiltersCustom: SideBarButton(windowFiltersButton) {
|
||||||
icon: icon {{ "filters_custom", sideBarIconFg }};
|
icon: icon {{ "filters_custom", sideBarIconFg }};
|
||||||
iconActive: icon {{ "filters_custom_active", sideBarIconFgActive }};
|
iconActive: icon {{ "filters_custom_active", sideBarIconFgActive }};
|
||||||
|
|
|
@ -24,6 +24,10 @@ namespace {
|
||||||
enum class Type {
|
enum class Type {
|
||||||
Unread,
|
Unread,
|
||||||
Unmuted,
|
Unmuted,
|
||||||
|
People,
|
||||||
|
Groups,
|
||||||
|
Channels,
|
||||||
|
Bots,
|
||||||
Custom,
|
Custom,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -35,12 +39,26 @@ enum class Type {
|
||||||
| Flag::Groups
|
| Flag::Groups
|
||||||
| Flag::Broadcasts
|
| Flag::Broadcasts
|
||||||
| Flag::Bots;
|
| Flag::Bots;
|
||||||
|
const auto removed = Flag::NoRead | Flag::NoMuted;
|
||||||
|
const auto people = Flag::Contacts | Flag::NonContacts;
|
||||||
const auto allNoArchive = all | Flag::NoArchive;
|
const auto allNoArchive = all | Flag::NoArchive;
|
||||||
if (!filter.always().empty() || !filter.never().empty()) {
|
if (!filter.always().empty()
|
||||||
|
|| !filter.never().empty()
|
||||||
|
|| !(filter.flags() & all)) {
|
||||||
return Type::Custom;
|
return Type::Custom;
|
||||||
} else if (filter.flags() == (all | Flag::NoRead)) {
|
} else if ((filter.flags() & all) == Flag::Contacts
|
||||||
|
|| (filter.flags() & all) == Flag::NonContacts
|
||||||
|
|| (filter.flags() & all) == people) {
|
||||||
|
return Type::People;
|
||||||
|
} else if ((filter.flags() & all) == Flag::Groups) {
|
||||||
|
return Type::Groups;
|
||||||
|
} else if ((filter.flags() & all) == Flag::Broadcasts) {
|
||||||
|
return Type::Channels;
|
||||||
|
} else if ((filter.flags() & all) == Flag::Bots) {
|
||||||
|
return Type::Bots;
|
||||||
|
} else if ((filter.flags() & removed) == Flag::NoRead) {
|
||||||
return Type::Unread;
|
return Type::Unread;
|
||||||
} else if (filter.flags() == (all | Flag::NoMuted)) {
|
} else if ((filter.flags() & removed) == Flag::NoMuted) {
|
||||||
return Type::Unmuted;
|
return Type::Unmuted;
|
||||||
}
|
}
|
||||||
return Type::Custom;
|
return Type::Custom;
|
||||||
|
@ -50,6 +68,10 @@ enum class Type {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case Type::Unread: return st::windowFiltersUnread;
|
case Type::Unread: return st::windowFiltersUnread;
|
||||||
case Type::Unmuted: return st::windowFiltersUnmuted;
|
case Type::Unmuted: return st::windowFiltersUnmuted;
|
||||||
|
case Type::People: return st::windowFiltersPrivate;
|
||||||
|
case Type::Groups: return st::windowFiltersGroups;
|
||||||
|
case Type::Channels: return st::windowFiltersChannels;
|
||||||
|
case Type::Bots: return st::windowFiltersBots;
|
||||||
case Type::Custom: return st::windowFiltersCustom;
|
case Type::Custom: return st::windowFiltersCustom;
|
||||||
}
|
}
|
||||||
Unexpected("Filter type in FiltersMenu::refresh.");
|
Unexpected("Filter type in FiltersMenu::refresh.");
|
||||||
|
|