2013-04-11 09:35:10 +00:00
|
|
|
#ifndef DIALOGCONDUCTORAUTONUM_H
|
|
|
|
#define DIALOGCONDUCTORAUTONUM_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2013-04-18 08:00:09 +00:00
|
|
|
#include "diagram.h"
|
|
|
|
|
2013-04-11 09:35:10 +00:00
|
|
|
namespace Ui {
|
|
|
|
class DialogConductorAutoNum;
|
|
|
|
}
|
|
|
|
|
|
|
|
class DialogConductorAutoNum : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-04-18 08:00:09 +00:00
|
|
|
explicit DialogConductorAutoNum(Diagram *dg, QWidget *parent = 0);
|
2013-04-11 09:35:10 +00:00
|
|
|
~DialogConductorAutoNum();
|
|
|
|
|
2013-04-18 08:00:09 +00:00
|
|
|
private slots:
|
|
|
|
void on_pushButton_delete_clicked();
|
|
|
|
|
|
|
|
void on_pushButton_close_clicked();
|
|
|
|
|
2013-04-11 09:35:10 +00:00
|
|
|
private:
|
|
|
|
Ui::DialogConductorAutoNum *ui;
|
2013-04-18 08:00:09 +00:00
|
|
|
Diagram *dg_;
|
2013-04-11 09:35:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DIALOGCONDUCTORAUTONUM_H
|