mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
add "Other" category
include all categories to list and filters
This commit is contained in:
parent
d11bb71a17
commit
a1c72de1eb
9 changed files with 201 additions and 90 deletions
|
@ -25,7 +25,7 @@ typedef struct GUI_SAVE
|
|||
};
|
||||
};
|
||||
|
||||
typedef std::map<const QString, const QSize> icon_size;
|
||||
typedef std::map<std::string, const QString> q_from_char;
|
||||
typedef QPair<QString, QString> q_string_pair;
|
||||
typedef QPair<QString, QSize> q_size_pair;
|
||||
typedef QList<q_string_pair> q_pair_list;
|
||||
|
@ -118,7 +118,7 @@ public:
|
|||
/** Changes the settings file to the destination preset*/
|
||||
void ChangeToConfig(const QString& destination);
|
||||
|
||||
bool GetCategoryVisibility(QString cat);
|
||||
bool GetCategoryVisibility(int cat);
|
||||
QVariant GetValue(const GUI_SAVE& entry);
|
||||
QVariant List2Var(const q_pair_list& list);
|
||||
q_pair_list Var2List(const QVariant &var);
|
||||
|
@ -139,7 +139,7 @@ public Q_SLOTS:
|
|||
void SetValue(const GUI_SAVE& entry, const QVariant& value);
|
||||
|
||||
/** Sets the visibility of the chosen category. */
|
||||
void SetCategoryVisibility(const QString& cat, const bool& val);
|
||||
void SetCategoryVisibility(int cat, const bool& val);
|
||||
|
||||
void SetGamelistColVisibility(int col, bool val);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue