1 /****************************************************************************
2 **
3 ** Copyright (C) 2021 The Qt Company Ltd.
4 ** Contact: https://www.qt.io/licensing/
5 **
6 ** This file is part of Qt Creator.
7 **
8 ** Commercial License Usage
9 ** Licensees holding valid commercial Qt licenses may use this file in
10 ** accordance with the commercial license agreement provided with the
11 ** Software or, alternatively, in accordance with the terms contained in
12 ** a written agreement between you and The Qt Company. For licensing terms
13 ** and conditions see https://www.qt.io/terms-conditions. For further
14 ** information use the contact form at https://www.qt.io/contact-us.
15 **
16 ** GNU General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU
18 ** General Public License version 3 as published by the Free Software
19 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
20 ** included in the packaging of this file. Please review the following
21 ** information to ensure the GNU General Public License requirements will
22 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
23 **
24 ****************************************************************************/
25 
26 #pragma once
27 
28 #include <QObject>
29 
30 namespace QmlDesigner {
31 
32 class ItemLibraryAssetsDirsModel;
33 class ItemLibraryAssetsFilesModel;
34 
35 class ItemLibraryAssetsDir : public QObject
36 {
37     Q_OBJECT
38 
39     Q_PROPERTY(QString dirName READ dirName NOTIFY dirNameChanged)
40     Q_PROPERTY(QString dirPath READ dirPath NOTIFY dirPathChanged)
41     Q_PROPERTY(bool dirExpanded READ dirExpanded WRITE setDirExpanded NOTIFY dirExpandedChanged)
42     Q_PROPERTY(bool dirVisible READ dirVisible WRITE setDirVisible NOTIFY dirVisibleChanged)
43     Q_PROPERTY(int dirDepth READ dirDepth NOTIFY dirDepthChanged)
44     Q_PROPERTY(QObject *filesModel READ filesModel NOTIFY filesModelChanged)
45     Q_PROPERTY(QObject *dirsModel READ dirsModel NOTIFY dirsModelChanged)
46 
47 public:
48     ItemLibraryAssetsDir(const QString &path, int depth, bool expanded = true, QObject *parent = nullptr);
49 
50     QString dirName() const;
51     QString dirPath() const;
52     int dirDepth() const;
53 
54     bool dirExpanded() const;
55     bool dirVisible() const;
56     void setDirExpanded(bool expand);
57     void setDirVisible(bool visible);
58 
59     QObject *filesModel() const;
60     QObject *dirsModel() const;
61 
62     QList<ItemLibraryAssetsDir *> childAssetsDirs() const;
63 
64     void addDir(ItemLibraryAssetsDir *assetsDir);
65     void addFile(const QString &filePath);
66 
67 signals:
68     void dirNameChanged();
69     void dirPathChanged();
70     void dirDepthChanged();
71     void dirExpandedChanged();
72     void dirVisibleChanged();
73     void filesModelChanged();
74     void dirsModelChanged();
75 
76 private:
77     QString m_dirPath;
78     int m_dirDepth = 0;
79     bool m_dirExpanded = true;
80     bool m_dirVisible = true;
81     ItemLibraryAssetsDirsModel *m_dirsModel = nullptr;
82     ItemLibraryAssetsFilesModel *m_filesModel = nullptr;
83 };
84 
85 } // namespace QmlDesigner
86