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