summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Studio/Palettes/Slide/SlideModel.h
blob: da44c1c76dcb4ca18aabcf257de23f4660272661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt 3D Studio.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

#ifndef SLIDEMODEL_H
#define SLIDEMODEL_H

#include <QtCore/qabstractitemmodel.h>
#include <QtCore/qhash.h>

#include "Qt3DSDMHandles.h"

class CClientDataModelBridge;
class CDoc;

class SlideModel : public QAbstractListModel
{
    Q_OBJECT
public:
    enum Roles {
        NameRole = Qt::DisplayRole,
        HandleRole = Qt::UserRole + 1,
        SelectedRole
    };

    SlideModel(int slideCount, QObject *parent = nullptr);

    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
    bool setData(const QModelIndex &index, const QVariant &value,
                 int role = Qt::DisplayRole) override;

    int rowCount(const QModelIndex &parent = QModelIndex()) const override;
    QHash<int, QByteArray> roleNames() const override;

    bool insertRows(int row, int count,
                    const QModelIndex &parent = QModelIndex()) override;
    bool removeRows(int row, int count,
                    const QModelIndex &parent = QModelIndex()) override;
    void duplicateRow(int row);
    void startRearrange(int row);
    void move(int fromRow, int toRow);
    void finishRearrange(bool commit);

    void clear();
    void addNewSlide(int row);
    void removeSlide(int row);

    void onNewSlide(const qt3dsdm::Qt3DSDMSlideHandle &inSlide);
    void onDeleteSlide(const qt3dsdm::Qt3DSDMSlideHandle &inSlide);
    void onSlideRearranged(const qt3dsdm::Qt3DSDMSlideHandle &inMaster, int inOldIndex,
                           int toRow);
    void refreshSlideLabel(qt3dsdm::Qt3DSDMInstanceHandle instanceHandle,
                           qt3dsdm::Qt3DSDMPropertyHandle propertyHandle);

private:
    bool hasSlideWithName(const QString &name) const;
    QString slideName(const qt3dsdm::Qt3DSDMSlideHandle &handle) const;
    void setSlideName(const qt3dsdm::Qt3DSDMSlideHandle &handle, const QString &name);
    inline CDoc *GetDoc() const;
    inline long slideIndex(const qt3dsdm::Qt3DSDMSlideHandle &handle);
    inline CClientDataModelBridge *GetBridge() const;

    QVector<qt3dsdm::Qt3DSDMSlideHandle> m_slides;
    int m_selectedRow = -1;
    int m_rearrangeStartRow = -1;
    int m_rearrangeEndRow = -1;
    QHash<qt3dsdm::Qt3DSDMInstanceHandle, qt3dsdm::Qt3DSDMSlideHandle> m_slideLookupHash;
};


#endif // SLIDEMODEL_H