Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
48706a11
Commit
48706a11
authored
Jun 28, 2017
by
Claes Sjofors
Committed by
Christoffer Ackelman
Jul 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Plc objects DataArithmT and TL added
parent
90b014b6
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1482 additions
and
1 deletion
+1482
-1
src/wbl/pwrb/src/pwrb_c_dataarithmt.wb_load
src/wbl/pwrb/src/pwrb_c_dataarithmt.wb_load
+735
-0
src/wbl/pwrb/src/pwrb_c_dataarithmtl.wb_load
src/wbl/pwrb/src/pwrb_c_dataarithmtl.wb_load
+736
-0
wb/exp/wb/src/pwr_wb_palette.cnf
wb/exp/wb/src/pwr_wb_palette.cnf
+2
-0
wb/lib/wb/src/wb_foe.cpp
wb/lib/wb/src/wb_foe.cpp
+2
-0
wb/lib/wb/src/wb_goenm14.cpp
wb/lib/wb/src/wb_goenm14.cpp
+7
-1
No files found.
src/wbl/pwrb/src/pwrb_c_dataarithmt.wb_load
0 → 100644
View file @
48706a11
This diff is collapsed.
Click to expand it.
src/wbl/pwrb/src/pwrb_c_dataarithmtl.wb_load
0 → 100644
View file @
48706a11
This diff is collapsed.
Click to expand it.
wb/exp/wb/src/pwr_wb_palette.cnf
View file @
48706a11
...
...
@@ -750,6 +750,8 @@ palette PlcEditorPalette
class DArithm
class DataArithm
class DataArithmL
class DataArithmT
class DataArithmTL
class Demux
class Div
class Equal
...
...
wb/lib/wb/src/wb_foe.cpp
View file @
48706a11
...
...
@@ -2106,6 +2106,8 @@ void WFoe::gre_popupmenu( WGre *gre, int x_pix, int y_pix, int popupmenu_type,
switch
(
node
->
ln
.
cid
)
{
case
pwr_cClass_dataarithm
:
case
pwr_cClass_dataarithml
:
case
pwr_cClass_dataarithmt
:
case
pwr_cClass_dataarithmtl
:
case
pwr_cClass_carithm
:
mask
|=
foe_ePopupmenu_editcode
;
break
;
...
...
wb/lib/wb/src/wb_goenm14.cpp
View file @
48706a11
...
...
@@ -149,17 +149,23 @@ int goen_create_nodetype_m14(
int
annot_rows
;
static
int
idx
=
0
;
flow_tObject
cp
;
pwr_tObjName
size_attr
;
sts
=
ldh_ClassIdToName
(
ldhses
,
cid
,
name
,
sizeof
(
name
),
&
size
);
if
(
EVEN
(
sts
)
)
return
sts
;
sprintf
(
&
name
[
strlen
(
name
)],
"%d"
,
idx
++
);
/* Get the text in the parameter Code */
if
(
graphbody
->
graphindex
==
1
)
strcpy
(
size_attr
,
"Text"
);
else
strcpy
(
size_attr
,
"Code"
);
sts
=
ldh_GetObjectPar
(
(
node
->
hn
.
wind
)
->
hw
.
ldhses
,
node
->
ln
.
oid
,
"DevBody"
,
"Code"
,
size_attr
,
&
parvalue
,
&
size
);
if
(
EVEN
(
sts
))
return
sts
;
...
...
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