OSDN Git Service

1ab636bc4e32317bed8f01af3d97a5243f48b966
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / qt-maemo / maemoremotemountsmodel.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #ifndef MAEMOREMOTEMOUNTSMODEL_H
35 #define MAEMOREMOTEMOUNTSMODEL_H
36
37 #include "maemomountspecification.h"
38
39 #include <QtCore/QAbstractTableModel>
40 #include <QtCore/QList>
41 #include <QtCore/QString>
42 #include <QtCore/QVariantMap>
43
44 namespace Qt4ProjectManager {
45 namespace Internal {
46
47 class MaemoRemoteMountsModel : public QAbstractTableModel
48 {
49     Q_OBJECT
50 public:
51     explicit MaemoRemoteMountsModel(QObject *parent = 0);
52     int mountSpecificationCount() const { return m_mountSpecs.count(); }
53     int validMountSpecificationCount() const;
54     MaemoMountSpecification mountSpecificationAt(int pos) const { return m_mountSpecs.at(pos); }
55     bool hasValidMountSpecifications() const;
56     const QList<MaemoMountSpecification> &mountSpecs() const { return m_mountSpecs; }
57
58     void addMountSpecification(const QString &localDir);
59     void removeMountSpecificationAt(int pos);
60     void setLocalDir(int pos, const QString &localDir);
61
62     QVariantMap toMap() const;
63     void fromMap(const QVariantMap &map);
64
65     static const int LocalDirRow = 0;
66     static const int RemoteMountPointRow = 1;
67
68 private:
69     virtual int columnCount(const QModelIndex& = QModelIndex()) const;
70     virtual int rowCount(const QModelIndex& = QModelIndex()) const;
71     virtual Qt::ItemFlags flags(const QModelIndex &index) const;
72     virtual QModelIndex parent(const QModelIndex &child) const;
73     virtual QVariant headerData(int section, Qt::Orientation orientation,
74         int role) const;
75     virtual QVariant data(const QModelIndex &index, int role) const;
76     virtual bool setData(const QModelIndex &index, const QVariant &value,
77         int role);
78
79     QList<MaemoMountSpecification> m_mountSpecs;
80 };
81
82 inline int MaemoRemoteMountsModel::columnCount(const QModelIndex &) const
83 {
84     return 2;
85 }
86
87 inline int MaemoRemoteMountsModel::rowCount(const QModelIndex &parent) const
88 {
89     return parent.isValid() ? 0 : mountSpecificationCount();
90 }
91
92 inline QModelIndex MaemoRemoteMountsModel::parent(const QModelIndex &) const
93 {
94     return QModelIndex();
95 }
96
97 } // namespace Internal
98 } // namespace Qt4ProjectManager
99
100 #endif // MAEMOREMOTEMOUNTSMODEL_H