1
git-svn-id: svn://db.shs.com.ru/libs@1 a8b55f48-bf90-11e4-a774-851b48703e85
This commit is contained in:
40
qad_utils/qpiconfignewdialog.h
Normal file
40
qad_utils/qpiconfignewdialog.h
Normal file
@@ -0,0 +1,40 @@
|
||||
#ifndef QPICONFIGNEWDIALOG_H
|
||||
#define QPICONFIGNEWDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QRadioButton>
|
||||
|
||||
|
||||
namespace Ui {
|
||||
class QPIConfigNewDialog;
|
||||
}
|
||||
|
||||
|
||||
class QPIConfigNewDialog: public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
QPIConfigNewDialog(QWidget * parent = 0);
|
||||
|
||||
QString type();
|
||||
QString name();
|
||||
QString value();
|
||||
QString comment();
|
||||
void reset(bool node = false);
|
||||
|
||||
protected:
|
||||
void changeEvent(QEvent * e);
|
||||
|
||||
Ui::QPIConfigNewDialog * ui;
|
||||
|
||||
private slots:
|
||||
void on_lineName_textChanged(const QString & text);
|
||||
void typeChanged();
|
||||
|
||||
private:
|
||||
QList<QRadioButton * > radios;
|
||||
|
||||
};
|
||||
|
||||
#endif // QPICONFIGNEWDIALOG_H
|
||||
Reference in New Issue
Block a user