2016-08-03 22:47:09 +02:00
|
|
|
/****************************************************************************
|
2017-10-29 12:16:33 +01:00
|
|
|
* Copyright (C) 2017 Maschell
|
2016-08-03 22:47:09 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
****************************************************************************/
|
2017-10-29 12:16:33 +01:00
|
|
|
#ifndef DEFAULT_GUI_SWTICH_H_
|
|
|
|
#define DEFAULT_GUI_SWTICH_H_
|
2016-08-03 22:47:09 +02:00
|
|
|
|
2017-10-29 12:16:33 +01:00
|
|
|
#include <gui/GuiSwitch.h>
|
2016-04-25 22:22:22 +02:00
|
|
|
|
2017-03-30 20:11:37 +02:00
|
|
|
//!A simple switch
|
2017-10-29 12:16:33 +01:00
|
|
|
class DefaultGuiSwitch : public GuiSwitch
|
2017-03-30 20:11:37 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
//!Constructor
|
|
|
|
//!\param checked Checked
|
2017-10-29 16:06:17 +01:00
|
|
|
DefaultGuiSwitch(bool checked);
|
2017-03-30 20:11:37 +02:00
|
|
|
//!Destructor
|
2017-10-29 12:16:33 +01:00
|
|
|
virtual ~DefaultGuiSwitch();
|
2016-04-25 22:22:22 +02:00
|
|
|
|
2017-03-30 20:11:37 +02:00
|
|
|
protected:
|
2017-05-07 18:44:34 +02:00
|
|
|
GuiImageData * switchbase_imgdata;
|
|
|
|
GuiImage switchbase_img;
|
2017-03-30 20:11:37 +02:00
|
|
|
|
2017-05-07 18:44:34 +02:00
|
|
|
GuiImageData * switchbase_highlighted_imgdata;
|
|
|
|
GuiImage switchbase_highlighted_img;
|
2017-03-30 20:11:37 +02:00
|
|
|
|
2017-05-07 18:44:34 +02:00
|
|
|
GuiImageData * switchOn_imgdata;
|
|
|
|
GuiImage switchOn_img;
|
2016-04-25 22:22:22 +02:00
|
|
|
|
2017-05-07 18:44:34 +02:00
|
|
|
GuiImageData * switchOff_imgdata;
|
|
|
|
GuiImage switchOff_img;
|
2017-03-30 20:11:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|