File: SessionItemController.cpp

package info (click to toggle)
bornagain 1.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 118,800 kB
  • sloc: cpp: 469,684; python: 38,920; xml: 805; awk: 630; sh: 286; ansic: 37; makefile: 25
file content (118 lines) | stat: -rw-r--r-- 2,810 bytes parent folder | download
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// ************************************************************************** //
//
//  BornAgain: simulate and fit scattering at grazing incidence
//
//! @file      GUI/coregui/Views/CommonWidgets/SessionItemController.cpp
//! @brief     Implements class SessionItemController
//!
//! @homepage  http://www.bornagainproject.org
//! @license   GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors   Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************** //

#include "GUI/coregui/Views/CommonWidgets/SessionItemController.h"
#include "GUI/coregui/Models/SessionItem.h"
#include "GUI/coregui/utils/GUIHelpers.h"

SessionItemController::SessionItemController(QObject* prt)
    : QObject(prt), m_item(nullptr), m_parent_subscribed(false)
{
    ASSERT(parent());
}

SessionItemController::~SessionItemController()
{
    onControllerDestroy();
}

void SessionItemController::setItem(SessionItem* item)
{
    if (m_item == item)
        return;

    if (m_item) {
        m_item->mapper()->unsubscribe(this);
        unsubscribe();
    }

    m_item = item;
    if (!m_item)
        return;

    m_item->mapper()->setOnItemDestroy([this](SessionItem*) { onItemDestroy(); }, this);
}

SessionItem* SessionItemController::currentItem()
{
    return m_item;
}

void SessionItemController::setSubscribeCallback(callback_t fun)
{
    m_subscribe_callback = fun;
}

void SessionItemController::setUnsubscribeCallback(callback_t fun)
{
    m_unsubscribe_callback = fun;
}

//! Subscribe parent to item's signals.

void SessionItemController::subscribe()
{
    if (!m_item)
        return;

    if (!m_parent_subscribed)
        subscribeParent();
}

//! Fully unsubscribes the parent from listening item's signals.
//! Controller stays active to track item destruction.

void SessionItemController::unsubscribe()
{
    if (!m_item)
        return;

    if (m_parent_subscribed)
        unsubscribeParent();

    m_item->mapper()->unsubscribe(parent());
}

void SessionItemController::onItemDestroy()
{
    if (m_parent_subscribed)
        unsubscribeParent();
    m_item = nullptr;
}

void SessionItemController::onControllerDestroy()
{
    if (m_item) {
        m_item->mapper()->unsubscribe(this);
        m_item->mapper()->unsubscribe(parent());
    }
}

void SessionItemController::subscribeParent()
{
    ASSERT(m_subscribe_callback);
    ASSERT(m_parent_subscribed == false);
    m_subscribe_callback();
    m_parent_subscribed = true;
}

//! Calls additional callback on un

void SessionItemController::unsubscribeParent()
{
    ASSERT(m_unsubscribe_callback);
    ASSERT(m_parent_subscribed == true);
    m_unsubscribe_callback();
    m_parent_subscribed = false;
}