My Project
 
Loading...
Searching...
No Matches
checkboxred.h
Go to the documentation of this file.
1#pragma once
2
3#include "redbutton.h"
4class CheckBoxRed :public RedButton{
5private:
6 bool checked;
7
8protected:
9 virtual void layout();
10 virtual void onClick();
11public:
12 CheckBoxRed(const std::string& label);
13 bool Checked() { return checked; }
14 void Checked(bool value);
15};
virtual void layout()
Definition checkboxred.cpp:12
virtual void onClick()
Definition checkboxred.cpp:38
CheckBoxRed(const std::string &label)
Definition checkboxred.cpp:5
bool Checked()
Definition checkboxred.h:13
RedButton(const std::string &label)
Definition redbutton.cpp:5