Beispiel #1
0
void AbstractView::setActiveView(bool value)
{
    if (_isActive != value)
    {
        _isActive = value;
        activeStatusChanged(_isActive);
    }
}
EosCue::EosCue(MainController* controller, EosOSCMessage msg)
    : QObject(0)
    , m_controller(controller)
    , m_isValid(false)
{
    connect(m_controller->eosManager(), SIGNAL(cueInfoChanged()),
            this, SIGNAL(activeStatusChanged()));

    m_cueNumber = EosCueNumber(msg.pathPart(2), msg.pathPart(3), msg.pathPart(4));

    update(msg);
}