Checkpoint/3ds/include/clickable.hpp

60 lines
2.1 KiB
C++
Raw Normal View History

2018-05-14 06:52:41 +00:00
/*
2019-05-06 20:51:09 +00:00
* This file is part of Checkpoint
* Copyright (C) 2017-2019 Bernardo Giordano, FlagBrew
*
* 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/>.
*
* Additional Terms 7.b and 7.c of GPLv3 apply to this file:
* * Requiring preservation of specified reasonable legal notices or
* author attributions in that material or in the Appropriate Legal
* Notices displayed by works containing it.
* * Prohibiting misrepresentation of the origin of that material,
* or requiring that modified versions of such material be marked in
* reasonable ways as different from the original version.
*/
2018-05-14 06:52:41 +00:00
#ifndef CLICKABLE_HPP
#define CLICKABLE_HPP
#include "colors.hpp"
2019-07-08 19:38:46 +00:00
#include "gui.hpp"
2019-05-06 20:51:09 +00:00
#include "iclickable.hpp"
2019-04-22 20:02:33 +00:00
#include "main.hpp"
2019-05-06 20:51:09 +00:00
#include <citro2d.h>
#include <string>
2018-05-14 06:52:41 +00:00
2019-05-06 20:51:09 +00:00
class Clickable : public IClickable<u32> {
2018-05-14 06:52:41 +00:00
public:
2018-05-18 13:17:16 +00:00
Clickable(int x, int y, u16 w, u16 h, u32 colorBg, u32 colorText, std::string message, bool centered)
2019-05-06 20:51:09 +00:00
: IClickable(x, y, w, h, colorBg, colorText, message, centered)
2018-05-18 13:17:16 +00:00
{
mTextBuf = C2D_TextBufNew(64);
C2D_TextParse(&mC2dText, mTextBuf, message.c_str());
C2D_TextOptimize(&mC2dText);
}
2018-05-14 06:52:41 +00:00
2019-05-06 20:51:09 +00:00
virtual ~Clickable(void) { C2D_TextBufDelete(mTextBuf); }
2018-05-14 06:52:41 +00:00
2019-04-12 21:39:55 +00:00
void draw(float size, u32 overlay) override;
2019-04-17 20:17:55 +00:00
void drawOutline(u32 color) override;
2018-05-18 13:17:16 +00:00
bool held(void) override;
bool released(void) override;
2019-04-22 15:37:45 +00:00
void c2dText(const std::string& text);
2018-05-18 13:17:16 +00:00
protected:
2019-05-06 20:51:09 +00:00
C2D_Text mC2dText;
2018-05-14 06:52:41 +00:00
C2D_TextBuf mTextBuf;
};
#endif