/* * Squawk messenger. * Copyright (C) 2019 Yury Gubich * * This program 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. * * This program 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef VCARD_H #define VCARD_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "global.h" #include "emailsmodel.h" #include "phonesmodel.h" #include "ui/utils/progress.h" #include "ui/utils/comboboxdelegate.h" namespace Ui { class VCard; } /** * @todo write docs */ class VCard : public QWidget { Q_OBJECT public: VCard(const QString& jid, bool edit = false, QWidget* parent = nullptr); ~VCard(); void setVCard(const Shared::VCard& card); void setVCard(const QString& jid, const Shared::VCard& card); QString getJid() const; void showProgress(const QString& = ""); void hideProgress(); signals: void saveVCard(const Shared::VCard& card); private slots: void onButtonBoxAccepted(); void onClearAvatar(); void onSetAvatar(); void onAvatarSelected(); void onAddAddress(); void onRemoveAddress(); void onAddEmail(); void onCopyEmail(); void onRemoveEmail(); void onAddPhone(); void onCopyPhone(); void onRemovePhone(); void onContextMenu(const QPoint& point); private: QScopedPointer m_ui; QSize avatarButtonMargins; QMenu* avatarMenu; bool editable; Shared::Avatar currentAvatarType; QString currentAvatarPath; Progress* progress; QLabel* progressLabel; QWidget* overlay; QMenu* contextMenu; UI::VCard::EMailsModel emails; UI::VCard::PhonesModel phones; ComboboxDelegate* roleDelegate; ComboboxDelegate* phoneTypeDelegate; static const std::set supportedTypes; private: void updateAvatar(); }; #endif // VCARD_H