stec-platform
ownership.h
1 #ifndef OWNERSHITP_H
2 #define OWNERSHITP_H
3 
4 #include <QWidget>
5 #include "platformg_global.h"
6 #include <publicationregistration.h>
7 
8 namespace Ui {
9 class OwnerShip;
10 }
11 
17 class PLATFORMGSHARED_EXPORT OwnerShip : public QWidget
18 {
19  Q_OBJECT
20 
21 
22 public:
23 
24 
31  explicit OwnerShip(int Row, QString Vtype, QWidget *parent = nullptr);
32 
34  virtual ~OwnerShip();
35 
36 private slots:
37  void on_radioButtonOwner_clicked();
38  void on_radioButtonLocal_clicked();
39  void on_radioButtonDefault_clicked();
40 
41 
42 private:
43  Ui::OwnerShip *ui;
44  void ReSetDisplays();
45  QString vtypeName;
46  int row;
47  int first;
48 
49 public slots :
50  void NewSelecton(int,QString);
51  signals:
52  void Changed(int,QString);
53 };
54 
55 #endif // OWNERSHITP_H
The OwnerShip class Soon to be delete, obsolete with this release.
Definition: ownership.h:18