cutter/src/dialogs/HexdumpRangeDialog.h
ncyellow ae35ac9d08 Minor Header Optimizations (#1429)
1. remove unnecessary includes. compile optimization
2. add more const for getter functions
2019-04-06 14:04:55 +02:00

38 lines
732 B
C++

#ifndef HEXDUMPRANGEDIALOG_H
#define HEXDUMPRANGEDIALOG_H
#include "core/CutterCommon.h"
#include <QDialog>
namespace Ui {
class HexdumpRangeDialog;
}
class HexdumpRangeDialog : public QDialog
{
Q_OBJECT
public:
explicit HexdumpRangeDialog(QWidget *parent = nullptr);
~HexdumpRangeDialog();
QString getStartAddress() const;
QString getEndAddress() const;
QString getLength() const;
bool getEndAddressRadioButtonChecked() const;
bool getLengthRadioButtonChecked() const;
void setStartAddress(ut64 start);
public slots:
void textEdited();
private:
Ui::HexdumpRangeDialog *ui;
private slots:
void on_radioButtonClicked(bool checked);
};
#endif // HEXDUMPRANGEDIALOG_H