#pragma once // I just want the struct for the save data. #include "stdafx.h" #include "Emu/Memory/vm.h" #include "Emu/Cell/Modules/cellSaveData.h" #include #include #include class gui_settings; //Display a list of SaveData. Would need to be initialized. //Can also be used as a Save Data Chooser. class save_data_list_dialog : public QDialog { Q_OBJECT enum selection_code { new_save = -1, canceled = -2 }; public: explicit save_data_list_dialog(const std::vector& entries, s32 focusedEntry, u32 op, vm::ptr, QWidget* parent = nullptr); s32 GetSelection(); private Q_SLOTS: void OnEntryInfo(); void OnSort(int logicalIndex); private: void UpdateSelectionLabel(void); void UpdateList(void); s32 m_entry = selection_code::new_save; QLabel* m_entry_label = nullptr; QTableWidget* m_list = nullptr; std::vector m_save_entries; std::shared_ptr m_gui_settings; int m_sort_column = 0; bool m_sort_ascending = true; };