ToolStripAction.cc 2.05 KB
Newer Older
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
/****************************************************************************
 *
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#include "ToolStripAction.h"

ToolStripAction::ToolStripAction(QObject* parent)
    : QObject(parent)
{

}

void ToolStripAction::setEnabled(bool enabled)
{
    if (enabled != _enabled) {
        _enabled = enabled;
        emit enabledChanged(enabled);
    }
}

void ToolStripAction::setVisible(bool visible)
{
    if (visible != _visible) {
        _visible = visible;
        emit visibleChanged(visible);
    }

}

void ToolStripAction::setCheckable(bool checkable)
{
    if (checkable != _checkable) {
        _checkable = checkable;
        emit checkableChanged(checkable);
    }

}

void ToolStripAction::setChecked(bool checked)
{
    if (checked != _checked) {
        _checked = checked;
        emit checkedChanged(checked);
    }

}

void ToolStripAction::setShowAlternateIcon(bool showAlternateIcon)
{
    if (showAlternateIcon != _showAlternateIcon) {
        _showAlternateIcon = showAlternateIcon;
        emit showAlternateIconChanged(showAlternateIcon);
    }

}

void ToolStripAction::setText(const QString& text)
{
    if (text != _text) {
        _text = text;
        emit textChanged(text);
    }

}

void ToolStripAction::setIconSource(const QString& iconSource)
{
    if (iconSource != _iconSource) {
        _iconSource = iconSource;
        emit iconSourceChanged(iconSource);
    }

}

void ToolStripAction::setAlternateIconSource(const QString& alternateIconSource)
{
    if (alternateIconSource != _alternateIconSource) {
        _alternateIconSource = alternateIconSource;
        emit alternateIconSourceChanged(alternateIconSource);
    }
}

void ToolStripAction::setDropPanelComponent(QQmlComponent* dropPanelComponent)
{
    _dropPanelComponent = dropPanelComponent;
    emit dropPanelComponentChanged();
}