Display a progress bar to notify the user, about the work is being done
This commit is contained in:
parent
490db42e44
commit
c37d826715
|
@ -7,11 +7,15 @@
|
|||
#include <array>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include <QMenuBar>
|
||||
#include <QPointer>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
class QMenu;
|
||||
class ParallelProgressDialog;
|
||||
|
||||
namespace Core
|
||||
{
|
||||
|
@ -28,6 +32,9 @@ namespace UICommon
|
|||
class GameFile;
|
||||
}
|
||||
|
||||
using RSOPairEntry = std::pair<u32, std::string>;
|
||||
using RSOVector = std::vector<RSOPairEntry>;
|
||||
|
||||
class MenuBar final : public QMenuBar
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -155,6 +162,7 @@ private:
|
|||
void GenerateSymbolsFromSignatureDB();
|
||||
void GenerateSymbolsFromRSO();
|
||||
void GenerateSymbolsFromRSOAuto();
|
||||
RSOVector DetectRSOModules(ParallelProgressDialog& progress);
|
||||
void LoadSymbolMap();
|
||||
void LoadOtherSymbolMap();
|
||||
void LoadBadSymbolMap();
|
||||
|
|
Loading…
Reference in New Issue