mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 19:36:11 +00:00
ab27e09b91
Sometimes it is not necessary to include the whole Cutter.h file Hence, it's been splitted so you can include only what you require E.g. #include "core/CutterCommon.h" to have access to the common types
34 lines
597 B
C++
34 lines
597 B
C++
#ifndef SETTODATADIALOG_H
|
|
#define SETTODATADIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "core/Cutter.h"
|
|
|
|
namespace Ui {
|
|
class SetToDataDialog;
|
|
}
|
|
|
|
class SetToDataDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SetToDataDialog(RVA startAddr, QWidget *parent = nullptr);
|
|
~SetToDataDialog();
|
|
|
|
int getItemSize();
|
|
int getItemCount();
|
|
|
|
private slots:
|
|
void on_sizeEdit_textChanged(const QString &arg1);
|
|
void on_repeatEdit_textChanged(const QString &arg1);
|
|
|
|
private:
|
|
void updateEndAddress();
|
|
|
|
Ui::SetToDataDialog *ui;
|
|
RVA startAddress;
|
|
};
|
|
|
|
#endif // SETTODATADIALOG_H
|