1 /**
2  * \file
3  *
4  * \author Mattia Basaglia
5  *
6  * \copyright Copyright (C) 2013-2020 Mattia Basaglia
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22 #include "QtColorWidgets/bound_color_selector.hpp"
23 
24 namespace color_widgets {
25 
BoundColorSelector(QColor * reference,QWidget * parent)26 BoundColorSelector::BoundColorSelector(QColor* reference, QWidget *parent) :
27     ColorSelector(parent), ref(reference)
28 {
29     setColor(*reference);
30     connect(this,&ColorPreview::colorChanged,this, &BoundColorSelector::update_reference);
31 }
32 
update_reference(QColor c)33 void BoundColorSelector::update_reference(QColor c)
34 {
35     *ref = c;
36 }
37 
38 } // namespace color_widgets
39