VAPOR3 3.9.4
PCheckbox.h
Go to the documentation of this file.
1#pragma once
2
3#include "PLineItem.h"
4
5class VCheckBox;
6
10
11class PCheckbox : public PLineItem {
12 Q_OBJECT
13
14 VCheckBox *_vcheckbox;
15
16public:
17 PCheckbox(const std::string &tag, const std::string &label = "");
18
19protected:
20 void updateGUI() const override;
21
22private slots:
23 void checkboxStateChanged(bool on);
24};
void updateGUI() const override
PCheckbox(const std::string &tag, const std::string &label="")