94 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
This file is part of Telegram Desktop,
 | 
						|
the official desktop application for the Telegram messaging service.
 | 
						|
 | 
						|
For license and copyright information please follow this link:
 | 
						|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "base/timer.h"
 | 
						|
#include "data/data_lastseen_status.h"
 | 
						|
#include "profile/profile_block_peer_list.h"
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class FlatLabel;
 | 
						|
} // namespace Ui
 | 
						|
 | 
						|
namespace Data {
 | 
						|
struct PeerUpdate;
 | 
						|
} // namespace Data
 | 
						|
 | 
						|
namespace Window {
 | 
						|
class SessionController;
 | 
						|
} // namespace Window
 | 
						|
 | 
						|
namespace Profile {
 | 
						|
 | 
						|
class GroupMembersWidget : public PeerListWidget {
 | 
						|
 | 
						|
public:
 | 
						|
	GroupMembersWidget(
 | 
						|
		QWidget *parent,
 | 
						|
		not_null<Window::SessionController*> controller,
 | 
						|
		not_null<PeerData*> peer,
 | 
						|
		const style::PeerListItem &st);
 | 
						|
 | 
						|
	int onlineCount() const {
 | 
						|
		return _onlineCount;
 | 
						|
	}
 | 
						|
 | 
						|
	~GroupMembersWidget();
 | 
						|
 | 
						|
private:
 | 
						|
	void updateOnlineDisplay();
 | 
						|
 | 
						|
	// Observed notifications.
 | 
						|
	void notifyPeerUpdated(const Data::PeerUpdate &update);
 | 
						|
 | 
						|
	void removePeer(PeerData *selectedPeer);
 | 
						|
	void refreshMembers();
 | 
						|
	void fillChatMembers(not_null<ChatData*> chat);
 | 
						|
	void fillMegagroupMembers(not_null<ChannelData*> megagroup);
 | 
						|
	void sortMembers();
 | 
						|
	void updateOnlineCount();
 | 
						|
	void checkSelfAdmin(not_null<ChatData*> chat);
 | 
						|
	void preloadMore();
 | 
						|
 | 
						|
	void refreshUserOnline(UserData *user);
 | 
						|
 | 
						|
	struct Member : public Item {
 | 
						|
		explicit Member(not_null<UserData*> user);
 | 
						|
		not_null<UserData*> user() const;
 | 
						|
 | 
						|
		TimeId onlineTextTill = 0;
 | 
						|
		Data::LastseenStatus lastseen;
 | 
						|
		TimeId onlineForSort = 0;
 | 
						|
	};
 | 
						|
	Member *getMember(Item *item) {
 | 
						|
		return static_cast<Member*>(item);
 | 
						|
	}
 | 
						|
 | 
						|
	void updateItemStatusText(Item *item);
 | 
						|
	not_null<Member*> computeMember(not_null<UserData*> user);
 | 
						|
	not_null<Member*> addUser(not_null<ChatData*> chat, not_null<UserData*> user);
 | 
						|
	not_null<Member*> addUser(not_null<ChannelData*> megagroup, not_null<UserData*> user);
 | 
						|
	void setItemFlags(not_null<Item*> item, not_null<ChatData*> chat);
 | 
						|
	void setItemFlags(
 | 
						|
		not_null<Item*> item,
 | 
						|
		not_null<ChannelData*> megagroup);
 | 
						|
	bool addUsersToEnd(not_null<ChannelData*> megagroup);
 | 
						|
 | 
						|
	const not_null<Window::SessionController*> _controller;
 | 
						|
 | 
						|
	base::flat_map<UserData*, Member*> _membersByUser;
 | 
						|
	bool _sortByOnline = false;
 | 
						|
	TimeId _now = 0;
 | 
						|
 | 
						|
	int _onlineCount = 0;
 | 
						|
	TimeId _updateOnlineAt = 0;
 | 
						|
	base::Timer _updateOnlineTimer;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
} // namespace Profile
 |