-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgsysBuffer.cc
144 lines (124 loc) · 4.27 KB
/
gsysBuffer.cc
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
** This file is part of gSysC.
**
** gSysC is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** gSysC is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with gSysC with the file ``LICENSE''; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "gsysBuffer.moc"
#include "gsysBuffer.h"
#include "gsysMain.h"
#include "gsysRegister.h"
#include <QtCore/qvariant.h>
#include <QtWidgets/qlabel.h>
#include <QtWidgets/qlayout.h>
#include <QtWidgets/qtooltip.h>
#include <QtWidgets/qwhatsthis.h>
/*
* Constructs a gsysBuffer as a child of 'parent', with the
* name 'name' and widget flags set to 'f'.
*
* The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog.
*/
gsysBuffer::gsysBuffer( QWidget* parent, const char* name, bool modal, Qt::WindowFlags fl )
: QDialog( parent, fl )
{
if ( !name ) {
setObjectName("gsysBuffer");
}
else {
setObjectName(name);
}
setModal(modal);
pgList.clear();
idList.clear();
gboxList.clear();
gbLayoutList.clear();
gsysBufferLayout = new QVBoxLayout(this);
gsysBufferLayout->setMargin(6);
gsysBufferLayout->setSpacing(11);
idList = (new gsysMain())->getRegModule()->getBufferIDs();
vector<char*> nameList = (new gsysMain())->getRegModule()->getBufferNames();
vector<bool> percList = (new gsysMain())->getRegModule()->getBufferPercs();
for(int i=0; i<idList.size(); i++)
{
QGroupBox* groupBox1 = new QGroupBox( "groupBox1", this );
QVBoxLayout* groupBox1Layout = new QVBoxLayout(groupBox1); //Top
groupBox1Layout->setSpacing(6);
groupBox1Layout->setMargin(11);
groupBox1Layout->setAlignment( Qt::AlignTop );
QProgressBar* progressBar1 = new QProgressBar( groupBox1 );
QSpacerItem* spacer1 = new QSpacerItem(40,20,QSizePolicy::Minimum,QSizePolicy::Expanding);
QSpacerItem* spacer2 = new QSpacerItem(40,20,QSizePolicy::Minimum,QSizePolicy::Expanding);
groupBox1Layout->addItem( spacer1 );
groupBox1Layout->addWidget( progressBar1 );
gsysBufferLayout->addWidget( groupBox1 );
groupBox1Layout->addItem( spacer2 );
gboxList.push_back(groupBox1);
groupBox1->setTitle(nameList[i]);
gbLayoutList.push_back(groupBox1Layout);
groupBox1Layout->setAlignment( Qt::AlignTop );
pgList.push_back(progressBar1);
progressBar1->setMaximum(100);
progressBar1->setValue(0);
progressBar1->setVisible(percList[i]);
}
languageChange();
resize( QSize(150, 10).expandedTo(minimumSizeHint()) );
}
/*
* Destroys the object and frees any allocated resources
*/
gsysBuffer::~gsysBuffer()
{
// no need to delete child widgets, Qt does it all for us
}
/*
* get the index of the buffer variable with identification id
*/
int gsysBuffer::getBufferIndex(void* id)
{
#ifdef DEBUG_GSYSC
cout<<"\nContent of idList:"<<endl;
for(int i=0; i<idList.size(); i++) cout<<"\t"<<i<<": "<<idList[i]<<endl;
#endif
for(int i=0; i<idList.size(); i++)
if(idList[i]==id) return i;
return -1;
}
/*
* function to update the shown progressbar of buffer variable id
* new value is set with 'value' in relation to maximum value 'maxValue'
*/
void gsysBuffer::refreshBuffer(void* id, int value, int maxValue)
{
#ifdef DEBUG_GSYSC
cout<<"BUFFER: refreshBuffer called with parameters "<<id<<","<<value<<","<<maxValue<<"; getBufferIndex: "<<getBufferIndex(id)<<endl;
#endif
if(getBufferIndex(id)>=0)
{
QProgressBar* aktPg = pgList[getBufferIndex(id)];
aktPg->setMaximum(maxValue);
aktPg->setValue(value);
aktPg = 0;
}
}
/*
* Sets the strings of the subwidgets using the current
* language.
*/
void gsysBuffer::languageChange()
{
setWindowTitle( tr( "Buffer variables" ) );
}