[65] | 1 | /*! |
---|
| 2 | * \class CTSPModel |
---|
| 3 | * \author Copyright © 2007-2009 Lёppa <contacts[at]oleksii[dot]name> |
---|
| 4 | * \brief This class implements table model for manipulating a task. |
---|
[14] | 5 | * |
---|
| 6 | * $Id: tspmodel.h 65 2009-10-20 19:38:01Z laleppa $ |
---|
| 7 | * $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/src/tspmodel.h $ |
---|
| 8 | * |
---|
[65] | 9 | * <b>TSPSG: TSP Solver and Generator</b> |
---|
| 10 | * |
---|
[14] | 11 | * This file is part of TSPSG. |
---|
| 12 | * |
---|
| 13 | * TSPSG is free software: you can redistribute it and/or modify |
---|
| 14 | * it under the terms of the GNU General Public License as published by |
---|
| 15 | * the Free Software Foundation, either version 3 of the License, or |
---|
| 16 | * (at your option) any later version. |
---|
| 17 | * |
---|
| 18 | * TSPSG is distributed in the hope that it will be useful, |
---|
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 21 | * GNU General Public License for more details. |
---|
| 22 | * |
---|
| 23 | * You should have received a copy of the GNU General Public License |
---|
| 24 | * along with TSPSG. If not, see <http://www.gnu.org/licenses/>. |
---|
| 25 | */ |
---|
| 26 | |
---|
| 27 | #ifndef TSPMODEL_H |
---|
| 28 | #define TSPMODEL_H |
---|
| 29 | |
---|
[31] | 30 | #include "globals.h" |
---|
[14] | 31 | |
---|
| 32 | class CTSPModel: public QAbstractTableModel |
---|
| 33 | { |
---|
| 34 | Q_OBJECT |
---|
[47] | 35 | |
---|
[14] | 36 | public: |
---|
| 37 | CTSPModel(QObject *parent = 0); |
---|
[47] | 38 | void clear(); |
---|
[14] | 39 | int columnCount(const QModelIndex &) const; |
---|
| 40 | QVariant data(const QModelIndex &, int) const; |
---|
| 41 | Qt::ItemFlags flags(const QModelIndex &) const; |
---|
[47] | 42 | QVariant headerData(int, Qt::Orientation, int) const; |
---|
| 43 | bool loadTask(QString); |
---|
[31] | 44 | quint16 numCities() const; |
---|
[47] | 45 | void randomize(); |
---|
| 46 | int rowCount(const QModelIndex &) const; |
---|
| 47 | bool saveTask(QString); |
---|
| 48 | bool setData(const QModelIndex &, const QVariant &, int); |
---|
[14] | 49 | void setNumCities(int); |
---|
[47] | 50 | |
---|
[31] | 51 | signals: |
---|
| 52 | void numCitiesChanged(int); |
---|
[47] | 53 | |
---|
[14] | 54 | private: |
---|
[21] | 55 | QSettings *settings; |
---|
[46] | 56 | QVector<QVector<double> > table; |
---|
[31] | 57 | quint16 nCities; |
---|
[47] | 58 | bool loadError(QDataStream::Status); |
---|
[50] | 59 | bool loadTSPT(QDataStream *); |
---|
[47] | 60 | bool loadZKT(QDataStream *); |
---|
[35] | 61 | int rand(int, int) const; |
---|
[14] | 62 | }; |
---|
| 63 | |
---|
| 64 | #endif // TSPMODEL_H |
---|