2019-11-02 20:50:25 +00:00
|
|
|
/*
|
|
|
|
* Squawk messenger.
|
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-02-01 15:56:00 +00:00
|
|
|
#ifndef MODELS_EMAILS_H
|
|
|
|
#define MODELS_EMAILS_H
|
2019-11-02 20:50:25 +00:00
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
#include <QIcon>
|
|
|
|
|
|
|
|
#include <deque>
|
|
|
|
|
2020-04-03 22:28:15 +00:00
|
|
|
#include "shared/vcard.h"
|
2019-11-02 20:50:25 +00:00
|
|
|
|
2023-02-01 15:56:00 +00:00
|
|
|
namespace Models {
|
2019-11-02 20:50:25 +00:00
|
|
|
|
2023-02-01 15:56:00 +00:00
|
|
|
class EMails : public QAbstractTableModel {
|
2019-11-02 20:50:25 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2023-02-01 15:56:00 +00:00
|
|
|
EMails(bool edit = false, QObject *parent = nullptr);
|
2019-11-02 20:50:25 +00:00
|
|
|
|
2023-02-03 18:43:13 +00:00
|
|
|
bool setEditable(bool editable);
|
2019-11-02 20:50:25 +00:00
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
2019-11-17 10:24:12 +00:00
|
|
|
bool isPreferred(quint32 row) const;
|
2019-11-04 15:22:39 +00:00
|
|
|
|
2019-11-17 10:24:12 +00:00
|
|
|
void removeLines(quint32 index, quint32 count);
|
2019-11-04 15:22:39 +00:00
|
|
|
void setEmails(const std::deque<Shared::VCard::Email>& emails);
|
|
|
|
void getEmails(std::deque<Shared::VCard::Email>& emails) const;
|
2019-11-17 10:24:12 +00:00
|
|
|
QString getEmail(quint32 row) const;
|
2019-11-02 20:50:25 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
QModelIndex addNewEmptyLine();
|
2019-11-17 10:24:12 +00:00
|
|
|
void revertPreferred(quint32 row);
|
2019-11-02 20:50:25 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool edit;
|
|
|
|
std::deque<Shared::VCard::Email> deque;
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool dropPrefered();
|
|
|
|
};
|
|
|
|
|
2023-02-01 15:56:00 +00:00
|
|
|
}
|
2019-11-02 20:50:25 +00:00
|
|
|
|
2023-02-01 15:56:00 +00:00
|
|
|
#endif // MODELS_EMAILS_H
|