-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenergydialog.h
56 lines (35 loc) · 1.06 KB
/
energydialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef ENERGYDIALOG_H
#define ENERGYDIALOG_H
#include <QDialog>
#include <QStandardItemModel>
#include "mysortfilterproxymodel.h"
namespace Ui {
class EnergyDialog;
}
class EnergyDialog : public QDialog
{
Q_OBJECT
public:
explicit EnergyDialog(const QStringList &lName, const QStringList &lValue, QWidget *parent = 0);
~EnergyDialog();
signals:
void onPhysValChanged(QStringList,QStringList);
private slots:
void on_pbAddNew_clicked();
void on_tvAvailable_doubleClicked(const QModelIndex &index);
void on_tvProfileEnrg_clicked(const QModelIndex &index);
void on_tvAvailable_customContextMenuRequested(const QPoint &pos);
void resetSortingTvPhysVal();
void editTvPhysVal();
void onRecoverPhysVal_clicked();
void delSelectedPhysVal();
void on_buttonBox_accepted();
private:
Ui::EnergyDialog *ui;
QStandardItemModel *modelAvProf;
QStandardItemModel *modelProfiles;
MySortFilterProxyModel *proxy_modelAvProf;
QList<QVariant> lRecoverLvDevHistory;
QStringList ln, ld;
};
#endif // ENERGYDIALOG_H