mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-16 20:55:56 +01:00
65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
#ifndef TROPHY_MANAGER_DIALOG
|
|
#define TROPHY_MANAGER_DIALOG
|
|
|
|
#include "stdafx.h"
|
|
#include "rpcs3/Loader/TROPUSR.h"
|
|
|
|
#include "Utilities/rXml.h"
|
|
|
|
#include <QWidget>
|
|
#include <QPixmap>
|
|
#include <QTreeWidget>
|
|
|
|
struct GameTrophiesData
|
|
{
|
|
std::unique_ptr<TROPUSRLoader> trop_usr;
|
|
rXmlDocument trop_config; // I'd like to use unique but the protocol inside of the function passes around shared pointers..
|
|
std::vector<QPixmap> trophy_images;
|
|
std::string game_name;
|
|
std::string path;
|
|
};
|
|
|
|
enum TrophyColumns
|
|
{
|
|
Icon = 0,
|
|
Name = 1,
|
|
Description = 2,
|
|
Type = 3,
|
|
IsUnlocked = 4,
|
|
Id = 5,
|
|
Hidden = 6,
|
|
};
|
|
|
|
class trophy_manager_dialog : public QWidget
|
|
{
|
|
public:
|
|
explicit trophy_manager_dialog();
|
|
private Q_SLOTS:
|
|
void OnColClicked(int col);
|
|
void ResizeTrophyIcons(int val);
|
|
void ApplyFilter();
|
|
void ShowContextMenu(const QPoint& pos);
|
|
private:
|
|
/** Loads a trophy folder.
|
|
Returns true if successful. Does not attempt to install if failure occurs, like sceNpTrophy.
|
|
*/
|
|
bool LoadTrophyFolderToDB(const std::string& trop_name, const std::string& game_name);
|
|
|
|
/** Fills UI with information.
|
|
Takes results from LoadTrophyFolderToDB and puts it into the UI.
|
|
*/
|
|
void PopulateUI();
|
|
|
|
std::vector<std::unique_ptr<GameTrophiesData>> m_trophies_db; //! Holds all the trophy information.
|
|
QTreeWidget* m_trophy_tree; //! UI element to display trophy stuff.
|
|
|
|
int m_sort_column = 0; //! Tracks which row we are sorting by.
|
|
Qt::SortOrder m_col_sort_order = Qt::AscendingOrder; //! Tracks order in which we are sorting.
|
|
|
|
bool m_show_hidden_trophies = false;
|
|
bool m_show_unlocked_trophies = true;
|
|
bool m_show_locked_trophies = true;
|
|
};
|
|
|
|
#endif
|