summaryrefslogtreecommitdiffstats
path: root/src/widget/wcolorpickeraction.cpp
blob: 66f3bb58500bb78da4948bfe0e77483db0f186ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "widget/wcolorpickeraction.h"

WColorPickerAction::WColorPickerAction(QWidget* parent)
        : QWidgetAction(parent) {
    m_pColorPicker = make_parented<WColorPicker>(true);
    connect(m_pColorPicker.get(), &WColorPicker::colorPicked, this, &WColorPickerAction::colorPicked);

    QHBoxLayout* pLayout = new QHBoxLayout();
    pLayout->addWidget(m_pColorPicker);

    QWidget* pWidget = new QWidget();
    pWidget->setLayout(pLayout);
    setDefaultWidget(pWidget);
}

void WColorPickerAction::setSelectedColor(PredefinedColorPointer pColor) {
    m_pColorPicker->setSelectedColor(pColor);
}