1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-09 20:21:45 +00:00
nxdumptool/include/gamecard_tab.hpp

77 lines
2.6 KiB
C++
Raw Normal View History

/*
* gamecard_tab.hpp
*
* Copyright (c) 2020-2021, DarkMatterCore <pabloacurielz@gmail.com>.
*
* 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 __GAMECARD_TAB_HPP__
#define __GAMECARD_TAB_HPP__
#include "tasks.hpp"
2021-06-20 08:49:33 +01:00
#include "error_layer_view.hpp"
namespace nxdt::views
{
2021-06-14 21:54:33 +01:00
/* Extended class to display a focusable (but unhighlightable) table. */
class GameCardTable: public brls::Table
{
protected:
brls::View* getDefaultFocus(void) override;
void onFocusGained(void) override;
public:
GameCardTable(void);
};
2021-06-20 08:49:33 +01:00
/* Instantiate the template for our class. */
typedef ErrorLayerView<nxdt::tasks::GameCardTask, nxdt::tasks::GameCardStatusEvent> GameCardErrorLayerView;
class GameCardTab: public GameCardErrorLayerView
{
typedef bool (*GameCardSizeFunc)(u64 *size);
private:
GameCardStatus gc_status = GameCardStatus_NotInserted;
GameCardTable *properties_table = nullptr;
brls::TableRow *capacity = nullptr;
brls::TableRow *total_size = nullptr;
brls::TableRow *trimmed_size = nullptr;
brls::TableRow *update_version = nullptr;
brls::TableRow *lafw_version = nullptr;
brls::TableRow *sdk_version = nullptr;
brls::TableRow *compatibility_type = nullptr;
2021-06-13 20:32:37 +01:00
brls::ListItem *dump_card_image = nullptr;
brls::ListItem *dump_certificate = nullptr;
brls::ListItem *dump_header = nullptr;
brls::ListItem *dump_decrypted_cardinfo = nullptr;
brls::ListItem *dump_initial_data = nullptr;
brls::ListItem *dump_hfs_partitions = nullptr;
std::string GetFormattedSizeString(GameCardSizeFunc func);
public:
GameCardTab(nxdt::tasks::GameCardTask *gc_status_task);
};
}
#endif /* __GAMECARD_TAB_HPP__ */