mirror of
https://github.com/martravi/wiiqt6.git
synced 2025-02-16 19:49:13 +01:00
![giantpune@gmail.com](/assets/img/avatar_default.png)
* fiix bug when writing supercluster * add macros for nand attributes * adding another example program for creating nand.bin and adding wads. it SEEMS to work as expected, but still, use it with EXTREME CAUTION * changed default NUS_Cache path in NUS downloader to parent directly so the 2 example programs can share the same cache * added "-all" argument for the nandBinchecker git-svn-id: http://wiiqt.googlecode.com/svn/trunk@26 389f4c8b-5dfe-645f-db0e-df882bc27289
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include "../WiiQt/includes.h"
|
|
#include "../WiiQt/nusdownloader.h"
|
|
#include "../WiiQt/nandbin.h"
|
|
#include "../WiiQt/uidmap.h"
|
|
#include "../WiiQt/sharedcontentmap.h"
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow( QWidget *parent = 0 );
|
|
~MainWindow();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
QTreeWidgetItem *root;
|
|
bool nandInited;
|
|
bool uidDirty;
|
|
bool sharedDirty;
|
|
bool nandDirty;
|
|
|
|
NusDownloader nus;
|
|
NandBin nand;
|
|
UIDmap uid;
|
|
SharedContentMap shared;
|
|
bool FlushNand();
|
|
|
|
void ShowMessage( const QString& mes );
|
|
|
|
bool InitNand( const QString &path );
|
|
bool UpdateTree();
|
|
|
|
QString PathFromItem( QTreeWidgetItem *item );
|
|
QTreeWidgetItem *ItemFromPath( const QString &path );
|
|
QTreeWidgetItem *FindItem( const QString &s, QTreeWidgetItem *parent );
|
|
|
|
bool InstallNUSItem( NusJob job );
|
|
quint16 CreateIfNeeded( const QString &path, quint32 uid, quint16 gid, quint8 attr, quint8 user_perm, quint8 group_perm, quint8 other_perm );
|
|
bool InstallSharedContent( const QByteArray stuff, const QByteArray hash = QByteArray() );
|
|
|
|
public slots:
|
|
//slots for getting info from the NUS downloader
|
|
void GetError( const QString &message, NusJob job );
|
|
void GetError( const QString &message );
|
|
void NusIsDone();
|
|
void ReceiveTitleFromNus( NusJob job );
|
|
|
|
private slots:
|
|
void on_actionAbout_triggered();
|
|
void on_pushButton_initNand_clicked();
|
|
void on_actionNew_nand_from_keys_triggered();
|
|
void on_actionFlush_triggered();
|
|
void on_actionSetting_txt_triggered();
|
|
void on_actionImportWad_triggered();
|
|
void on_pushButton_nandPath_clicked();
|
|
void on_pushButton_GetTitle_clicked();
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|