mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-26 14:44:20 +01:00
7cbba0738e
* add more "known updates" to the NUS class. now your can specify "3.4u" or similar instead of a TID and it will try to download all the titles that would have been in that update. the lists of titles were taken from wiimpersonator logs and when those were missing, from disc update partitions. thanks to markhemus and rduke for helping make the lists * NUS tool will now make sure there is a valid setting.txt in the nand after it is done installing titles to it git-svn-id: http://wiiqt.googlecode.com/svn/trunk@7 389f4c8b-5dfe-645f-db0e-df882bc27289
48 lines
968 B
C++
48 lines
968 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include "includes.h"
|
|
#include "nusdownloader.h"
|
|
#include "nanddump.h"
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow( QWidget *parent = 0 );
|
|
~MainWindow();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
|
|
NusDownloader nus;
|
|
NandDump nand;
|
|
|
|
void ShowMessage( const QString& mes );
|
|
|
|
|
|
|
|
public slots:
|
|
//slots for getting info from the NUS downloader
|
|
void GetError( const QString &message, NusJob job );
|
|
void NusIsDone();
|
|
void ReceiveTitleFromNus( NusJob job );
|
|
|
|
|
|
private slots:
|
|
void on_pushButton_wad_clicked();
|
|
void on_pushButton_decFolder_clicked();
|
|
void on_pushButton_nandPath_clicked();
|
|
void on_radioButton_wad_toggled(bool checked);
|
|
void on_radioButton_folder_toggled(bool checked);
|
|
void on_radioButton_nand_toggled(bool checked);
|
|
void on_pushButton_GetTitle_clicked();
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|