]> sigrok.org Git - pulseview.git/blame - pv/prop/bool.cpp
MainWindow: Fix "main_window may be uninitialized" error
[pulseview.git] / pv / prop / bool.cpp
CommitLineData
de1d99bb
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <assert.h>
22
23#include <QCheckBox>
24
2acdb232 25#include "bool.hpp"
de1d99bb 26
de1d99bb
JH
27namespace pv {
28namespace prop {
29
30Bool::Bool(QString name, Getter getter, Setter setter) :
31 Property(name, getter, setter),
4c60462b 32 check_box_(nullptr)
de1d99bb
JH
33{
34}
35
b1fe148e 36QWidget* Bool::get_widget(QWidget *parent, bool auto_commit)
de1d99bb 37{
8dbbc7f0
JH
38 if (check_box_)
39 return check_box_;
de1d99bb 40
8dbbc7f0 41 if (!getter_)
4c60462b 42 return nullptr;
de1d99bb 43
8dbbc7f0 44 Glib::VariantBase variant = getter_();
e8d00928 45 if (!variant.gobj())
4c60462b 46 return nullptr;
e8d00928
ML
47
48 bool value = Glib::VariantBase::cast_dynamic<Glib::Variant<bool>>(
49 variant).get();
50
8dbbc7f0
JH
51 check_box_ = new QCheckBox(name(), parent);
52 check_box_->setCheckState(value ? Qt::Checked : Qt::Unchecked);
de1d99bb 53
b1fe148e 54 if (auto_commit)
8dbbc7f0 55 connect(check_box_, SIGNAL(stateChanged(int)),
b1fe148e
JH
56 this, SLOT(on_state_changed(int)));
57
8dbbc7f0 58 return check_box_;
de1d99bb
JH
59}
60
61bool Bool::labeled_widget() const
62{
63 return true;
64}
65
66void Bool::commit()
67{
8dbbc7f0 68 assert(setter_);
de1d99bb 69
8dbbc7f0 70 if (!check_box_)
de1d99bb
JH
71 return;
72
8dbbc7f0
JH
73 setter_(Glib::Variant<bool>::create(
74 check_box_->checkState() == Qt::Checked));
de1d99bb
JH
75}
76
b1fe148e
JH
77void Bool::on_state_changed(int)
78{
79 commit();
80}
81
de1d99bb
JH
82} // prop
83} // pv