2015-09-01 06:35:33 +02:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-04-16 00:42:58 +02:00
|
|
|
#include <unordered_map>
|
2015-09-01 06:35:33 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <QWidget>
|
2017-12-16 19:09:55 +01:00
|
|
|
#include "common/common_types.h"
|
2018-04-20 02:56:24 +02:00
|
|
|
#include "ui_settings.h"
|
2015-09-01 06:35:33 +02:00
|
|
|
|
|
|
|
class GameListWorker;
|
2018-04-20 02:56:24 +02:00
|
|
|
class GameListDir;
|
2018-07-23 12:43:34 +02:00
|
|
|
class GameListSearchField;
|
2017-12-16 19:09:55 +01:00
|
|
|
class GMainWindow;
|
|
|
|
class QFileSystemWatcher;
|
|
|
|
class QHBoxLayout;
|
|
|
|
class QLabel;
|
|
|
|
class QLineEdit;
|
2018-04-20 02:56:24 +02:00
|
|
|
template <typename>
|
|
|
|
class QList;
|
2017-12-16 19:09:55 +01:00
|
|
|
class QModelIndex;
|
|
|
|
class QStandardItem;
|
|
|
|
class QStandardItemModel;
|
|
|
|
class QTreeView;
|
|
|
|
class QToolButton;
|
|
|
|
class QVBoxLayout;
|
2015-09-01 06:35:33 +02:00
|
|
|
|
2018-09-16 06:48:39 +02:00
|
|
|
enum class GameListOpenTarget { SAVE_DATA = 0, EXT_DATA = 1, APPLICATION = 2, UPDATE_DATA = 3 };
|
2018-02-02 21:18:19 +01:00
|
|
|
|
2015-09-01 06:35:33 +02:00
|
|
|
class GameList : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
COLUMN_NAME,
|
2018-04-16 00:42:58 +02:00
|
|
|
COLUMN_COMPATIBILITY,
|
2018-05-01 19:57:01 +02:00
|
|
|
COLUMN_REGION,
|
2016-04-13 23:04:05 +02:00
|
|
|
COLUMN_FILE_TYPE,
|
2015-09-01 06:35:33 +02:00
|
|
|
COLUMN_SIZE,
|
|
|
|
COLUMN_COUNT, // Number of columns
|
|
|
|
};
|
|
|
|
|
2017-04-30 04:04:39 +02:00
|
|
|
explicit GameList(GMainWindow* parent = nullptr);
|
2015-09-01 06:35:33 +02:00
|
|
|
~GameList() override;
|
|
|
|
|
2018-04-22 13:05:00 +02:00
|
|
|
QString getLastFilterResultItem();
|
2017-04-30 04:04:39 +02:00
|
|
|
void clearFilter();
|
|
|
|
void setFilterFocus();
|
2017-05-03 00:23:20 +02:00
|
|
|
void setFilterVisible(bool visibility);
|
2018-10-08 22:37:44 +02:00
|
|
|
void setDirectoryWatcherEnabled(bool enabled);
|
2018-04-20 02:56:24 +02:00
|
|
|
bool isEmpty();
|
2017-04-30 04:04:39 +02:00
|
|
|
|
2018-04-16 00:42:58 +02:00
|
|
|
void LoadCompatibilityList();
|
2018-04-20 02:56:24 +02:00
|
|
|
void PopulateAsync(QList<UISettings::GameDir>& game_dirs);
|
2015-09-01 06:35:33 +02:00
|
|
|
|
2016-01-24 21:23:55 +01:00
|
|
|
void SaveInterfaceLayout();
|
|
|
|
void LoadInterfaceLayout();
|
2015-09-07 08:51:57 +02:00
|
|
|
|
2018-01-19 14:42:21 +01:00
|
|
|
QStandardItemModel* GetModel() const;
|
|
|
|
|
2018-08-08 17:42:23 +02:00
|
|
|
QString FindGameByProgramID(u64 program_id);
|
|
|
|
|
2017-02-12 21:28:56 +01:00
|
|
|
static const QStringList supported_file_extensions;
|
|
|
|
|
2015-09-01 06:35:33 +02:00
|
|
|
signals:
|
|
|
|
void GameChosen(QString game_path);
|
|
|
|
void ShouldCancelWorker();
|
2018-02-02 21:18:19 +01:00
|
|
|
void OpenFolderRequested(u64 program_id, GameListOpenTarget target);
|
2018-05-10 03:57:57 +02:00
|
|
|
void NavigateToGamedbEntryRequested(
|
|
|
|
u64 program_id,
|
|
|
|
std::unordered_map<std::string, std::pair<QString, QString>>& compatibility_list);
|
2018-04-20 02:56:24 +02:00
|
|
|
void OpenDirectory(QString directory);
|
|
|
|
void AddDirectory();
|
|
|
|
void ShowList(bool show);
|
2015-09-01 06:35:33 +02:00
|
|
|
|
2017-04-30 04:04:39 +02:00
|
|
|
private slots:
|
2018-04-20 02:56:24 +02:00
|
|
|
void onItemExpanded(const QModelIndex& item);
|
2017-04-30 04:04:39 +02:00
|
|
|
void onTextChanged(const QString& newText);
|
|
|
|
void onFilterCloseClicked();
|
2018-04-20 02:56:24 +02:00
|
|
|
void onUpdateThemedIcons();
|
2017-04-30 04:04:39 +02:00
|
|
|
|
2015-09-01 06:35:33 +02:00
|
|
|
private:
|
2018-04-20 02:56:24 +02:00
|
|
|
void AddDirEntry(GameListDir* entry_items);
|
|
|
|
void AddEntry(const QList<QStandardItem*>& entry_items, GameListDir* parent);
|
2016-12-11 12:17:09 +01:00
|
|
|
void ValidateEntry(const QModelIndex& item);
|
2017-04-18 04:53:40 +02:00
|
|
|
void DonePopulating(QStringList watch_list);
|
2016-12-11 12:17:09 +01:00
|
|
|
|
2017-02-23 22:29:00 +01:00
|
|
|
void RefreshGameDirectory();
|
2016-12-15 10:55:03 +01:00
|
|
|
|
2018-04-20 02:56:24 +02:00
|
|
|
void PopupContextMenu(const QPoint& menu_location);
|
2018-09-16 06:48:39 +02:00
|
|
|
void AddGamePopup(QMenu& context_menu, const QString& path, u64 program_id, u64 extdata_id);
|
2018-04-20 02:56:24 +02:00
|
|
|
void AddCustomDirPopup(QMenu& context_menu, QModelIndex selected);
|
|
|
|
void AddPermDirPopup(QMenu& context_menu, QModelIndex selected);
|
|
|
|
|
2018-08-08 17:42:23 +02:00
|
|
|
QString FindGameByProgramID(QStandardItem* current_item, u64 program_id);
|
|
|
|
|
2018-07-23 12:43:34 +02:00
|
|
|
GameListSearchField* search_field;
|
2017-04-30 04:04:39 +02:00
|
|
|
GMainWindow* main_window = nullptr;
|
|
|
|
QVBoxLayout* layout = nullptr;
|
2015-09-01 06:35:33 +02:00
|
|
|
QTreeView* tree_view = nullptr;
|
|
|
|
QStandardItemModel* item_model = nullptr;
|
|
|
|
GameListWorker* current_worker = nullptr;
|
2017-04-18 04:53:40 +02:00
|
|
|
QFileSystemWatcher* watcher = nullptr;
|
2018-05-10 03:57:57 +02:00
|
|
|
std::unordered_map<std::string, std::pair<QString, QString>> compatibility_list;
|
2018-07-23 12:43:34 +02:00
|
|
|
|
|
|
|
friend class GameListSearchField;
|
2015-09-01 06:35:33 +02:00
|
|
|
};
|
2018-02-02 21:18:19 +01:00
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(GameListOpenTarget);
|
2018-04-20 02:56:24 +02:00
|
|
|
|
|
|
|
class GameListPlaceholder : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit GameListPlaceholder(GMainWindow* parent = nullptr);
|
|
|
|
~GameListPlaceholder();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void AddDirectory();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onUpdateThemedIcons();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void mouseDoubleClickEvent(QMouseEvent* event) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
GMainWindow* main_window = nullptr;
|
|
|
|
QVBoxLayout* layout = nullptr;
|
|
|
|
QLabel* image = nullptr;
|
|
|
|
QLabel* text = nullptr;
|
|
|
|
};
|