stec-platform
inputlength.h
1 #ifndef INPUTLENGTH_H
2 #define INPUTLENGTH_H
3 
4 #include <QDialog>
5 #include "platformg_global.h"
6 
7 namespace Ui {
8 class InputLength;
9 }
10 
16 class PLATFORMGSHARED_EXPORT InputLength : public QDialog
17 {
18  Q_OBJECT
19 private :
20  QString tag;
21  int index;
22 public:
31  explicit InputLength(QString tagname, int row, QVariant value, QString text, QWidget *parent = 0);
32 
34  virtual ~InputLength();
35 
43  void setDialog(QString tagname, int row, QVariant value, QString text);
44 
45 private slots:
46  void on_buttonBox_accepted();
47  void on_buttonBox_rejected();
48 
49 private:
50  Ui::InputLength *ui;
51 };
52 
53 #endif // INPUTLENGTH_H
The InputLength class Expanding tag lengths.
Definition: inputlength.h:17