2017-10-29 10:28:14 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2016,2017 Maschell
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef GUI_CHECKBOX_H_
|
|
|
|
#define GUI_CHECKBOX_H_
|
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
#include <gui/GuiToggle.h>
|
|
|
|
#include <gui/GuiImage.h>
|
|
|
|
#include <gui/GuiImageData.h>
|
2017-10-29 10:28:14 +01:00
|
|
|
|
|
|
|
//!A simple CheckBox
|
2018-06-21 20:44:58 +02:00
|
|
|
class GuiCheckBox : public GuiToggle {
|
|
|
|
public:
|
|
|
|
//!Constructor
|
|
|
|
//!\param checked Checked
|
2020-08-13 12:38:07 +02:00
|
|
|
GuiCheckBox(GuiImage *background, bool checked, float width = 0.0f, float height = 0.0f);
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
//!Destructor
|
|
|
|
virtual ~GuiCheckBox();
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2020-08-13 12:38:07 +02:00
|
|
|
void setImageBackground(GuiImage *img);
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2020-08-13 12:38:07 +02:00
|
|
|
void setImageSelected(GuiImage *img);
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2020-08-13 12:38:07 +02:00
|
|
|
void setImageHighlighted(GuiImage *img);
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
protected:
|
2020-08-13 12:38:07 +02:00
|
|
|
GuiImage *backgroundImg = NULL;
|
|
|
|
GuiImage *selectedImg = NULL;
|
|
|
|
GuiImage *highlightedImg = NULL;
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2020-08-13 12:38:07 +02:00
|
|
|
void update(GuiController *c);
|
2017-10-29 10:28:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|