aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/annotationeditor/annotationlistwidget.cpp
blob: c3e0f8b2b8e3487f7183945dff76df2e6955bdff (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) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "annotationlistwidget.h"

#include "annotationeditorwidget.h"
#include "annotationlist.h"

#include <QHBoxLayout>

namespace QmlDesigner {

AnnotationListWidget::AnnotationListWidget(ModelNode rootNode, QWidget *parent)
    : QWidget(parent)
    , m_listView(new AnnotationListView(rootNode, this))
    , m_editor(new AnnotationEditorWidget(this))
{
    createUI();
    connect(m_listView, &Utils::ListView::activated,
            this, &AnnotationListWidget::changeAnnotation);

    if (validateListSize())
        m_listView->selectRow(0);
}

void AnnotationListWidget::setRootNode(ModelNode rootNode)
{
    m_listView->setRootNode(rootNode);

    m_currentItem = -1;

    if (validateListSize())
        m_listView->selectRow(0);
}

void AnnotationListWidget::saveAllChanges()
{
    //first commit currently opened item
    if (m_currentItem != -1) {
        m_editor->updateAnnotation();
        const QString oldCustomId = m_editor->customId();
        const Annotation oldAnno = m_editor->annotation();

        m_listView->storeChangesInModel(m_currentItem, oldCustomId, oldAnno);
    }

    //save all
    m_listView->saveChangesFromModel();
}

void AnnotationListWidget::createUI()
{
    QHBoxLayout *layout = new QHBoxLayout(this);

    const QSizePolicy policy = m_listView->sizePolicy();
    m_listView->setSizePolicy(QSizePolicy::Minimum, policy.verticalPolicy());

    layout->addWidget(m_listView);
    layout->addWidget(m_editor);
}

bool AnnotationListWidget::validateListSize()
{
    const bool isFilled = m_listView->rowCount() > 0;

    m_editor->setEnabled(isFilled);

    return isFilled;
}

void AnnotationListWidget::changeAnnotation(const QModelIndex &index)
{
    //store previous data
    if (m_currentItem != -1) {
        m_editor->updateAnnotation();
        const QString &oldCustomId = m_editor->customId();
        const Annotation &oldAnno = m_editor->annotation();

        m_listView->storeChangesInModel(m_currentItem, oldCustomId, oldAnno);
    }

    //show new data
    if (!index.isValid() || index.row() < 0 || index.row() >= m_listView->rowCount())
        return;

    const auto annotationData = m_listView->getStoredAnnotationById(index.row());

    m_editor->setTargetId(annotationData.id);
    m_editor->setCustomId(annotationData.annotationName);
    m_editor->setAnnotation(annotationData.annotation);

    m_currentItem = index.row();
}

}