2021-06-20 08:49:33 +01:00
|
|
|
/*
|
2021-06-20 18:27:10 +01:00
|
|
|
* layered_error_frame.hpp
|
2021-06-20 08:49:33 +01:00
|
|
|
*
|
2024-04-12 10:47:36 +01:00
|
|
|
* Copyright (c) 2020-2024, DarkMatterCore <pabloacurielz@gmail.com>.
|
2021-06-20 08:49: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
|
|
|
|
|
2021-06-20 18:27:10 +01:00
|
|
|
#ifndef __LAYERED_ERROR_FRAME_HPP__
|
|
|
|
#define __LAYERED_ERROR_FRAME_HPP__
|
2021-06-20 08:49:33 +01:00
|
|
|
|
|
|
|
#include "error_frame.hpp"
|
|
|
|
|
|
|
|
namespace nxdt::views
|
|
|
|
{
|
2021-06-20 21:37:31 +01:00
|
|
|
/* Extended class to switch between ErrorFrame and List views on demand. */
|
2024-04-25 00:49:04 +01:00
|
|
|
/* Intended to be used with lists that need to be updated dynamically based on runtime events. */
|
|
|
|
/* Implements some hacky workarounds to prevent borealis from crashing and/or going out of focus. */
|
2021-06-20 18:27:10 +01:00
|
|
|
class LayeredErrorFrame: public brls::LayerView
|
2021-06-20 08:49:33 +01:00
|
|
|
{
|
2021-06-25 21:13:39 +01:00
|
|
|
private:
|
|
|
|
brls::SidebarItem *sidebar_item = nullptr;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-21 03:43:40 +01:00
|
|
|
protected:
|
2021-06-20 08:49:33 +01:00
|
|
|
ErrorFrame *error_frame = nullptr;
|
|
|
|
brls::List *list = nullptr;
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-25 21:13:39 +01:00
|
|
|
bool IsListItemFocused(void);
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-25 21:13:39 +01:00
|
|
|
int GetFocusStackViewIndex(void);
|
|
|
|
bool UpdateFocusStackViewAtIndex(int index, brls::View *view);
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2022-07-27 23:53:52 +01:00
|
|
|
brls::View *GetListFirstFocusableChild(void);
|
|
|
|
|
2021-06-25 21:13:39 +01:00
|
|
|
void SwitchLayerView(bool use_error_frame, bool update_focused_view = false, bool update_focus_stack = true);
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-20 08:49:33 +01:00
|
|
|
public:
|
2021-06-21 03:43:40 +01:00
|
|
|
LayeredErrorFrame(std::string msg = "");
|
2022-07-05 02:04:28 +01:00
|
|
|
|
2021-06-25 21:13:39 +01:00
|
|
|
void SetParentSidebarItem(brls::SidebarItem *sidebar_item);
|
2021-06-20 08:49:33 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-06-20 18:27:10 +01:00
|
|
|
#endif /* __LAYERED_ERROR_FRAME_HPP__ */
|