mirror of
https://github.com/Rosalie241/RMG.git
synced 2026-07-11 01:24:01 +02:00
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
/*
|
|
* Rosalie's Mupen GUI - https://github.com/Rosalie241/RMG
|
|
* Copyright (C) 2020-2026 Rosalie Wanders <rosalie@mailbox.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 3.
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef ROMSEARCHERTHREAD_HPP
|
|
#define ROMSEARCHERTHREAD_HPP
|
|
|
|
#include <RMG-Core/RomSettings.hpp>
|
|
#include <RMG-Core/RomHeader.hpp>
|
|
#include <RMG-Core/Rom.hpp>
|
|
|
|
#include <QString>
|
|
#include <QThread>
|
|
|
|
struct RomSearcherThreadData
|
|
{
|
|
QString File;
|
|
CoreRomType Type;
|
|
CoreRomHeader Header;
|
|
CoreRomSettings Settings;
|
|
};
|
|
|
|
namespace Thread
|
|
{
|
|
class RomSearcherThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RomSearcherThread(QObject *);
|
|
~RomSearcherThread(void);
|
|
|
|
void SetDirectory(QString);
|
|
void SetRecursive(bool);
|
|
void SetMaximumFiles(int);
|
|
void Stop(void);
|
|
|
|
void run(void) override;
|
|
|
|
private:
|
|
QString directory;
|
|
bool recursive = false;
|
|
int maxItems = 0;
|
|
bool stop = false;
|
|
|
|
void searchDirectory(QString);
|
|
|
|
signals:
|
|
void RomsFound(QList<RomSearcherThreadData> data, int index, int count);
|
|
void Finished(bool canceled);
|
|
};
|
|
} // namespace Thread
|
|
|
|
#endif // ROMSEARCHERTHREAD_HPP
|