blob: e087a1e444223105a458bfa11814e4c87fff75cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef BYTEWINDOW_H
#define BYTEWINDOW_H
#include <QDialog>
QT_BEGIN_NAMESPACE
namespace Ui { class ByteWindow; }
QT_END_NAMESPACE
enum class ByteWindowOption {
BWO_UNKNOWN,
BWO_INSERT,
BWO_DELETE
};
class ByteWindow : public QDialog
{
Q_OBJECT
public:
explicit ByteWindow(QWidget *parent = nullptr);
~ByteWindow();
void set(ByteWindowOption option, int offset, int size);
ByteWindowOption getOption();
int getOffset();
int getSize();
private:
Ui::ByteWindow *ui;
};
#endif // BYTEWINDOW_H
|