2021-06-20 18:20:09 +01:00
|
|
|
/*
|
|
|
|
* focusable_item.hpp
|
|
|
|
*
|
2023-04-08 12:42:22 +01:00
|
|
|
* Copyright (c) 2020-2023, DarkMatterCore <pabloacurielz@gmail.com>.
|
2021-06-20 18:20:09 +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 __FOCUSABLE_ITEM_HPP__
|
|
|
|
#define __FOCUSABLE_ITEM_HPP__
|
|
|
|
|
|
|
|
#include <borealis.hpp>
|
|
|
|
|
|
|
|
namespace nxdt::views
|
|
|
|
{
|
|
|
|
template<typename ViewType>
|
|
|
|
class FocusableItem: public ViewType
|
|
|
|
{
|
|
|
|
private:
|
2021-08-08 08:39:21 +01:00
|
|
|
bool highlight, highlight_bg;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-20 18:20:09 +01:00
|
|
|
protected:
|
|
|
|
brls::View* getDefaultFocus(void) override
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-08-08 08:39:21 +01:00
|
|
|
bool isHighlightBackgroundEnabled(void) override
|
|
|
|
{
|
|
|
|
return this->highlight_bg;
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-08-08 08:39:21 +01:00
|
|
|
void onFocusGained(void) override
|
|
|
|
{
|
|
|
|
if (this->highlight)
|
|
|
|
{
|
|
|
|
/* Focus and highlight view. */
|
|
|
|
brls::View::onFocusGained();
|
|
|
|
} else {
|
|
|
|
/* Focus view without highlighting it. */
|
|
|
|
this->focused = true;
|
|
|
|
this->focusEvent.fire(this);
|
|
|
|
if (this->hasParent()) this->getParent()->onChildFocusGained(this);
|
|
|
|
}
|
|
|
|
}
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-20 18:20:09 +01:00
|
|
|
public:
|
|
|
|
template<typename... Types>
|
2021-08-08 08:39:21 +01:00
|
|
|
FocusableItem(bool highlight, bool highlight_bg, Types... args) : ViewType(args...), highlight(highlight), highlight_bg(highlight_bg) { }
|
2021-06-20 18:20:09 +01:00
|
|
|
};
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-08-08 08:39:21 +01:00
|
|
|
/* Define templated classes for the focusable items we're gonna use. */
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-08-08 08:39:21 +01:00
|
|
|
class FocusableLabel: public FocusableItem<brls::Label>
|
2021-06-20 18:20:09 +01:00
|
|
|
{
|
2021-08-08 08:39:21 +01:00
|
|
|
public:
|
|
|
|
template<typename... Types>
|
|
|
|
FocusableLabel(Types... args) : FocusableItem<brls::Label>(false, false, args...) { }
|
|
|
|
};
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-08-08 08:39:21 +01:00
|
|
|
class FocusableTable: public FocusableItem<brls::Table>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template<typename... Types>
|
|
|
|
FocusableTable(Types... args) : FocusableItem<brls::Table>(true, false, args...) { }
|
|
|
|
};
|
2021-06-20 18:20:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __FOCUSABLE_ITEM_HPP__ */
|