mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
ca821e1064
First commit with the app code
31 lines
459 B
C++
31 lines
459 B
C++
#ifndef RENAMEDIALOG_H
|
|
#define RENAMEDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class RenameDialog;
|
|
}
|
|
|
|
class RenameDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RenameDialog(QWidget *parent = 0);
|
|
~RenameDialog();
|
|
|
|
void setFunctionName(QString fcnName);
|
|
QString getFunctionName();
|
|
|
|
private slots:
|
|
void on_buttonBox_accepted();
|
|
|
|
void on_buttonBox_rejected();
|
|
|
|
private:
|
|
Ui::RenameDialog *ui;
|
|
};
|
|
|
|
#endif // RENAMEDIALOG_H
|