stec-platform
pjanicedialog.h
1 #ifndef PJANICEDIALOG_H
2 #define PJANICEDIALOG_H
3 
4 #include <QDialog>
5 #include "subscriptionabstracttablemodel.h"
6 #include "platformg_global.h"
7 #include "selectordockwidget.h"
8 
9 
10 class InputLength;
11 
17 class PLATFORMGSHARED_EXPORT PJaniceDialog : public SelectorDockWidget
18 {
19  Q_OBJECT
20 
21 public:
26  explicit PJaniceDialog( QWidget *parent = nullptr);
28  virtual ~PJaniceDialog();
29 
30 
31 
32 private slots:
33  void SlotEditThisTagValue(QString tagname, int row, QVariant v);
34  void SlotInsertDelete(QString tagname, int row );
35 
36 
37 private:
38  InputLength *vdlg;
39 
40 
41 
42 };
43 
44 #endif // PJANICEDIALOG_H
The InputLength class Expanding tag lengths.
Definition: inputlength.h:17
The PJaniceDialog class pjanice dialog.
Definition: pjanicedialog.h:18
The SelectorDockWidget class used with classes like pjnaice that are docked to scancontrol.
Definition: selectordockwidget.h:41