diff options
Diffstat (limited to 'src/gui/addresstablemodel.h')
-rw-r--r-- | src/gui/addresstablemodel.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/gui/addresstablemodel.h b/src/gui/addresstablemodel.h new file mode 100644 index 0000000..847ee05 --- /dev/null +++ b/src/gui/addresstablemodel.h @@ -0,0 +1,46 @@ +/* + Copyright (C) 2015 Lubos Dolezel <lubos@dolezel.info> + + 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 2 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, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +*/ + +#ifndef _ADDRESSTABLEMODEL_H +#define _ADDRESSTABLEMODEL_H + +#include "address_book.h" +#include <QAbstractTableModel> +#include <QList> + +class AddressTableModel : public QAbstractTableModel +{ +private: + QList<t_address_card> m_data; + +public: + AddressTableModel(QObject *parent, const list<t_address_card>& data); + virtual int rowCount(const QModelIndex &parent) const; + virtual int columnCount(const QModelIndex &parent) const; + virtual QVariant data(const QModelIndex &index, int role) const; + virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const; + + void appendAddress(const t_address_card& card); + void removeAddress(int index); + void modifyAddress(int index, const t_address_card& card); + + t_address_card getAddress(int index) { return m_data[index]; } +}; + + +#endif |