mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-28 04:37:03 +00:00
Add all the files
This commit is contained in:
parent
e3db07a16a
commit
d60742f52b
1445 changed files with 430238 additions and 0 deletions
25
src/gui/dialogs/SaveImport/SaveImportWindow.h
Normal file
25
src/gui/dialogs/SaveImport/SaveImportWindow.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#pragma once
|
||||
|
||||
#include <wx/dialog.h>
|
||||
|
||||
class SaveImportWindow : public wxDialog
|
||||
{
|
||||
public:
|
||||
SaveImportWindow(wxWindow* parent, uint64 title_id);
|
||||
|
||||
void EndModal(int retCode) override;
|
||||
|
||||
uint32 GetTargetPersistentId() const { return m_target_id; }
|
||||
private:
|
||||
void OnImport(wxCommandEvent& event);
|
||||
|
||||
class wxFilePickerCtrl* m_source_selection;
|
||||
class wxComboBox* m_target_selection;
|
||||
|
||||
uint32 m_target_id = 0;
|
||||
const uint64 m_title_id;
|
||||
const fs::path m_source_file;
|
||||
int m_return_code = wxCANCEL;
|
||||
};
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue