Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
4
4uhv
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
gui
4uhv
Commits
6cb66dd4
Commit
6cb66dd4
authored
2 years ago
by
Giacomo Strangolino
Browse files
Options
Downloads
Patches
Plain Diff
#16752 : change Fix push button logic: executes three operations in sequence
parent
13223b86
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/4uhv.cpp
+1
-0
1 addition, 0 deletions
src/4uhv.cpp
src/channel.cpp
+6
-2
6 additions, 2 deletions
src/channel.cpp
with
7 additions
and
2 deletions
src/4uhv.cpp
+
1
−
0
View file @
6cb66dd4
...
...
@@ -72,6 +72,7 @@ void FourUHV::onPsListReady(const CuData &da) {
const
QString
&
s
=
w
->
property
(
"point"
).
toString
();
if
(
s
.
contains
(
"%1"
))
w
->
setProperty
(
"source"
,
QString
(
s
).
arg
(
ch
));
}
// object name like pbFix3k, pbFix5k
if
(
w
->
property
(
"target"
).
isValid
()
||
w
->
objectName
().
contains
(
QRegularExpression
(
"pbFix
\\
dk"
)))
{
const
QString
&
t
=
w
->
property
(
"point"
).
toString
();
if
(
t
.
contains
(
"%1"
))
{
...
...
This diff is collapsed.
Click to expand it.
src/channel.cpp
+
6
−
2
View file @
6cb66dd4
...
...
@@ -17,9 +17,13 @@ Channel::~Channel()
}
void
Channel
::
onPbFixClicked
()
{
const
QString
&
t0
=
QString
(
"$1/Fixed%1(1)"
).
arg
(
sender
()
->
property
(
"channel"
).
toInt
());
// FixedX(0) then VTargetX(NNNN) then FixedX(1) where X is the channel and NNNN the voltage
// properties set in FourUHV::onPsListReady
const
QString
&
t0
=
QString
(
"$1/Fixed%1(0)"
).
arg
(
sender
()
->
property
(
"channel"
).
toInt
());
const
QString
&
t1
=
sender
()
->
property
(
"target"
).
toString
();
foreach
(
const
QString
&
t
,
QStringList
()
<<
t0
<<
t1
)
{
const
QString
&
t2
=
QString
(
"$1/Fixed%1(1))"
).
arg
(
sender
()
->
property
(
"channel"
).
toInt
());
foreach
(
const
QString
&
t
,
QStringList
()
<<
t0
<<
t1
<<
t2
)
{
QuWriter
*
w
=
new
QuWriter
(
this
,
cu_pool
,
m_ctrl_fpool
);
w
->
setAutoDestroy
(
true
);
w
->
setTarget
(
t
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment