mirror of
https://github.com/isledecomp/SIEdit.git
synced 2024-11-27 09:35:45 -05:00
33 lines
436 B
C
33 lines
436 B
C
|
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <chunk.h>
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
#include "chunkmodel.h"
|
||
|
|
||
|
class MainWindow : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit MainWindow(QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
private:
|
||
|
//bool CloseFile();
|
||
|
|
||
|
void InitializeMenuBar();
|
||
|
|
||
|
ChunkModel model_;
|
||
|
Chunk chunk_;
|
||
|
|
||
|
private slots:
|
||
|
void OpenFile();
|
||
|
//bool SaveFile();
|
||
|
//bool SaveFileAs();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // MAINWINDOW_H
|