2019-12-31 06:17:17 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
|
|
|
|
#include "ui_gamelistsettingswidget.h"
|
|
|
|
|
|
|
|
class QtHostInterface;
|
|
|
|
|
|
|
|
class GameListSearchDirectoriesModel;
|
|
|
|
|
|
|
|
class GameListSettingsWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
GameListSettingsWidget(QtHostInterface* host_interface, QWidget* parent = nullptr);
|
|
|
|
~GameListSettingsWidget();
|
|
|
|
|
2020-01-24 04:50:53 +00:00
|
|
|
public Q_SLOTS:
|
|
|
|
void addSearchDirectory(QWidget* parent_widget);
|
|
|
|
|
2019-12-31 06:17:17 +00:00
|
|
|
private Q_SLOTS:
|
2019-12-31 06:40:20 +00:00
|
|
|
void onDirectoryListItemClicked(const QModelIndex& index);
|
2020-07-28 16:51:52 +00:00
|
|
|
void onDirectoryListContextMenuRequested(const QPoint& point);
|
2020-07-17 10:50:02 +00:00
|
|
|
void onAddSearchDirectoryButtonClicked();
|
|
|
|
void onRemoveSearchDirectoryButtonClicked();
|
|
|
|
void onScanForNewGamesClicked();
|
|
|
|
void onRescanAllGamesClicked();
|
|
|
|
void onUpdateRedumpDatabaseButtonClicked();
|
2019-12-31 06:17:17 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent* event);
|
|
|
|
|
|
|
|
private:
|
2020-01-24 04:51:25 +00:00
|
|
|
bool downloadRedumpDatabase(const QString& download_path);
|
|
|
|
|
2019-12-31 06:17:17 +00:00
|
|
|
QtHostInterface* m_host_interface;
|
|
|
|
|
|
|
|
Ui::GameListSettingsWidget m_ui;
|
|
|
|
|
|
|
|
GameListSearchDirectoriesModel* m_search_directories_model = nullptr;
|
|
|
|
};
|