##// END OF EJS Templates
Minor updates for qt5 compatibility
leroy -
r66:17db61d84eef default
parent child
Show More
@@ -1,115 +1,114
1 #ifndef PARAMETERDUMP_H
1 #ifndef PARAMETERDUMP_H
2 #define PARAMETERDUMP_H
2 #define PARAMETERDUMP_H
3
3
4 #include <QGroupBox>
4 #include <QGroupBox>
5 #include <QGridLayout>
5 #include <QGridLayout>
6 #include <QPushButton>
6 #include <QPushButton>
7 #include <QLabel>
7 #include <QLabel>
8 #include <QSpinBox>
8 #include <QSpinBox>
9 #include <QDoubleSpinBox>
9 #include <QDoubleSpinBox>
10
10
11 #include <tmpackettoread.h>
11 #include <tmpackettoread.h>
12 #include <TC_types.h>
12 #include <TC_types.h>
13
13
14 #include "parameterdump_global.h"
15 #include "tcpackettosend.h"
14 #include "tcpackettosend.h"
16
15
17 class PARAMETERDUMPSHARED_EXPORT ParameterDump : public QWidget
16 class ParameterDump : public QWidget
18 {
17 {
19 Q_OBJECT
18 Q_OBJECT
20 public:
19 public:
21 explicit ParameterDump(QWidget *parent = 0);
20 explicit ParameterDump(QWidget *parent = 0);
22
21
23 void buildTabParameterDump();
22 void buildTabParameterDump();
24 void buildCOMM();
23 void buildCOMM();
25 void buildNORM();
24 void buildNORM();
26 void buildBURST();
25 void buildBURST();
27 void buildSBM1();
26 void buildSBM1();
28 void buildSBM2();
27 void buildSBM2();
29 void buildActions();
28 void buildActions();
30 void updateParameterDump(TMPacketToRead *tmPacketToRead);
29 void updateParameterDump(TMPacketToRead *tmPacketToRead);
31 void actionsSetEnabled(bool state);
30 void actionsSetEnabled(bool state);
32
31
33 void GetCRCAsTwoBytes(unsigned char* data, unsigned char* crcAsTwoBytes, unsigned int sizeOfData);
32 void GetCRCAsTwoBytes(unsigned char* data, unsigned char* crcAsTwoBytes, unsigned int sizeOfData);
34
33
35 QGroupBox* groupbox_parameterDump;
34 QGroupBox* groupbox_parameterDump;
36 QGroupBox* groupbox_COMM;
35 QGroupBox* groupbox_COMM;
37 QGroupBox* groupbox_NORM;
36 QGroupBox* groupbox_NORM;
38 QGroupBox* groupbox_BURST;
37 QGroupBox* groupbox_BURST;
39 QGroupBox* groupbox_SBM1;
38 QGroupBox* groupbox_SBM1;
40 QGroupBox* groupbox_SBM2;
39 QGroupBox* groupbox_SBM2;
41
40
42 QGridLayout* layout_parameterDump;
41 QGridLayout* layout_parameterDump;
43 QGridLayout* layout_COMM;
42 QGridLayout* layout_COMM;
44 QGridLayout* layout_NORM;
43 QGridLayout* layout_NORM;
45 QGridLayout* layout_BURST;
44 QGridLayout* layout_BURST;
46 QGridLayout* layout_SBM1;
45 QGridLayout* layout_SBM1;
47 QGridLayout* layout_SBM2;
46 QGridLayout* layout_SBM2;
48
47
49 QPushButton* button_loadCommon;
48 QPushButton* button_loadCommon;
50 QPushButton* button_loadNormal;
49 QPushButton* button_loadNormal;
51 QPushButton* button_loadBurst;
50 QPushButton* button_loadBurst;
52 QPushButton* button_loadSBM1;
51 QPushButton* button_loadSBM1;
53 QPushButton* button_loadSBM2;
52 QPushButton* button_loadSBM2;
54 QPushButton* button_parameterDump;
53 QPushButton* button_parameterDump;
55 //
54 //
56 QLabel* sy_lfr_bw;
55 QLabel* sy_lfr_bw;
57 QLabel* sy_lfr_sp0;
56 QLabel* sy_lfr_sp0;
58 QLabel* sy_lfr_sp1;
57 QLabel* sy_lfr_sp1;
59 QLabel* sy_lfr_r0;
58 QLabel* sy_lfr_r0;
60 QLabel* sy_lfr_r1;
59 QLabel* sy_lfr_r1;
61 //
60 //
62 QLabel* sy_lfr_n_swf_l;
61 QLabel* sy_lfr_n_swf_l;
63 QLabel* sy_lfr_n_swf_p;
62 QLabel* sy_lfr_n_swf_p;
64 QLabel* sy_lfr_n_asm_p;
63 QLabel* sy_lfr_n_asm_p;
65 QLabel* sy_lfr_n_bp_p0;
64 QLabel* sy_lfr_n_bp_p0;
66 QLabel* sy_lfr_n_bp_p1;
65 QLabel* sy_lfr_n_bp_p1;
67 QLabel* sy_lfr_n_cwf_long_f3;
66 QLabel* sy_lfr_n_cwf_long_f3;
68 //
67 //
69 QLabel* sy_lfr_b_bp_p0;
68 QLabel* sy_lfr_b_bp_p0;
70 QLabel* sy_lfr_b_bp_p1;
69 QLabel* sy_lfr_b_bp_p1;
71 //
70 //
72 QLabel* sy_lfr_s1_bp_p0;
71 QLabel* sy_lfr_s1_bp_p0;
73 QLabel* sy_lfr_s1_bp_p1;
72 QLabel* sy_lfr_s1_bp_p1;
74 //
73 //
75 QLabel* sy_lfr_s2_bp_p0;
74 QLabel* sy_lfr_s2_bp_p0;
76 QLabel* sy_lfr_s2_bp_p1;
75 QLabel* sy_lfr_s2_bp_p1;
77
76
78 QSpinBox* spinbox_sy_lfr_bw;
77 QSpinBox* spinbox_sy_lfr_bw;
79 QSpinBox* spinbox_sy_lfr_sp0;
78 QSpinBox* spinbox_sy_lfr_sp0;
80 QSpinBox* spinbox_sy_lfr_sp1;
79 QSpinBox* spinbox_sy_lfr_sp1;
81 QSpinBox* spinbox_sy_lfr_r0;
80 QSpinBox* spinbox_sy_lfr_r0;
82 QSpinBox* spinbox_sy_lfr_r1;
81 QSpinBox* spinbox_sy_lfr_r1;
83 //
82 //
84 QSpinBox* spinbox_sy_lfr_n_swf_l;
83 QSpinBox* spinbox_sy_lfr_n_swf_l;
85 QSpinBox* spinbox_sy_lfr_n_swf_p;
84 QSpinBox* spinbox_sy_lfr_n_swf_p;
86 QSpinBox* spinbox_sy_lfr_n_asm_p;
85 QSpinBox* spinbox_sy_lfr_n_asm_p;
87 QSpinBox* spinbox_sy_lfr_n_bp_p0;
86 QSpinBox* spinbox_sy_lfr_n_bp_p0;
88 QSpinBox* spinbox_sy_lfr_n_bp_p1;
87 QSpinBox* spinbox_sy_lfr_n_bp_p1;
89 QSpinBox* spinbox_sy_lfr_n_cwf_long_f3;
88 QSpinBox* spinbox_sy_lfr_n_cwf_long_f3;
90 //
89 //
91 QSpinBox* spinbox_sy_lfr_b_bp_p0;
90 QSpinBox* spinbox_sy_lfr_b_bp_p0;
92 QSpinBox* spinbox_sy_lfr_b_bp_p1;
91 QSpinBox* spinbox_sy_lfr_b_bp_p1;
93 //
92 //
94 QDoubleSpinBox* spinbox_sy_lfr_s1_bp_p0;
93 QDoubleSpinBox* spinbox_sy_lfr_s1_bp_p0;
95 QSpinBox* spinbox_sy_lfr_s1_bp_p1;
94 QSpinBox* spinbox_sy_lfr_s1_bp_p1;
96 //
95 //
97 QSpinBox* spinbox_sy_lfr_s2_bp_p0;
96 QSpinBox* spinbox_sy_lfr_s2_bp_p0;
98 QSpinBox* spinbox_sy_lfr_s2_bp_p1;
97 QSpinBox* spinbox_sy_lfr_s2_bp_p1;
99
98
100 TCPacketToSend* packetToSend;
99 TCPacketToSend* packetToSend;
101
100
102 signals:
101 signals:
103 unsigned int WriteSPWSig(char *Value, unsigned int count, char targetLogicalAddress, char userApplication);
102 unsigned int WriteSPWSig(char *Value, unsigned int count, char targetLogicalAddress, char userApplication);
104
103
105 public slots:
104 public slots:
106 void sendParameterDump();
105 void sendParameterDump();
107 void sendLoadCommon();
106 void sendLoadCommon();
108 void sendLoadNormal();
107 void sendLoadNormal();
109 void sendLoadBurst();
108 void sendLoadBurst();
110 void sendLoadSBM1();
109 void sendLoadSBM1();
111 void sendLoadSBM2();
110 void sendLoadSBM2();
112
111
113 };
112 };
114
113
115 #endif // PARAMETERDUMP_H
114 #endif // PARAMETERDUMP_H
@@ -1,49 +1,48
1 #-------------------------------------------------
1 #-------------------------------------------------
2 #
2 #
3 # Project created by QtCreator 2013-07-29T11:18:13
3 # Project created by QtCreator 2013-07-29T11:18:13
4 #
4 #
5 #-------------------------------------------------
5 #-------------------------------------------------
6
6
7 TARGET = parameterdump
7 TARGET = parameterdump
8 TEMPLATE = lib
8 TEMPLATE = lib
9
9
10 QT += core
10 QT += core
11
11
12 contains(QT_MAJOR_VERSION, 5) {
12 contains(QT_MAJOR_VERSION, 5) {
13
13
14 QT += widgets
14 QT += widgets
15
15
16 QT += printsupport
16 QT += printsupport
17
17
18 }
18 }
19
19
20 INCLUDEPATH += \
20 INCLUDEPATH += \
21 ../../DEV_PLE/header \
21 ../../DEV_PLE/header \
22 ../rmapplugin \
22 ../rmapplugin \
23 $${PWD}
23 $${PWD}
24
24
25 DEFINES += PARAMETERDUMP_LIBRARY
25 DEFINES += PARAMETERDUMP_LIBRARY
26
26
27 SOURCES += parameterdump.cpp \
27 SOURCES += parameterdump.cpp \
28 tcpackettosend.cpp \
28 tcpackettosend.cpp \
29 ../rmapplugin/tmpackettoread.cpp
29 ../rmapplugin/tmpackettoread.cpp
30
30
31 HEADERS += parameterdump.h \
31 HEADERS += parameterdump.h \
32 parameterdump_global.h \
33 tcpackettosend.h \
32 tcpackettosend.h \
34 ../../DEV_PLE/header/ccsds_types.h \
33 ../../DEV_PLE/header/ccsds_types.h \
35 ../../DEV_PLE/header/TC_types.h \
34 ../../DEV_PLE/header/TC_types.h \
36 ../rmapplugin/tmpackettoread.h
35 ../rmapplugin/tmpackettoread.h
37
36
38 header.path = $$[QT_INSTALL_HEADERS]/lppmon/parameterdump
37 header.path = $$[QT_INSTALL_HEADERS]/lppmon/parameterdump
39 header.files = \
38 header.files = \
40 parameterdump.h \
39 parameterdump.h \
41 parameterdump_global.h \
40 parameterdump_global.h \
42 tcpackettosend.h
41 tcpackettosend.h
43
42
44 target.path = $$[QT_INSTALL_LIBS]
43 target.path = $$[QT_INSTALL_LIBS]
45 isEmpty(target.path) {
44 isEmpty(target.path) {
46 target.path = $(QTDIR)/lib
45 target.path = $(QTDIR)/lib
47 }
46 }
48
47
49 INSTALLS += header target
48 INSTALLS += header target
@@ -1,28 +1,28
1 #ifndef TCPACKETTOSEND_H
1 #ifndef TCPACKETTOSEND_H
2 #define TCPACKETTOSEND_H
2 #define TCPACKETTOSEND_H
3
3
4 #include <QObject>
4 #include <QObject>
5
5
6 #include "parameterdump_global.h"
6 #include "parameterdump_global.h"
7 #include <TC_types.h>
7 #include <TC_types.h>
8
8
9 class PARAMETERDUMPSHARED_EXPORT TCPacketToSend : public QObject
9 class TCPacketToSend : public QObject
10 {
10 {
11 Q_OBJECT
11 Q_OBJECT
12 public:
12 public:
13 explicit TCPacketToSend(QObject *parent = 0);
13 explicit TCPacketToSend(QObject *parent = 0);
14
14
15 unsigned char calculateDataCRC(char *data, int nbBytes);
15 unsigned char calculateDataCRC(char *data, int nbBytes);
16 void initLookUpTableForCRC( void );
16 void initLookUpTableForCRC( void );
17
17
18 void GetCRCAsTwoBytes(unsigned char* data, unsigned char* crcAsTwoBytes, unsigned int sizeOfData);
18 void GetCRCAsTwoBytes(unsigned char* data, unsigned char* crcAsTwoBytes, unsigned int sizeOfData);
19 unsigned int Crc_opt( unsigned char D, unsigned int Chk);
19 unsigned int Crc_opt( unsigned char D, unsigned int Chk);
20 unsigned int lookUpTableForCRC[256];
20 unsigned int lookUpTableForCRC[256];
21
21
22 signals:
22 signals:
23
23
24 public slots:
24 public slots:
25
25
26 };
26 };
27
27
28 #endif // TCPACKETTOSEND_H
28 #endif // TCPACKETTOSEND_H
@@ -1,127 +1,125
1 #ifndef PAGESPECTRA_H
1 #ifndef PAGESPECTRA_H
2 #define PAGESPECTRA_H
2 #define PAGESPECTRA_H
3
3
4 #include "wfdisplay_global.h"
5
6 #include <QMainWindow>
4 #include <QMainWindow>
7 #include <QRadioButton>
5 #include <QRadioButton>
8 #include <QPushButton>
6 #include <QPushButton>
9 #include <QDockWidget>
7 #include <QDockWidget>
10 #include <QToolBar>
8 #include <QToolBar>
11 #include <QLabel>
9 #include <QLabel>
12 #include <QFile>
10 #include <QFile>
13 #include <QTextStream>
11 #include <QTextStream>
14 #include <QFileDialog>
12 #include <QFileDialog>
15 #include <QSettings>
13 #include <QSettings>
16
14
17 #include <wfplot.h>
15 #include <wfplot.h>
18 #include <wfdisplay_params.h>
16 #include <wfdisplay_params.h>
19
17
20 class PageSpectra : public QMainWindow
18 class PageSpectra : public QMainWindow
21 {
19 {
22 Q_OBJECT
20 Q_OBJECT
23 public:
21 public:
24 explicit PageSpectra(QWidget *parent = 0);
22 explicit PageSpectra(QWidget *parent = 0);
25
23
26 void createToolBar();
24 void createToolBar();
27 void buildDockList();
25 void buildDockList();
28 void unTabify();
26 void unTabify();
29 void tabify();
27 void tabify();
30 // STORE
28 // STORE
31 void buildFileNames();
29 void buildFileNames();
32 bool islogfileenable();
30 bool islogfileenable();
33 void appendToLogFile(const QString & text);
31 void appendToLogFile(const QString & text);
34 void closeEvent(QCloseEvent *event);
32 void closeEvent(QCloseEvent *event);
35 void readSettings();
33 void readSettings();
36 void writeSettings();
34 void writeSettings();
37
35
38 bool logFileEn;
36 bool logFileEn;
39 bool storageEnabledV;
37 bool storageEnabledV;
40 bool storageEnabledE1;
38 bool storageEnabledE1;
41 bool storageEnabledE2;
39 bool storageEnabledE2;
42 bool storageEnabledB1;
40 bool storageEnabledB1;
43 bool storageEnabledB2;
41 bool storageEnabledB2;
44
42
45 QLabel *logFileName;
43 QLabel *logFileName;
46 QLabel *logFileNameV;
44 QLabel *logFileNameV;
47 QLabel *logFileNameE1;
45 QLabel *logFileNameE1;
48 QLabel *logFileNameE2;
46 QLabel *logFileNameE2;
49 QLabel *logFileNameB1;
47 QLabel *logFileNameB1;
50 QLabel *logFileNameB2;
48 QLabel *logFileNameB2;
51
49
52 QWidget *titleWidgetV;
50 QWidget *titleWidgetV;
53 QWidget *titleWidgetE1;
51 QWidget *titleWidgetE1;
54 QWidget *titleWidgetE2;
52 QWidget *titleWidgetE2;
55 QWidget *titleWidgetB1;
53 QWidget *titleWidgetB1;
56 QWidget *titleWidgetB2;
54 QWidget *titleWidgetB2;
57
55
58 QList<QDockWidget*> dockList;
56 QList<QDockWidget*> dockList;
59
57
60 QDockWidget *dockV;
58 QDockWidget *dockV;
61 QDockWidget *dockE1;
59 QDockWidget *dockE1;
62 QDockWidget *dockE2;
60 QDockWidget *dockE2;
63 QDockWidget *dockB1;
61 QDockWidget *dockB1;
64 QDockWidget *dockB2;
62 QDockWidget *dockB2;
65
63
66 QRadioButton *radio_v;
64 QRadioButton *radio_v;
67 QRadioButton *radio_e1;
65 QRadioButton *radio_e1;
68 QRadioButton *radio_e2;
66 QRadioButton *radio_e2;
69 QRadioButton *radio_b1;
67 QRadioButton *radio_b1;
70 QRadioButton *radio_b2;
68 QRadioButton *radio_b2;
71 QRadioButton *radio_tabify;
69 QRadioButton *radio_tabify;
72
70
73 QPushButton *button_selectAll;
71 QPushButton *button_selectAll;
74 QPushButton *button_storeWfrm;
72 QPushButton *button_storeWfrm;
75 QPushButton *button_chooseDir;
73 QPushButton *button_chooseDir;
76
74
77 QToolBar *myToolBar;
75 QToolBar *myToolBar;
78
76
79 WFPlot *wfPlot_v;
77 WFPlot *wfPlot_v;
80 WFPlot *wfPlot_e1;
78 WFPlot *wfPlot_e1;
81 WFPlot *wfPlot_e2;
79 WFPlot *wfPlot_e2;
82 WFPlot *wfPlot_b1;
80 WFPlot *wfPlot_b1;
83 WFPlot *wfPlot_b2;
81 WFPlot *wfPlot_b2;
84
82
85 QFile *logFile;
83 QFile *logFile;
86 QFile *logFileV;
84 QFile *logFileV;
87 QFile *logFileE1;
85 QFile *logFileE1;
88 QFile *logFileE2;
86 QFile *logFileE2;
89 QFile *logFileB1;
87 QFile *logFileB1;
90 QFile *logFileB2;
88 QFile *logFileB2;
91
89
92 QTextStream *logFileStrm;
90 QTextStream *logFileStrm;
93 QTextStream *logFileStrmV;
91 QTextStream *logFileStrmV;
94 QTextStream *logFileStrmE1;
92 QTextStream *logFileStrmE1;
95 QTextStream *logFileStrmE2;
93 QTextStream *logFileStrmE2;
96 QTextStream *logFileStrmB1;
94 QTextStream *logFileStrmB1;
97 QTextStream *logFileStrmB2;
95 QTextStream *logFileStrmB2;
98
96
99 QString pageTitle;
97 QString pageTitle;
100 QString defaultStorageDirectory;
98 QString defaultStorageDirectory;
101
99
102 unsigned int localIndex[5];
100 unsigned int localIndex[5];
103
101
104 //QGridLayout *mainLayout;
102 //QGridLayout *mainLayout;
105
103
106 void displayOnPlot(short *data, unsigned char num);
104 void displayOnPlot(short *data, unsigned char num);
107 void displayOnPlotFloat(float *data, unsigned char num);
105 void displayOnPlotFloat(float *data, unsigned char num);
108
106
109 signals:
107 signals:
110 void setLogFileName(QString FileName);
108 void setLogFileName(QString FileName);
111
109
112 public slots:
110 public slots:
113 void actionRadioV(bool state);
111 void actionRadioV(bool state);
114 void actionRadioE1(bool state);
112 void actionRadioE1(bool state);
115 void actionRadioE2(bool state);
113 void actionRadioE2(bool state);
116 void actionRadioB1(bool state);
114 void actionRadioB1(bool state);
117 void actionRadioB2(bool state);
115 void actionRadioB2(bool state);
118 void organizeDocks();
116 void organizeDocks();
119 void selectAll();
117 void selectAll();
120 void storeWfrm();
118 void storeWfrm();
121 void logFileEnDisable(bool state);
119 void logFileEnDisable(bool state);
122 void chooseDir();
120 void chooseDir();
123
121
124
122
125 };
123 };
126
124
127 #endif // PAGESPECTRA_H
125 #endif // PAGESPECTRA_H
@@ -1,37 +1,35
1 #ifndef WFDISPLAY_H
1 #ifndef WFDISPLAY_H
2 #define WFDISPLAY_H
2 #define WFDISPLAY_H
3
3
4 #include "wfdisplay_global.h"
5
6 #include <QWidget>
4 #include <QWidget>
7 #include <QGridLayout>
5 #include <QGridLayout>
8 #include <QVBoxLayout>
6 #include <QVBoxLayout>
9 #include <QTabWidget>
7 #include <QTabWidget>
10 #include <wfpage.h>
8 #include <wfpage.h>
11
9
12 class WFDisplay : public QWidget
10 class WFDisplay : public QWidget
13 {
11 {
14 Q_OBJECT
12 Q_OBJECT
15 public:
13 public:
16 explicit WFDisplay(QWidget *parent = 0, unsigned int bufferSize = 0, unsigned int xMAX = 0, unsigned int yMAX = 0);
14 explicit WFDisplay(QWidget *parent = 0, unsigned int bufferSize = 0, unsigned int xMAX = 0, unsigned int yMAX = 0);
17
15
18 WFPage * page_f0;
16 WFPage * page_f0;
19 WFPage * page_f1;
17 WFPage * page_f1;
20 WFPage * page_f2;
18 WFPage * page_f2;
21 WFPage * page_f3;
19 WFPage * page_f3;
22
20
23 QTabWidget *spwTabWidget;
21 QTabWidget *spwTabWidget;
24
22
25 QVBoxLayout *waveforms_LAYOUT;
23 QVBoxLayout *waveforms_LAYOUT;
26
24
27 void displayOnPlot(short *data, unsigned char num_page, unsigned char num,
25 void displayOnPlot(short *data, unsigned char num_page, unsigned char num,
28 unsigned int coarseTime, unsigned int fineTime, double deltaT, unsigned int nbData);
26 unsigned int coarseTime, unsigned int fineTime, double deltaT, unsigned int nbData);
29
27
30 signals:
28 signals:
31
29
32 public slots:
30 public slots:
33
31
34 };
32 };
35
33
36
34
37 #endif // WFDISPLAY_H
35 #endif // WFDISPLAY_H
@@ -1,57 +1,56
1 #-------------------------------------------------
1 #-------------------------------------------------
2 #
2 #
3 # Project created by QtCreator 2013-05-31T12:59:38
3 # Project created by QtCreator 2013-05-31T12:59:38
4 #
4 #
5 #-------------------------------------------------
5 #-------------------------------------------------
6
6
7 TARGET = wfdisplay
7 TARGET = wfdisplay
8 TEMPLATE = lib
8 TEMPLATE = lib
9 QT += core xml svg network
9 QT += core xml svg network
10
10
11 contains(QT_MAJOR_VERSION, 5) {
11 contains(QT_MAJOR_VERSION, 5) {
12
12
13 QT += widgets
13 QT += widgets
14
14
15 QT += printsupport
15 QT += printsupport
16
16
17 }
17 }
18 INCLUDEPATH += \
18 INCLUDEPATH += \
19 $${PWD} \
19 $${PWD} \
20 $$[QT_INSTALL_HEADERS]/lppmon/common
20 $$[QT_INSTALL_HEADERS]/lppmon/common
21
21
22 LIBS += -llppmoncommon
22 LIBS += -llppmoncommon
23
23
24 DEFINES += WFDISPLAY_LIBRARY
24 DEFINES += WFDISPLAY_LIBRARY
25
25
26 SOURCES += wfdisplay.cpp \
26 SOURCES += wfdisplay.cpp \
27 wfplot.cpp \
27 wfplot.cpp \
28 wfpage.cpp \
28 wfpage.cpp \
29 pagespectra.cpp \
29 pagespectra.cpp \
30 asmpage.cpp
30 asmpage.cpp
31
31
32
32
33 HEADERS += wfdisplay.h\
33 HEADERS += wfdisplay.h\
34 wfdisplay_global.h \
35 wfplot.h \
34 wfplot.h \
36 wfpage.h \
35 wfpage.h \
37 wfdisplay_params.h \
36 wfdisplay_params.h \
38 pagespectra.h \
37 pagespectra.h \
39 asmpage.h
38 asmpage.h
40
39
41
40
42 header.path = $$[QT_INSTALL_HEADERS]/lppmon/wfdisplay
41 header.path = $$[QT_INSTALL_HEADERS]/lppmon/wfdisplay
43 header.files = \
42 header.files = \
44 wfdisplay.h \
43 wfdisplay.h \
45 wfdisplay_global.h \
44 wfdisplay_global.h \
46 wfpage.h \
45 wfpage.h \
47 wfplot.h \
46 wfplot.h \
48 wfdisplay_params.h \
47 wfdisplay_params.h \
49 pagespectra.h \
48 pagespectra.h \
50 asmpage.h
49 asmpage.h
51
50
52 target.path = $$[QT_INSTALL_LIBS]
51 target.path = $$[QT_INSTALL_LIBS]
53 isEmpty(target.path) {
52 isEmpty(target.path) {
54 target.path = $(QTDIR)/lib
53 target.path = $(QTDIR)/lib
55 }
54 }
56
55
57 INSTALLS += header target
56 INSTALLS += header target
@@ -1,396 +1,396
1 <?xml version="1.0" encoding="UTF-8"?>
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE QtCreatorProject>
2 <!DOCTYPE QtCreatorProject>
3 <!-- Written by QtCreator 3.0.1, 2014-03-27T10:13:46. -->
3 <!-- Written by QtCreator 3.0.1, 2014-04-14T09:37:32. -->
4 <qtcreator>
4 <qtcreator>
5 <data>
5 <data>
6 <variable>ProjectExplorer.Project.ActiveTarget</variable>
6 <variable>ProjectExplorer.Project.ActiveTarget</variable>
7 <value type="int">1</value>
7 <value type="int">1</value>
8 </data>
8 </data>
9 <data>
9 <data>
10 <variable>ProjectExplorer.Project.EditorSettings</variable>
10 <variable>ProjectExplorer.Project.EditorSettings</variable>
11 <valuemap type="QVariantMap">
11 <valuemap type="QVariantMap">
12 <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
12 <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
13 <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
13 <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
14 <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
14 <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
15 <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
15 <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
16 <value type="QString" key="language">Cpp</value>
16 <value type="QString" key="language">Cpp</value>
17 <valuemap type="QVariantMap" key="value">
17 <valuemap type="QVariantMap" key="value">
18 <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
18 <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
19 </valuemap>
19 </valuemap>
20 </valuemap>
20 </valuemap>
21 <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
21 <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
22 <value type="QString" key="language">QmlJS</value>
22 <value type="QString" key="language">QmlJS</value>
23 <valuemap type="QVariantMap" key="value">
23 <valuemap type="QVariantMap" key="value">
24 <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
24 <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
25 </valuemap>
25 </valuemap>
26 </valuemap>
26 </valuemap>
27 <value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
27 <value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
28 <value type="QByteArray" key="EditorConfiguration.Codec">System</value>
28 <value type="QByteArray" key="EditorConfiguration.Codec">System</value>
29 <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
29 <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
30 <value type="int" key="EditorConfiguration.IndentSize">4</value>
30 <value type="int" key="EditorConfiguration.IndentSize">4</value>
31 <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
31 <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
32 <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
32 <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
33 <value type="int" key="EditorConfiguration.PaddingMode">1</value>
33 <value type="int" key="EditorConfiguration.PaddingMode">1</value>
34 <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
34 <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
35 <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
35 <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
36 <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
36 <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
37 <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
37 <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
38 <value type="int" key="EditorConfiguration.TabSize">8</value>
38 <value type="int" key="EditorConfiguration.TabSize">8</value>
39 <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
39 <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
40 <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
40 <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
41 <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
41 <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
42 <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
42 <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
43 <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
43 <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
44 <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
44 <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
45 </valuemap>
45 </valuemap>
46 </data>
46 </data>
47 <data>
47 <data>
48 <variable>ProjectExplorer.Project.PluginSettings</variable>
48 <variable>ProjectExplorer.Project.PluginSettings</variable>
49 <valuemap type="QVariantMap"/>
49 <valuemap type="QVariantMap"/>
50 </data>
50 </data>
51 <data>
51 <data>
52 <variable>ProjectExplorer.Project.Target.0</variable>
52 <variable>ProjectExplorer.Project.Target.0</variable>
53 <valuemap type="QVariantMap">
53 <valuemap type="QVariantMap">
54 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop-Qt 4.8.2 in PATH (System)</value>
54 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop-Qt 4.8.2 in PATH (System)</value>
55 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop-Qt 4.8.2 in PATH (System)</value>
55 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop-Qt 4.8.2 in PATH (System)</value>
56 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{5289e843-9ef2-45ce-88c6-ad27d8e08def}</value>
56 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{5289e843-9ef2-45ce-88c6-ad27d8e08def}</value>
57 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
57 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
58 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
58 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
59 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
59 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
60 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
60 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
61 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/opt/LPPMON_PLUGINS_PAUL/wfdisplay/wfdisplay</value>
61 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/opt/LPPMON_PLUGINS_PAUL/wfdisplay/wfdisplay</value>
62 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
62 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
63 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
63 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
64 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
64 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
65 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
65 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
66 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
66 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
67 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
67 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
68 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">false</value>
68 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">false</value>
69 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibraryAuto">false</value>
69 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibraryAuto">false</value>
70 <value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
70 <value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
71 <value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
71 <value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
72 </valuemap>
72 </valuemap>
73 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
73 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
74 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
74 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
75 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
75 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
76 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
76 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
77 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
77 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
78 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
78 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
79 <value type="QString">-w</value>
79 <value type="QString">-w</value>
80 <value type="QString">-r</value>
80 <value type="QString">-r</value>
81 </valuelist>
81 </valuelist>
82 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
82 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
83 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">-r -w </value>
83 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">-r -w </value>
84 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
84 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
85 </valuemap>
85 </valuemap>
86 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
86 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
87 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
87 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
88 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
88 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
89 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
89 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
90 </valuemap>
90 </valuemap>
91 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
91 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
92 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
92 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
93 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
93 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
94 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
94 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
95 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
95 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
96 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
96 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
97 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
97 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
98 <value type="QString">-w</value>
98 <value type="QString">-w</value>
99 <value type="QString">-r</value>
99 <value type="QString">-r</value>
100 </valuelist>
100 </valuelist>
101 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
101 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
102 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">-r -w clean</value>
102 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">-r -w clean</value>
103 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
103 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
104 </valuemap>
104 </valuemap>
105 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
105 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
106 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
106 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
107 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
107 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
108 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
108 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
109 </valuemap>
109 </valuemap>
110 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
110 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
111 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
111 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
112 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
112 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
113 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Qt 4.8.2 in PATH (System) Release</value>
113 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Qt 4.8.2 in PATH (System) Release</value>
114 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
114 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
115 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
115 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
116 <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
116 <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
117 <value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">false</value>
117 <value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">false</value>
118 </valuemap>
118 </valuemap>
119 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>
119 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>
120 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
120 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
121 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
121 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
122 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
122 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
123 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
123 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
124 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
124 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
125 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
125 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
126 </valuemap>
126 </valuemap>
127 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
127 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
128 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">No deployment</value>
128 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">No deployment</value>
129 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
129 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
130 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
130 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
131 </valuemap>
131 </valuemap>
132 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
132 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
133 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
133 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
134 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
134 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
135 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
135 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
136 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
136 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
137 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
137 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
138 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
138 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
139 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
139 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
140 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
140 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
141 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
141 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
142 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
142 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
143 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
143 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
144 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
144 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
145 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
145 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
146 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
146 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
147 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
147 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
148 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
148 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
149 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
149 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
150 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
150 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
151 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
151 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
152 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
152 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
153 <value type="int">0</value>
153 <value type="int">0</value>
154 <value type="int">1</value>
154 <value type="int">1</value>
155 <value type="int">2</value>
155 <value type="int">2</value>
156 <value type="int">3</value>
156 <value type="int">3</value>
157 <value type="int">4</value>
157 <value type="int">4</value>
158 <value type="int">5</value>
158 <value type="int">5</value>
159 <value type="int">6</value>
159 <value type="int">6</value>
160 <value type="int">7</value>
160 <value type="int">7</value>
161 <value type="int">8</value>
161 <value type="int">8</value>
162 <value type="int">9</value>
162 <value type="int">9</value>
163 <value type="int">10</value>
163 <value type="int">10</value>
164 <value type="int">11</value>
164 <value type="int">11</value>
165 <value type="int">12</value>
165 <value type="int">12</value>
166 <value type="int">13</value>
166 <value type="int">13</value>
167 <value type="int">14</value>
167 <value type="int">14</value>
168 </valuelist>
168 </valuelist>
169 <value type="int" key="PE.EnvironmentAspect.Base">2</value>
169 <value type="int" key="PE.EnvironmentAspect.Base">2</value>
170 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
170 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
171 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.Arguments"></value>
171 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.Arguments"></value>
172 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.Executable"></value>
172 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.Executable"></value>
173 <value type="bool" key="ProjectExplorer.CustomExecutableRunConfiguration.UseTerminal">false</value>
173 <value type="bool" key="ProjectExplorer.CustomExecutableRunConfiguration.UseTerminal">false</value>
174 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.WorkingDirectory">%{buildDir}</value>
174 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.WorkingDirectory">%{buildDir}</value>
175 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Custom Executable</value>
175 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Custom Executable</value>
176 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
176 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
177 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
177 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
178 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
178 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
179 <value type="bool" key="RunConfiguration.UseCppDebugger">true</value>
179 <value type="bool" key="RunConfiguration.UseCppDebugger">true</value>
180 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">false</value>
180 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">false</value>
181 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
181 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
182 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
182 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
183 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">false</value>
183 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">false</value>
184 </valuemap>
184 </valuemap>
185 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
185 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
186 </valuemap>
186 </valuemap>
187 </data>
187 </data>
188 <data>
188 <data>
189 <variable>ProjectExplorer.Project.Target.1</variable>
189 <variable>ProjectExplorer.Project.Target.1</variable>
190 <valuemap type="QVariantMap">
190 <valuemap type="QVariantMap">
191 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">QT5</value>
191 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">QT5</value>
192 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">QT5</value>
192 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">QT5</value>
193 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{5987874a-1025-45de-914b-5774064481bf}</value>
193 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{5987874a-1025-45de-914b-5774064481bf}</value>
194 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value>
194 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">1</value>
195 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
195 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
196 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
196 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
197 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
197 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
198 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/opt/LPPMON_PLUGINS_PAUL/wfdisplay/wfdisplay</value>
198 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/opt/LPPMON_PLUGINS_PAUL/wfdisplay/wfdisplay</value>
199 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
199 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
200 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
200 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
201 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
201 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
202 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
202 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
203 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
203 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
204 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
204 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
205 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">false</value>
205 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">false</value>
206 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibraryAuto">true</value>
206 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibraryAuto">true</value>
207 <value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
207 <value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
208 <value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
208 <value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
209 </valuemap>
209 </valuemap>
210 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
210 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
211 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
211 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
212 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
212 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
213 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
213 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
214 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
214 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
215 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
215 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
216 <value type="QString">-w</value>
216 <value type="QString">-w</value>
217 <value type="QString">-r</value>
217 <value type="QString">-r</value>
218 </valuelist>
218 </valuelist>
219 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
219 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
220 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
220 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
221 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
221 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
222 </valuemap>
222 </valuemap>
223 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
223 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
224 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
224 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
225 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
225 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
226 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
226 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
227 </valuemap>
227 </valuemap>
228 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
228 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
229 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
229 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
230 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
230 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
231 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
231 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
232 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
232 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
233 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
233 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
234 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
234 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
235 <value type="QString">-w</value>
235 <value type="QString">-w</value>
236 <value type="QString">-r</value>
236 <value type="QString">-r</value>
237 </valuelist>
237 </valuelist>
238 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
238 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
239 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
239 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
240 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
240 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
241 </valuemap>
241 </valuemap>
242 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
242 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
243 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
243 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
244 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
244 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
245 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
245 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
246 </valuemap>
246 </valuemap>
247 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
247 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
248 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
248 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
249 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
249 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
250 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Debug</value>
250 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Debug</value>
251 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
251 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
252 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
252 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
253 <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
253 <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
254 <value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
254 <value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
255 </valuemap>
255 </valuemap>
256 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
256 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
257 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/opt/LPPMON_PLUGINS_PAUL/wfdisplay/wfdisplay</value>
257 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/opt/LPPMON_PLUGINS_PAUL/wfdisplay/wfdisplay</value>
258 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
258 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
259 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
259 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
260 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
260 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
261 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
261 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
262 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
262 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
263 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
263 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
264 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">false</value>
264 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">false</value>
265 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibraryAuto">true</value>
265 <value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibraryAuto">true</value>
266 <value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
266 <value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
267 <value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
267 <value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
268 </valuemap>
268 </valuemap>
269 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
269 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
270 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
270 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
271 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
271 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
272 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
272 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
273 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
273 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
274 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
274 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
275 <value type="QString">-w</value>
275 <value type="QString">-w</value>
276 <value type="QString">-r</value>
276 <value type="QString">-r</value>
277 </valuelist>
277 </valuelist>
278 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
278 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
279 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
279 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
280 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
280 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
281 </valuemap>
281 </valuemap>
282 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
282 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
283 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
283 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
284 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
284 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
285 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
285 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
286 </valuemap>
286 </valuemap>
287 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
287 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
288 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
288 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
289 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
289 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
290 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
290 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
291 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
291 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
292 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
292 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
293 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
293 <valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments">
294 <value type="QString">-w</value>
294 <value type="QString">-w</value>
295 <value type="QString">-r</value>
295 <value type="QString">-r</value>
296 </valuelist>
296 </valuelist>
297 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
297 <value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
298 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
298 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
299 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
299 <value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
300 </valuemap>
300 </valuemap>
301 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
301 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
302 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
302 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
303 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
303 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
304 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
304 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
305 </valuemap>
305 </valuemap>
306 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
306 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
307 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
307 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
308 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
308 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
309 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Release</value>
309 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Release</value>
310 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
310 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
311 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
311 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
312 <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
312 <value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
313 <value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
313 <value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
314 </valuemap>
314 </valuemap>
315 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">2</value>
315 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">2</value>
316 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
316 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
317 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
317 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
318 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
318 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
319 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
319 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
320 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
320 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
321 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
321 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
322 </valuemap>
322 </valuemap>
323 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
323 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
324 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy locally</value>
324 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy locally</value>
325 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
325 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
326 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
326 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
327 </valuemap>
327 </valuemap>
328 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
328 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
329 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
329 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
330 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
330 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
331 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
331 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
332 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
332 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
333 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
333 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
334 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
334 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
335 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
335 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
336 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
336 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
337 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
337 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
338 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
338 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
339 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
339 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
340 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
340 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
341 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
341 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
342 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
342 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
343 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
343 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
344 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
344 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
345 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
345 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
346 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
346 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
347 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
347 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
348 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
348 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
349 <value type="int">0</value>
349 <value type="int">0</value>
350 <value type="int">1</value>
350 <value type="int">1</value>
351 <value type="int">2</value>
351 <value type="int">2</value>
352 <value type="int">3</value>
352 <value type="int">3</value>
353 <value type="int">4</value>
353 <value type="int">4</value>
354 <value type="int">5</value>
354 <value type="int">5</value>
355 <value type="int">6</value>
355 <value type="int">6</value>
356 <value type="int">7</value>
356 <value type="int">7</value>
357 <value type="int">8</value>
357 <value type="int">8</value>
358 <value type="int">9</value>
358 <value type="int">9</value>
359 <value type="int">10</value>
359 <value type="int">10</value>
360 <value type="int">11</value>
360 <value type="int">11</value>
361 <value type="int">12</value>
361 <value type="int">12</value>
362 <value type="int">13</value>
362 <value type="int">13</value>
363 <value type="int">14</value>
363 <value type="int">14</value>
364 </valuelist>
364 </valuelist>
365 <value type="int" key="PE.EnvironmentAspect.Base">2</value>
365 <value type="int" key="PE.EnvironmentAspect.Base">2</value>
366 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
366 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
367 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.Arguments"></value>
367 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.Arguments"></value>
368 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.Executable"></value>
368 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.Executable"></value>
369 <value type="bool" key="ProjectExplorer.CustomExecutableRunConfiguration.UseTerminal">false</value>
369 <value type="bool" key="ProjectExplorer.CustomExecutableRunConfiguration.UseTerminal">false</value>
370 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.WorkingDirectory">%{buildDir}</value>
370 <value type="QString" key="ProjectExplorer.CustomExecutableRunConfiguration.WorkingDirectory">%{buildDir}</value>
371 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Custom Executable</value>
371 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Custom Executable</value>
372 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
372 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
373 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
373 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
374 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
374 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
375 <value type="bool" key="RunConfiguration.UseCppDebugger">true</value>
375 <value type="bool" key="RunConfiguration.UseCppDebugger">true</value>
376 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">false</value>
376 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">false</value>
377 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
377 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
378 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
378 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
379 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
379 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
380 </valuemap>
380 </valuemap>
381 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
381 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
382 </valuemap>
382 </valuemap>
383 </data>
383 </data>
384 <data>
384 <data>
385 <variable>ProjectExplorer.Project.TargetCount</variable>
385 <variable>ProjectExplorer.Project.TargetCount</variable>
386 <value type="int">2</value>
386 <value type="int">2</value>
387 </data>
387 </data>
388 <data>
388 <data>
389 <variable>ProjectExplorer.Project.Updater.EnvironmentId</variable>
389 <variable>ProjectExplorer.Project.Updater.EnvironmentId</variable>
390 <value type="QByteArray">{2e58a81f-9962-4bba-ae6b-760177f0656c}</value>
390 <value type="QByteArray">{2e58a81f-9962-4bba-ae6b-760177f0656c}</value>
391 </data>
391 </data>
392 <data>
392 <data>
393 <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
393 <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
394 <value type="int">15</value>
394 <value type="int">15</value>
395 </data>
395 </data>
396 </qtcreator>
396 </qtcreator>
@@ -1,114 +1,112
1 #ifndef WFPAGE_H
1 #ifndef WFPAGE_H
2 #define WFPAGE_H
2 #define WFPAGE_H
3
3
4 #include "wfdisplay_global.h"
5
6 #include <QMainWindow>
4 #include <QMainWindow>
7 #include <QRadioButton>
5 #include <QRadioButton>
8 #include <QPushButton>
6 #include <QPushButton>
9 #include <QDockWidget>
7 #include <QDockWidget>
10 #include <QToolBar>
8 #include <QToolBar>
11 #include <QLabel>
9 #include <QLabel>
12 #include <QFile>
10 #include <QFile>
13 #include <QTextStream>
11 #include <QTextStream>
14 #include <QFileDialog>
12 #include <QFileDialog>
15 #include <QSettings>
13 #include <QSettings>
16
14
17 #include <wfplot.h>
15 #include <wfplot.h>
18 #include <wfdisplay_params.h>
16 #include <wfdisplay_params.h>
19
17
20 class WFPage : public QMainWindow
18 class WFPage : public QMainWindow
21 {
19 {
22 Q_OBJECT
20 Q_OBJECT
23 public:
21 public:
24 explicit WFPage(QWidget *parent = 0, unsigned int bufferSize = 0, unsigned int xMAX = 0, unsigned int yMAX = 0);
22 explicit WFPage(QWidget *parent = 0, unsigned int bufferSize = 0, unsigned int xMAX = 0, unsigned int yMAX = 0);
25 ~WFPage();
23 ~WFPage();
26
24
27 void createToolBar();
25 void createToolBar();
28 void buildDockList();
26 void buildDockList();
29 void unTabify();
27 void unTabify();
30 void tabify();
28 void tabify();
31 // STORE
29 // STORE
32 void buildFileName();
30 void buildFileName();
33 void closeEvent(QCloseEvent *event);
31 void closeEvent(QCloseEvent *event);
34 void readSettings();
32 void readSettings();
35 void writeSettings();
33 void writeSettings();
36
34
37 bool logFileEn;
35 bool logFileEn;
38 bool storageEnabled;
36 bool storageEnabled;
39
37
40 QLabel *logFileName;
38 QLabel *logFileName;
41 QLabel *label_storeWfrm;
39 QLabel *label_storeWfrm;
42
40
43 QWidget *titleWidgetV;
41 QWidget *titleWidgetV;
44 QWidget *titleWidgetE1;
42 QWidget *titleWidgetE1;
45 QWidget *titleWidgetE2;
43 QWidget *titleWidgetE2;
46 QWidget *titleWidgetB1;
44 QWidget *titleWidgetB1;
47 QWidget *titleWidgetB2;
45 QWidget *titleWidgetB2;
48 QWidget *titleWidgetB3;
46 QWidget *titleWidgetB3;
49
47
50 unsigned int localBufferSize;
48 unsigned int localBufferSize;
51 QByteArray **dataBuffer;
49 QByteArray **dataBuffer;
52
50
53 QList<QDockWidget*> dockList;
51 QList<QDockWidget*> dockList;
54
52
55 QDockWidget *dockV;
53 QDockWidget *dockV;
56 QDockWidget *dockE1;
54 QDockWidget *dockE1;
57 QDockWidget *dockE2;
55 QDockWidget *dockE2;
58 QDockWidget *dockB1;
56 QDockWidget *dockB1;
59 QDockWidget *dockB2;
57 QDockWidget *dockB2;
60 QDockWidget *dockB3;
58 QDockWidget *dockB3;
61
59
62 QRadioButton *radio_v;
60 QRadioButton *radio_v;
63 QRadioButton *radio_e1;
61 QRadioButton *radio_e1;
64 QRadioButton *radio_e2;
62 QRadioButton *radio_e2;
65 QRadioButton *radio_b1;
63 QRadioButton *radio_b1;
66 QRadioButton *radio_b2;
64 QRadioButton *radio_b2;
67 QRadioButton *radio_b3;
65 QRadioButton *radio_b3;
68 QRadioButton *radio_tabify;
66 QRadioButton *radio_tabify;
69
67
70 QPushButton *button_selectAll;
68 QPushButton *button_selectAll;
71 QPushButton *button_storeWfrm;
69 QPushButton *button_storeWfrm;
72
70
73 QToolBar *myToolBar;
71 QToolBar *myToolBar;
74
72
75 WFPlot *wfPlot_v;
73 WFPlot *wfPlot_v;
76 WFPlot *wfPlot_e1;
74 WFPlot *wfPlot_e1;
77 WFPlot *wfPlot_e2;
75 WFPlot *wfPlot_e2;
78 WFPlot *wfPlot_b1;
76 WFPlot *wfPlot_b1;
79 WFPlot *wfPlot_b2;
77 WFPlot *wfPlot_b2;
80 WFPlot *wfPlot_b3;
78 WFPlot *wfPlot_b3;
81
79
82 QFile *logFile;
80 QFile *logFile;
83
81
84 QTextStream *logFileStrm;
82 QTextStream *logFileStrm;
85
83
86 QString pageTitle;
84 QString pageTitle;
87 QString defaultStorageDirectory;
85 QString defaultStorageDirectory;
88
86
89 void displayOnPlot(short *data, unsigned char num, unsigned int coarseTime, unsigned int fineTime, double deltaT, unsigned int nbData);
87 void displayOnPlot(short *data, unsigned char num, unsigned int coarseTime, unsigned int fineTime, double deltaT, unsigned int nbData);
90 void initDataBuffer();
88 void initDataBuffer();
91 void fillDataBuffer(short *data, unsigned char num, unsigned int coarseTime, unsigned int fineTime, double deltaT, unsigned int nbData);
89 void fillDataBuffer(short *data, unsigned char num, unsigned int coarseTime, unsigned int fineTime, double deltaT, unsigned int nbData);
92 void storeDataBuffer(unsigned int nbData);
90 void storeDataBuffer(unsigned int nbData);
93
91
94 bool allowDataStorage;
92 bool allowDataStorage;
95
93
96 signals:
94 signals:
97
95
98 public slots:
96 public slots:
99 void actionRadioV(bool state);
97 void actionRadioV(bool state);
100 void actionRadioE1(bool state);
98 void actionRadioE1(bool state);
101 void actionRadioE2(bool state);
99 void actionRadioE2(bool state);
102 void actionRadioB1(bool state);
100 void actionRadioB1(bool state);
103 void actionRadioB2(bool state);
101 void actionRadioB2(bool state);
104 void actionRadioB3(bool state);
102 void actionRadioB3(bool state);
105 void organizeDocks();
103 void organizeDocks();
106 void selectAll();
104 void selectAll();
107 void storeWfrm();
105 void storeWfrm();
108 void logFileEnDisable(bool state);
106 void logFileEnDisable(bool state);
109 void chooseDir();
107 void chooseDir();
110 void setDefaultStorageDirectory(QString nameOfTheDirectory);
108 void setDefaultStorageDirectory(QString nameOfTheDirectory);
111
109
112 };
110 };
113
111
114 #endif // WFPAGE_H
112 #endif // WFPAGE_H
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now