2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2014-12-01 10:47:38 +00:00
|
|
|
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
#include "abstractbox.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
class ContactsInner : public QWidget, public RPCSender {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
struct ContactData;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
public:
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
ContactsInner(bool creatingChat);
|
|
|
|
ContactsInner(ChatData *chat);
|
2015-06-15 17:19:24 +00:00
|
|
|
ContactsInner(UserData *bot);
|
2015-04-02 10:33:19 +00:00
|
|
|
void init();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void enterEvent(QEvent *e);
|
|
|
|
void leaveEvent(QEvent *e);
|
|
|
|
void mouseMoveEvent(QMouseEvent *e);
|
|
|
|
void mousePressEvent(QMouseEvent *e);
|
2014-11-25 12:15:29 +00:00
|
|
|
void resizeEvent(QResizeEvent *e);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-06-15 17:19:24 +00:00
|
|
|
void paintDialog(QPainter &p, PeerData *peer, ContactData *data, bool sel);
|
2014-05-30 08:53:19 +00:00
|
|
|
void updateFilter(QString filter = QString());
|
|
|
|
|
|
|
|
void selectSkip(int32 dir);
|
|
|
|
void selectSkipPage(int32 h, int32 dir);
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
QVector<UserData*> selected();
|
|
|
|
QVector<MTPInputUser> selectedInputs();
|
|
|
|
PeerData *selectedUser();
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void loadProfilePhotos(int32 yFrom);
|
2015-04-02 10:33:19 +00:00
|
|
|
void chooseParticipant();
|
|
|
|
void changeCheckState(DialogRow *row);
|
|
|
|
void changeCheckState(ContactData *data);
|
|
|
|
|
|
|
|
void peopleReceived(const QString &query, const QVector<MTPContactFound> &people);
|
|
|
|
|
|
|
|
void refresh();
|
|
|
|
|
|
|
|
ChatData *chat() const;
|
2015-06-15 17:19:24 +00:00
|
|
|
UserData *bot() const;
|
2015-04-02 10:33:19 +00:00
|
|
|
bool creatingChat() const;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
~ContactsInner();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
void mustScrollTo(int ymin, int ymax);
|
2015-04-02 10:33:19 +00:00
|
|
|
void selectAllQuery();
|
|
|
|
void searchByUsername();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onDialogRowReplaced(DialogRow *oldRow, DialogRow *newRow);
|
|
|
|
|
|
|
|
void updateSel();
|
|
|
|
void peerUpdated(PeerData *peer);
|
2015-06-15 17:19:24 +00:00
|
|
|
void onPeerNameChanged(PeerData *peer, const PeerData::Names &oldNames, const PeerData::NameFirstChars &oldChars);
|
|
|
|
|
|
|
|
void onAddBot();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
ChatData *_chat;
|
2015-06-15 17:19:24 +00:00
|
|
|
UserData *_bot;
|
2015-04-02 10:33:19 +00:00
|
|
|
bool _creatingChat;
|
2015-06-15 17:19:24 +00:00
|
|
|
|
|
|
|
ChatData *_addToChat;
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
int32 _time;
|
|
|
|
|
|
|
|
DialogsIndexed *_contacts;
|
|
|
|
DialogRow *_sel;
|
|
|
|
QString _filter;
|
|
|
|
typedef QVector<DialogRow*> FilteredDialogs;
|
|
|
|
FilteredDialogs _filtered;
|
|
|
|
int32 _filteredSel;
|
|
|
|
bool _mouseSel;
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
int32 _selCount;
|
|
|
|
|
|
|
|
struct ContactData {
|
2014-05-30 08:53:19 +00:00
|
|
|
Text name;
|
|
|
|
QString online;
|
2015-04-02 10:33:19 +00:00
|
|
|
bool inchat;
|
|
|
|
bool check;
|
|
|
|
};
|
2015-06-15 17:19:24 +00:00
|
|
|
typedef QMap<PeerData*, ContactData*> ContactsData;
|
2014-05-30 08:53:19 +00:00
|
|
|
ContactsData _contactsData;
|
|
|
|
|
|
|
|
ContactData *contactData(DialogRow *row);
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
bool _searching;
|
|
|
|
QString _lastQuery;
|
|
|
|
typedef QVector<UserData*> ByUsernameRows;
|
|
|
|
typedef QVector<ContactData*> ByUsernameDatas;
|
|
|
|
ByUsernameRows _byUsername, _byUsernameFiltered;
|
|
|
|
ByUsernameDatas d_byUsername, d_byUsernameFiltered; // filtered is partly subset of d_byUsername, partly subset of _byUsernameDatas
|
|
|
|
ByUsernameDatas _byUsernameDatas;
|
|
|
|
int32 _byUsernameSel;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
QPoint _lastMousePos;
|
2014-11-25 12:15:29 +00:00
|
|
|
LinkButton _addContactLnk;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
class ContactsBox : public ItemListBox, public RPCSender {
|
2014-05-30 08:53:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
ContactsBox(bool creatingChat = false);
|
|
|
|
ContactsBox(ChatData *chat);
|
2015-06-15 17:19:24 +00:00
|
|
|
ContactsBox(UserData *bot);
|
2014-05-30 08:53:19 +00:00
|
|
|
void keyPressEvent(QKeyEvent *e);
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onFilterUpdate();
|
|
|
|
void onScroll();
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void onAdd();
|
2015-04-02 10:33:19 +00:00
|
|
|
void onInvite();
|
|
|
|
void onNext();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
bool onSearchByUsername(bool searchCache = false);
|
|
|
|
void onNeedSearchByUsername();
|
|
|
|
|
|
|
|
protected:
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
void hideAll();
|
|
|
|
void showAll();
|
2015-04-02 10:33:19 +00:00
|
|
|
void showDone();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
void init();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
ContactsInner _inner;
|
|
|
|
FlatButton _addContact;
|
|
|
|
FlatInput _filter;
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
FlatButton _next, _cancel;
|
|
|
|
|
|
|
|
void peopleReceived(const MTPcontacts_Found &result, mtpRequestId req);
|
|
|
|
bool peopleFailed(const RPCError &error, mtpRequestId req);
|
|
|
|
|
|
|
|
QTimer _searchTimer;
|
|
|
|
QString _peopleQuery;
|
|
|
|
bool _peopleFull;
|
|
|
|
mtpRequestId _peopleRequest;
|
|
|
|
|
|
|
|
typedef QMap<QString, MTPcontacts_Found> PeopleCache;
|
|
|
|
PeopleCache _peopleCache;
|
|
|
|
|
|
|
|
typedef QMap<mtpRequestId, QString> PeopleQueries;
|
|
|
|
PeopleQueries _peopleQueries;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CreateGroupBox : public AbstractBox, public RPCSender {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
CreateGroupBox(const MTPVector<MTPInputUser> &users);
|
|
|
|
void keyPressEvent(QKeyEvent *e);
|
|
|
|
void paintEvent(QPaintEvent *e);
|
|
|
|
void resizeEvent(QResizeEvent *e);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onCreate();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void hideAll();
|
|
|
|
void showAll();
|
|
|
|
void showDone();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void created(const MTPUpdates &updates);
|
|
|
|
bool failed(const RPCError &e);
|
|
|
|
|
|
|
|
MTPVector<MTPInputUser> _users;
|
|
|
|
|
|
|
|
int32 _createRequestId;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
FlatInput _name;
|
|
|
|
FlatButton _create, _cancel;
|
2014-05-30 08:53:19 +00:00
|
|
|
};
|