libgui/source/gui/GuiCheckBox.cpp

69 lines
1.9 KiB
C++
Raw Normal View History

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/>.
****************************************************************************/
2018-06-21 20:44:58 +02:00
#include <gui/GuiCheckBox.h>
#include <gui/GuiImage.h>
#include <gui/GuiImageData.h>
2017-10-29 10:28:14 +01:00
/**
* Constructor for the GuiCheckBox class.
*/
2018-06-21 20:44:58 +02:00
GuiCheckBox::GuiCheckBox(GuiImage * background, bool checked, float width,float height)
: GuiToggle(checked,width,height) {
2017-10-31 17:18:42 +01:00
setImageBackground(background);
2017-10-29 10:28:14 +01:00
}
/**
* Destructor for the GuiCheckBox class.
*/
2018-06-21 20:44:58 +02:00
GuiCheckBox::~GuiCheckBox() {
2017-10-29 10:28:14 +01:00
}
2018-06-21 20:44:58 +02:00
void GuiCheckBox::setImageBackground(GuiImage* img) {
backgroundImg = img;
if(img) {
img->setParent(this);
}
2017-10-29 10:28:14 +01:00
}
2018-06-21 20:44:58 +02:00
void GuiCheckBox::setImageSelected(GuiImage* img) {
selectedImg = img;
if(img) {
img->setParent(this);
}
2017-10-29 10:28:14 +01:00
}
2018-06-21 20:44:58 +02:00
void GuiCheckBox::setImageHighlighted(GuiImage* img) {
2017-10-29 10:28:14 +01:00
highlightedImg = img;
2018-06-21 20:44:58 +02:00
if(img) {
img->setParent(this);
}
setIconOver(img);
2017-10-29 10:28:14 +01:00
}
2018-06-21 20:44:58 +02:00
void GuiCheckBox::update(GuiController * c) {
if(bChanged) {
if(selected) {
2017-10-29 10:28:14 +01:00
GuiButton::setImage(selectedImg);
2018-06-21 20:44:58 +02:00
} else {
2017-10-29 10:28:14 +01:00
GuiButton::setImage(backgroundImg);
}
bChanged = false;
}
2018-06-21 20:44:58 +02:00
GuiToggle::update(c);
2017-10-29 10:28:14 +01:00
}