keepassxc

Форк
0
/
ModifiableObject.cpp 
65 строк · 1.6 Кб
1
/*
2
 *  Copyright (C) 2021 KeePassXC Team <team@keepassxc.org>
3
 *
4
 *  This program is free software: you can redistribute it and/or modify
5
 *  it under the terms of the GNU General Public License as published by
6
 *  the Free Software Foundation, either version 2 or (at your option)
7
 *  version 3 of the License.
8
 *
9
 *  This program is distributed in the hope that it will be useful,
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 *  GNU General Public License for more details.
13
 *
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17

18
#include "ModifiableObject.h"
19

20
namespace
21
{
22
    template <typename T> T findParent(const QObject* obj)
23
    {
24
        if (!obj) {
25
            return {};
26
        }
27

28
        auto p = obj->parent();
29
        while (p) {
30
            auto casted = qobject_cast<T>(p);
31
            if (casted) {
32
                return casted;
33
            }
34
            p = p->parent();
35
        }
36
        return {};
37
    }
38
} // namespace
39

40
bool ModifiableObject::modifiedSignalEnabled() const
41
{
42
    auto p = this;
43
    while (p) {
44
        if (!p->m_emitModified) {
45
            return false;
46
        }
47
        p = findParent<ModifiableObject*>(p);
48
    }
49
    return true;
50
}
51

52
void ModifiableObject::setEmitModified(bool value)
53
{
54
    if (m_emitModified != value) {
55
        m_emitModified = value;
56
        emit emitModifiedChanged(m_emitModified);
57
    }
58
}
59

60
void ModifiableObject::emitModified()
61
{
62
    if (modifiedSignalEnabled()) {
63
        emit modified();
64
    }
65
}
66

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.