mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
DolphinWX: Separate the information panel from ISOProperties
Makes the information panel self-contained. This was done first, as opposed to isolating the GameConfig panel--the first panel in the group--as this panel had code all over the place in ISOProperties, so I figured it'd be best to fix this one up first.
This commit is contained in:
88
Source/Core/DolphinWX/ISOProperties/InfoPanel.h
Normal file
88
Source/Core/DolphinWX/ISOProperties/InfoPanel.h
Normal file
@ -0,0 +1,88 @@
|
||||
// Copyright 2016 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <wx/panel.h>
|
||||
|
||||
class GameListItem;
|
||||
class wxButton;
|
||||
class wxChoice;
|
||||
class wxStaticBitmap;
|
||||
class wxStaticBoxSizer;
|
||||
class wxTextCtrl;
|
||||
|
||||
namespace DiscIO
|
||||
{
|
||||
class IVolume;
|
||||
enum class Language;
|
||||
}
|
||||
|
||||
class InfoPanel final : public wxPanel
|
||||
{
|
||||
public:
|
||||
InfoPanel(wxWindow* parent, wxWindowID id, const GameListItem& item,
|
||||
const std::unique_ptr<DiscIO::IVolume>& opened_iso);
|
||||
|
||||
private:
|
||||
enum
|
||||
{
|
||||
ID_NAME = 10000,
|
||||
ID_GAME_ID,
|
||||
ID_COUNTRY,
|
||||
ID_MAKER_ID,
|
||||
ID_REVISION,
|
||||
ID_DATE,
|
||||
ID_FST,
|
||||
ID_MD5_SUM,
|
||||
ID_MD5_SUM_COMPUTE,
|
||||
ID_VERSION,
|
||||
ID_LANGUAGE,
|
||||
ID_SHORT_NAME,
|
||||
ID_MAKER,
|
||||
ID_COMMENT,
|
||||
ID_BANNER,
|
||||
|
||||
IDM_SAVE_BANNER
|
||||
};
|
||||
|
||||
void CreateGUI();
|
||||
void BindEvents();
|
||||
void LoadGUIData();
|
||||
void LoadISODetails();
|
||||
void LoadBannerDetails();
|
||||
void LoadBannerImage();
|
||||
|
||||
wxStaticBoxSizer* CreateISODetailsSizer();
|
||||
wxStaticBoxSizer* CreateBannerDetailsSizer();
|
||||
wxChoice* CreateCommentLanguageChoice();
|
||||
|
||||
void OnComputeMD5(wxCommandEvent&);
|
||||
void OnChangeBannerLanguage(wxCommandEvent&);
|
||||
void OnRightClickBanner(wxMouseEvent&);
|
||||
void OnSaveBannerImage(wxCommandEvent&);
|
||||
|
||||
void ChangeBannerDetails(DiscIO::Language language);
|
||||
|
||||
void EmitTitleChangeEvent(const wxString& new_title);
|
||||
|
||||
const GameListItem& m_game_list_item;
|
||||
const std::unique_ptr<DiscIO::IVolume>& m_opened_iso;
|
||||
|
||||
wxTextCtrl* m_internal_name;
|
||||
wxTextCtrl* m_game_id;
|
||||
wxTextCtrl* m_country;
|
||||
wxTextCtrl* m_maker_id;
|
||||
wxTextCtrl* m_revision;
|
||||
wxTextCtrl* m_date;
|
||||
wxTextCtrl* m_fst;
|
||||
wxTextCtrl* m_md5_sum;
|
||||
wxButton* m_md5_sum_compute;
|
||||
wxChoice* m_languages;
|
||||
wxTextCtrl* m_name;
|
||||
wxTextCtrl* m_maker;
|
||||
wxTextCtrl* m_comment;
|
||||
wxStaticBitmap* m_banner;
|
||||
};
|
Reference in New Issue
Block a user