1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-09-19 21:43:44 +01:00
nxdumptool/include/about_tab.hpp

58 lines
1.8 KiB
C++
Raw Normal View History

2021-06-14 21:54:33 +01:00
/*
* about_tab.hpp
*
2023-04-08 12:42:22 +01:00
* Copyright (c) 2020-2023, DarkMatterCore <pabloacurielz@gmail.com>.
2021-06-14 21:54:33 +01:00
*
* This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool).
*
* nxdumptool 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.
*
* nxdumptool 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 <https://www.gnu.org/licenses/>.
*/
#pragma once
#ifndef __ABOUT_TAB_HPP__
#define __ABOUT_TAB_HPP__
#include <borealis.hpp>
2021-06-20 18:20:09 +01:00
#include "focusable_item.hpp"
2021-06-14 21:54:33 +01:00
namespace nxdt::views
{
2021-06-20 18:20:09 +01:00
/* Extended class to display a focusable and optionally centered (but unhighlightable) label. */
class AboutTabLabel: public FocusableLabel
2021-06-14 21:54:33 +01:00
{
public:
AboutTabLabel(brls::LabelStyle labelStyle, std::string text, bool center = false) : FocusableLabel(labelStyle, text, true)
2021-06-20 18:20:09 +01:00
{
if (center) this->setHorizontalAlign(NVG_ALIGN_CENTER);
}
2021-06-14 21:54:33 +01:00
};
2021-06-14 21:54:33 +01:00
class AboutTab: public brls::List
{
private:
brls::Image *logo = nullptr;
protected:
void draw(NVGcontext* vg, int x, int y, unsigned width, unsigned height, brls::Style* style, brls::FrameContext* ctx) override;
void layout(NVGcontext* vg, brls::Style* style, brls::FontStash* stash) override;
2021-06-14 21:54:33 +01:00
public:
AboutTab(void);
~AboutTab(void);
2021-06-14 21:54:33 +01:00
};
}
#endif /* __ABOUT_TAB_HPP__ */