mirror of https://github.com/PCSX2/pcsx2.git
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#pragma once
|
|
#include <string>
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_GameListSettingsWidget.h"
|
|
|
|
class SettingsWindow;
|
|
|
|
class GameListSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GameListSettingsWidget(SettingsWindow* dialog, QWidget* parent);
|
|
~GameListSettingsWidget();
|
|
|
|
bool addExcludedPath(const std::string& path);
|
|
void refreshExclusionList();
|
|
|
|
Q_SIGNALS:
|
|
void preferEnglishGameListChanged();
|
|
|
|
public Q_SLOTS:
|
|
void addSearchDirectory(QWidget* parent_widget);
|
|
|
|
private Q_SLOTS:
|
|
void onDirectoryListContextMenuRequested(const QPoint& point);
|
|
void onDirectoryListSelectionChanged();
|
|
void onAddSearchDirectoryButtonClicked();
|
|
void onRemoveSearchDirectoryButtonClicked();
|
|
void onAddExcludedFileButtonClicked();
|
|
void onAddExcludedPathButtonClicked();
|
|
void onRemoveExcludedPathButtonClicked();
|
|
void onExcludedPathsSelectionChanged();
|
|
void onScanForNewGamesClicked();
|
|
void onRescanAllGamesClicked();
|
|
|
|
protected:
|
|
bool event(QEvent* event);
|
|
|
|
private:
|
|
void addPathToTable(const std::string& path, bool recursive);
|
|
void refreshDirectoryList();
|
|
void addSearchDirectory(const QString& path, bool recursive);
|
|
void removeSearchDirectory(const QString& path);
|
|
|
|
Ui::GameListSettingsWidget m_ui;
|
|
};
|