mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-22 13:29:14 +01:00
134bb8f277
* adding in ASH0, LZ77 and ( messy ) U8 classes git-svn-id: http://wiiqt.googlecode.com/svn/trunk@12 389f4c8b-5dfe-645f-db0e-df882bc27289
41 lines
820 B
C++
Executable File
41 lines
820 B
C++
Executable File
#ifndef NANDWINDOW_H
|
|
#define NANDWINDOW_H
|
|
|
|
#include "includes.h"
|
|
#include "../WiiQt/nandbin.h"
|
|
|
|
namespace Ui {
|
|
class NandWindow;
|
|
}
|
|
|
|
class NandWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
public:
|
|
NandWindow(QWidget *parent = 0);
|
|
~NandWindow();
|
|
|
|
protected:
|
|
void changeEvent(QEvent *e);
|
|
|
|
private:
|
|
Ui::NandWindow *ui;
|
|
|
|
NandBin nandBin;
|
|
|
|
//just put these here and create a slot to make the GUI not
|
|
//look so ugly when it hangs while stuff is extracting
|
|
QString exPath;
|
|
QTreeWidgetItem* exItem;
|
|
|
|
public slots:
|
|
void GetError( QString );
|
|
void GetStatusUpdate( QString );
|
|
|
|
private slots:
|
|
void on_actionOpen_Nand_triggered();
|
|
void on_treeWidget_customContextMenuRequested(QPoint pos);
|
|
void ExtractShit();
|
|
};
|
|
|
|
#endif // NANDWINDOW_H
|