mirror of https://github.com/procxx/kepka.git
Added online badges to chats list.
This commit is contained in:
parent
859cfe4cbb
commit
d9426413dd
|
@ -194,6 +194,7 @@ dialogsUnreadBg: windowBgActive; // chat list unread badge background for not mu
|
||||||
dialogsUnreadBgMuted: #bbbbbb; // chat list unread badge background for muted chat
|
dialogsUnreadBgMuted: #bbbbbb; // chat list unread badge background for muted chat
|
||||||
dialogsUnreadFg: windowFgActive; // chat list unread badge text
|
dialogsUnreadFg: windowFgActive; // chat list unread badge text
|
||||||
dialogsArchiveFg: #525252 | dialogsNameFg; // chat list archive name text
|
dialogsArchiveFg: #525252 | dialogsNameFg; // chat list archive name text
|
||||||
|
dialogsOnlineBadgeFg: #4dc920 | dialogsUnreadBg; // chat list online status
|
||||||
|
|
||||||
dialogsBgOver: windowBgOver; // chat list background with mouse over
|
dialogsBgOver: windowBgOver; // chat list background with mouse over
|
||||||
dialogsNameFgOver: windowBoldFgOver; // chat list name text with mouse over
|
dialogsNameFgOver: windowBoldFgOver; // chat list name text with mouse over
|
||||||
|
@ -225,6 +226,7 @@ dialogsSentIconFgActive: dialogsTextFgActive; // chat list sent message tick / d
|
||||||
dialogsUnreadBgActive: dialogsTextFgActive; // chat list unread badge background for not muted chat for current (active) chat
|
dialogsUnreadBgActive: dialogsTextFgActive; // chat list unread badge background for not muted chat for current (active) chat
|
||||||
dialogsUnreadBgMutedActive: dialogsDraftFgActive; // chat list unread badge background for muted chat for current (active) chat
|
dialogsUnreadBgMutedActive: dialogsDraftFgActive; // chat list unread badge background for muted chat for current (active) chat
|
||||||
dialogsUnreadFgActive: dialogsBgActive; // chat list unread badge text for current (active) chat
|
dialogsUnreadFgActive: dialogsBgActive; // chat list unread badge text for current (active) chat
|
||||||
|
dialogsOnlineBadgeFgActive: #ffffff; // chat list online status for current (active) chat
|
||||||
|
|
||||||
dialogsRippleBg: windowBgRipple; // chat list background ripple effect
|
dialogsRippleBg: windowBgRipple; // chat list background ripple effect
|
||||||
dialogsRippleBgActive: activeButtonBgRipple; // chat list background ripple effect for current (active) chat
|
dialogsRippleBgActive: activeButtonBgRipple; // chat list background ripple effect for current (active) chat
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -34,6 +34,10 @@ dialogsPhotoSize: 46px;
|
||||||
dialogsPhotoPadding: 12px;
|
dialogsPhotoPadding: 12px;
|
||||||
dialogsPadding: point(10px, 8px);
|
dialogsPadding: point(10px, 8px);
|
||||||
|
|
||||||
|
dialogsOnlineBadgeSizePadding: 4px;
|
||||||
|
dialogsOnlineBadgeSize: 8px;
|
||||||
|
dialogsOnlineBadgeRightSkip: 2px;
|
||||||
|
|
||||||
dialogsImportantBarHeight: 37px;
|
dialogsImportantBarHeight: 37px;
|
||||||
|
|
||||||
dialogsSkip: 8px;
|
dialogsSkip: 8px;
|
||||||
|
|
|
@ -177,6 +177,34 @@ InnerWidget::InnerWidget(
|
||||||
UpdateRowSection::Default | UpdateRowSection::Filtered);
|
UpdateRowSection::Default | UpdateRowSection::Filtered);
|
||||||
}, lifetime());
|
}, lifetime());
|
||||||
|
|
||||||
|
const auto handleUserOnline = [=](const Notify::PeerUpdate &peerUpdate) {
|
||||||
|
if (peerUpdate.peer->isSelf()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const auto circleSize = st::dialogsOnlineBadgeSize
|
||||||
|
+ st::dialogsOnlineBadgeSizePadding;
|
||||||
|
const auto updateRect = QRect(
|
||||||
|
st::dialogsPadding.x()
|
||||||
|
+ st::dialogsPhotoSize
|
||||||
|
- st::dialogsOnlineBadgeRightSkip
|
||||||
|
- circleSize,
|
||||||
|
st::dialogsPadding.y()
|
||||||
|
+ st::dialogsPhotoSize
|
||||||
|
- circleSize,
|
||||||
|
circleSize,
|
||||||
|
circleSize);
|
||||||
|
updateDialogRow(
|
||||||
|
RowDescriptor(
|
||||||
|
session().data().history(peerUpdate.peer->id),
|
||||||
|
FullMsgId()),
|
||||||
|
updateRect,
|
||||||
|
UpdateRowSection::Default | UpdateRowSection::Filtered);
|
||||||
|
};
|
||||||
|
|
||||||
|
subscribe(Notify::PeerUpdated(), Notify::PeerUpdatedHandler(
|
||||||
|
Notify::PeerUpdate::Flag::UserOnlineChanged,
|
||||||
|
handleUserOnline));
|
||||||
|
|
||||||
session().data().chatsListChanges(
|
session().data().chatsListChanges(
|
||||||
) | rpl::filter([=](Data::Folder *folder) {
|
) | rpl::filter([=](Data::Folder *folder) {
|
||||||
return (folder == _openedFolder);
|
return (folder == _openedFolder);
|
||||||
|
|
|
@ -12,6 +12,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "data/data_session.h"
|
#include "data/data_session.h"
|
||||||
#include "dialogs/dialogs_list.h"
|
#include "dialogs/dialogs_list.h"
|
||||||
#include "styles/style_dialogs.h"
|
#include "styles/style_dialogs.h"
|
||||||
|
#include "styles/style_window.h"
|
||||||
#include "storage/localstorage.h"
|
#include "storage/localstorage.h"
|
||||||
#include "ui/empty_userpic.h"
|
#include "ui/empty_userpic.h"
|
||||||
#include "ui/text_options.h"
|
#include "ui/text_options.h"
|
||||||
|
@ -23,6 +24,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "data/data_channel.h"
|
#include "data/data_channel.h"
|
||||||
#include "data/data_user.h"
|
#include "data/data_user.h"
|
||||||
#include "data/data_folder.h"
|
#include "data/data_folder.h"
|
||||||
|
#include "data/data_peer_values.h"
|
||||||
|
|
||||||
namespace Dialogs {
|
namespace Dialogs {
|
||||||
namespace Layout {
|
namespace Layout {
|
||||||
|
@ -202,6 +204,7 @@ enum class Flag {
|
||||||
Selected = 0x02,
|
Selected = 0x02,
|
||||||
SearchResult = 0x04,
|
SearchResult = 0x04,
|
||||||
SavedMessages = 0x08,
|
SavedMessages = 0x08,
|
||||||
|
UserOnline = 0x10,
|
||||||
//FeedSearchResult = 0x10, // #feed
|
//FeedSearchResult = 0x10, // #feed
|
||||||
};
|
};
|
||||||
inline constexpr bool is_flag_type(Flag) { return true; }
|
inline constexpr bool is_flag_type(Flag) { return true; }
|
||||||
|
@ -249,12 +252,57 @@ void paintRow(
|
||||||
fullWidth,
|
fullWidth,
|
||||||
st::dialogsPhotoSize);
|
st::dialogsPhotoSize);
|
||||||
} else if (from) {
|
} else if (from) {
|
||||||
from->paintUserpicLeft(
|
if (flags & Flag::UserOnline) {
|
||||||
p,
|
auto frame = QImage(
|
||||||
st::dialogsPadding.x(),
|
st::dialogsPhotoSize * cRetinaFactor(),
|
||||||
st::dialogsPadding.y(),
|
st::dialogsPhotoSize * cRetinaFactor(),
|
||||||
fullWidth,
|
QImage::Format_ARGB32_Premultiplied);
|
||||||
st::dialogsPhotoSize);
|
frame.setDevicePixelRatio(cRetinaFactor());
|
||||||
|
frame.fill(Qt::transparent);
|
||||||
|
{
|
||||||
|
const auto size = st::dialogsOnlineBadgeSize;
|
||||||
|
const auto paddingSize = st::dialogsOnlineBadgeSizePadding;
|
||||||
|
const auto circleSize = size + paddingSize;
|
||||||
|
const auto offset = size + paddingSize / 2;
|
||||||
|
const auto x = st::dialogsPadding.x() + st::dialogsPhotoSize - st::dialogsOnlineBadgeRightSkip - size;
|
||||||
|
const auto y = st::dialogsPadding.y() + st::dialogsPhotoSize - size;
|
||||||
|
|
||||||
|
Painter q(&frame);
|
||||||
|
PainterHighQualityEnabler hq(q);
|
||||||
|
from->paintUserpicLeft(
|
||||||
|
q,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
fullWidth,
|
||||||
|
st::dialogsPhotoSize);
|
||||||
|
q.setPen(Qt::NoPen);
|
||||||
|
q.setBrush(Qt::transparent);
|
||||||
|
q.setCompositionMode(QPainter::CompositionMode_SourceOut);
|
||||||
|
q.drawEllipse(
|
||||||
|
x - circleSize,
|
||||||
|
y - circleSize,
|
||||||
|
circleSize,
|
||||||
|
circleSize);
|
||||||
|
|
||||||
|
q.setBrush(active
|
||||||
|
? st::dialogsOnlineBadgeFgActive
|
||||||
|
: st::dialogsOnlineBadgeFg);
|
||||||
|
q.setCompositionMode(QPainter::CompositionMode_Source);
|
||||||
|
q.drawEllipse(
|
||||||
|
x - offset,
|
||||||
|
y - offset,
|
||||||
|
size,
|
||||||
|
size);
|
||||||
|
}
|
||||||
|
p.drawImage(st::dialogsPadding, frame);
|
||||||
|
} else {
|
||||||
|
from->paintUserpicLeft(
|
||||||
|
p,
|
||||||
|
st::dialogsPadding.x(),
|
||||||
|
st::dialogsPadding.y(),
|
||||||
|
fullWidth,
|
||||||
|
st::dialogsPhotoSize);
|
||||||
|
}
|
||||||
} else if (hiddenSenderInfo) {
|
} else if (hiddenSenderInfo) {
|
||||||
hiddenSenderInfo->userpic.paint(
|
hiddenSenderInfo->userpic.paint(
|
||||||
p,
|
p,
|
||||||
|
@ -648,8 +696,14 @@ void RowPainter::paint(
|
||||||
? history->peer->migrateTo()
|
? history->peer->migrateTo()
|
||||||
: history->peer.get())
|
: history->peer.get())
|
||||||
: nullptr;
|
: nullptr;
|
||||||
|
const auto showUserOnline = peer
|
||||||
|
&& peer->isUser()
|
||||||
|
&& Data::OnlineTextActive(peer->asUser(), unixtime())
|
||||||
|
&& !(fullWidth < st::columnMinimalWidthLeft
|
||||||
|
&& (displayUnreadCounter || displayUnreadMark));
|
||||||
const auto flags = (active ? Flag::Active : Flag(0))
|
const auto flags = (active ? Flag::Active : Flag(0))
|
||||||
| (selected ? Flag::Selected : Flag(0))
|
| (selected ? Flag::Selected : Flag(0))
|
||||||
|
| (showUserOnline ? Flag::UserOnline : Flag(0))
|
||||||
| (peer && peer->isSelf() ? Flag::SavedMessages : Flag(0));
|
| (peer && peer->isSelf() ? Flag::SavedMessages : Flag(0));
|
||||||
const auto paintItemCallback = [&](int nameleft, int namewidth) {
|
const auto paintItemCallback = [&](int nameleft, int namewidth) {
|
||||||
const auto texttop = st::dialogsPadding.y()
|
const auto texttop = st::dialogsPadding.y()
|
||||||
|
|
Loading…
Reference in New Issue