citra/src/citra_qt/game_list.h

119 lines
3.2 KiB
C
Raw Normal View History

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>
#include "common/common_types.h"
2015-09-01 06:35:33 +02:00
class GameListWorker;
class GMainWindow;
class QFileSystemWatcher;
class QHBoxLayout;
class QLabel;
class QLineEdit;
class QModelIndex;
class QStandardItem;
class QStandardItemModel;
class QTreeView;
class QToolButton;
class QVBoxLayout;
2015-09-01 06:35:33 +02:00
enum class GameListOpenTarget { SAVE_DATA = 0, APPLICATION = 1, UPDATE_DATA = 2 };
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
};
class SearchField : public QWidget {
public:
int visible;
int total;
2017-05-03 00:23:20 +02:00
void setFilterResult(int visible, int total);
void clear();
void setFocus();
explicit SearchField(GameList* parent = nullptr);
private:
class KeyReleaseEater : public QObject {
public:
explicit KeyReleaseEater(GameList* gamelist);
private:
GameList* gamelist = nullptr;
QString edit_filter_text_old;
protected:
bool eventFilter(QObject* obj, QEvent* event) override;
};
QHBoxLayout* layout_filter = nullptr;
QTreeView* tree_view = nullptr;
QLabel* label_filter = nullptr;
QLineEdit* edit_filter = nullptr;
QLabel* label_filter_result = nullptr;
QToolButton* button_filter_close = nullptr;
};
explicit GameList(GMainWindow* parent = nullptr);
2015-09-01 06:35:33 +02:00
~GameList() override;
QString getLastFilterResultItem();
void clearFilter();
void setFilterFocus();
2017-05-03 00:23:20 +02:00
void setFilterVisible(bool visibility);
2018-04-16 00:42:58 +02:00
void LoadCompatibilityList();
2015-09-01 06:35:33 +02:00
void PopulateAsync(const QString& dir_path, bool deep_scan);
void SaveInterfaceLayout();
void LoadInterfaceLayout();
2018-01-19 14:42:21 +01:00
QStandardItemModel* GetModel() const;
static const QStringList supported_file_extensions;
2015-09-01 06:35:33 +02:00
signals:
void GameChosen(QString game_path);
void ShouldCancelWorker();
void OpenFolderRequested(u64 program_id, GameListOpenTarget target);
void NavigateToGamedbEntryRequested(
u64 program_id,
std::unordered_map<std::string, std::pair<QString, QString>>& compatibility_list);
2015-09-01 06:35:33 +02:00
private slots:
void onTextChanged(const QString& newText);
void onFilterCloseClicked();
2015-09-01 06:35:33 +02:00
private:
void AddEntry(const QList<QStandardItem*>& entry_items);
void ValidateEntry(const QModelIndex& item);
void DonePopulating(QStringList watch_list);
void PopupContextMenu(const QPoint& menu_location);
void RefreshGameDirectory();
bool containsAllWords(QString haystack, QString userinput);
SearchField* search_field;
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;
QFileSystemWatcher* watcher = nullptr;
std::unordered_map<std::string, std::pair<QString, QString>> compatibility_list;
2015-09-01 06:35:33 +02:00
};
Q_DECLARE_METATYPE(GameListOpenTarget);