Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cs
gui
4uhv
Commits
ca55dfd5
Commit
ca55dfd5
authored
Mar 14, 2022
by
Giacomo Strangolino
Browse files
FixedXXX call FixedX(1) before
parent
a9808ac0
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/4uhv.cpp
View file @
ca55dfd5
...
...
@@ -72,9 +72,14 @@ void FourUHV::onPsListReady(const CuData &da) {
const
QString
&
s
=
w
->
property
(
"point"
).
toString
();
if
(
s
.
contains
(
"%1"
))
w
->
setProperty
(
"source"
,
QString
(
s
).
arg
(
ch
));
}
if
(
w
->
metaObject
()
->
indexOfProperty
(
"target"
)
>
-
1
)
{
if
(
w
->
property
(
"target"
).
isValid
()
||
w
->
objectName
().
contains
(
QRegularExpression
(
"pbFix
\\
dk"
))
)
{
const
QString
&
t
=
w
->
property
(
"point"
).
toString
();
if
(
t
.
contains
(
"%1"
))
w
->
setProperty
(
"target"
,
QString
(
t
).
arg
(
ch
));
printf
(
"FourUHV::onPsListReady: %s point is %s
\n
"
,
qstoc
(
w
->
objectName
()),
qstoc
(
t
));
if
(
t
.
contains
(
"%1"
))
{
w
->
setProperty
(
"channel"
,
ch
);
w
->
setProperty
(
"target"
,
QString
(
t
).
arg
(
ch
));
}
}
}
channel
->
findChild
<
QGroupBox
*>
(
"gbHighTh"
)
->
setHidden
(
true
);
...
...
src/channel.cpp
View file @
ca55dfd5
#include "channel.h"
#include "ui_channel.h"
#include <quwriter.h>
Channel
::
Channel
(
QWidget
*
parent
,
CumbiaPool
*
cu_p
,
const
CuControlsFactoryPool
&
fp
)
:
QWidget
(
parent
)
{
QWidget
(
parent
)
,
cu_pool
(
cu_p
),
m_ctrl_fpool
(
fp
)
{
ui
=
new
Ui
::
Channel
;
ui
->
setupUi
(
this
,
cu_p
,
fp
);
connect
(
ui
->
pbFix3k
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
onPbFixClicked
()));
connect
(
ui
->
pbFix5k
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
onPbFixClicked
()));
connect
(
ui
->
pbFix7k
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
onPbFixClicked
()));
}
Channel
::~
Channel
()
...
...
@@ -12,3 +16,14 @@ Channel::~Channel()
delete
ui
;
}
void
Channel
::
onPbFixClicked
()
{
const
QString
&
t0
=
QString
(
"$1/Fixed%1(1)"
).
arg
(
sender
()
->
property
(
"channel"
).
toInt
());
const
QString
&
t1
=
sender
()
->
property
(
"target"
).
toString
();
foreach
(
const
QString
&
t
,
QStringList
()
<<
t0
<<
t1
)
{
QuWriter
*
w
=
new
QuWriter
(
this
,
cu_pool
,
m_ctrl_fpool
);
w
->
setAutoDestroy
(
true
);
w
->
setTarget
(
t
);
printf
(
"Channel::onPbFixClicked %s executing target %s
\n
"
,
qstoc
(
sender
()
->
objectName
()),
qstoc
(
t
));
w
->
execute
();
}
}
src/channel.h
View file @
ca55dfd5
...
...
@@ -18,6 +18,8 @@ public:
explicit
Channel
(
QWidget
*
parent
,
CumbiaPool
*
cu_p
,
const
CuControlsFactoryPool
&
fp
);
~
Channel
();
protected
slots
:
void
onPbFixClicked
();
private:
Ui
::
Channel
*
ui
;
CumbiaPool
*
cu_pool
;
...
...
src/channel.ui
View file @
ca55dfd5
...
...
@@ -166,7 +166,7 @@
</widget>
</item>
<item
row=
"2"
column=
"1"
>
<widget
class=
"Q
u
Button"
name=
"
tPushButton_4
"
>
<widget
class=
"Q
Push
Button"
name=
"
pbFix5k
"
>
<property
name=
"text"
>
<string>
Fix5000
</string>
</property>
...
...
@@ -186,7 +186,7 @@
</widget>
</item>
<item
row=
"2"
column=
"2"
>
<widget
class=
"Q
u
Button"
name=
"
tPushButton_5
"
>
<widget
class=
"Q
Push
Button"
name=
"
pbFix7k
"
>
<property
name=
"text"
>
<string>
Fix7000
</string>
</property>
...
...
@@ -295,7 +295,7 @@
</widget>
</item>
<item
row=
"2"
column=
"0"
>
<widget
class=
"Q
u
Button"
name=
"
tPushButton_3
"
>
<widget
class=
"Q
Push
Button"
name=
"
pbFix3k
"
>
<property
name=
"text"
>
<string>
Fix3000
</string>
</property>
...
...
@@ -318,7 +318,7 @@
</customwidget>
<customwidget>
<class>
QuTable
</class>
<extends>
EFlag
</extends>
<extends>
QWidget
</extends>
<header>
qutable.h
</header>
</customwidget>
<customwidget>
...
...
@@ -326,11 +326,6 @@
<extends>
QPushButton
</extends>
<header>
qubutton.h
</header>
</customwidget>
<customwidget>
<class>
EFlag
</class>
<extends>
QWidget
</extends>
<header>
eflag.h
</header>
</customwidget>
<customwidget>
<class>
QuLineEdit
</class>
<extends>
QLineEdit
</extends>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment