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
a303593e
Commit
a303593e
authored
Feb 17, 2005
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Invisible dimmed and other changes
parent
a3770d39
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
154 additions
and
39 deletions
+154
-39
xtt/lib/ge/src/ge_dyn.cpp
xtt/lib/ge/src/ge_dyn.cpp
+146
-36
xtt/lib/ge/src/ge_dyn.h
xtt/lib/ge/src/ge_dyn.h
+8
-3
No files found.
xtt/lib/ge/src/ge_dyn.cpp
View file @
a303593e
...
@@ -109,7 +109,7 @@ void GeDyn::replace_attribute( char *attribute, int attr_size, char *from, char
...
@@ -109,7 +109,7 @@ void GeDyn::replace_attribute( char *attribute, int attr_size, char *from, char
s
=
strstr
(
str
,
from
);
s
=
strstr
(
str
,
from
);
if
(
s
)
{
if
(
s
)
{
offs
=
(
int
)(
s
-
str
);
offs
=
(
int
)(
s
-
str
);
strcpy
(
tmp
,
s
+
strlen
(
from
));
strcpy
(
tmp
,
&
attribute
[
offs
]
+
strlen
(
from
));
strncpy
(
&
attribute
[
offs
],
to
,
attr_size
-
offs
);
strncpy
(
&
attribute
[
offs
],
to
,
attr_size
-
offs
);
attribute
[
attr_size
-
1
]
=
0
;
attribute
[
attr_size
-
1
]
=
0
;
strncat
(
attribute
,
tmp
,
attr_size
-
strlen
(
attribute
));
strncat
(
attribute
,
tmp
,
attr_size
-
strlen
(
attribute
));
...
@@ -2224,7 +2224,7 @@ int GeDigFlash::scan( grow_tObject object)
...
@@ -2224,7 +2224,7 @@ int GeDigFlash::scan( grow_tObject object)
grow_ResetObjectColorTone
(
object
);
grow_ResetObjectColorTone
(
object
);
dyn
->
reset_color
=
true
;
dyn
->
reset_color
=
true
;
}
}
on
=
!
on
;
on
=
on
?
false
:
true
;
}
}
else
{
else
{
if
(
color
>=
(
glow_eDrawType
)
glow_eDrawTone__
)
if
(
color
>=
(
glow_eDrawType
)
glow_eDrawTone__
)
...
@@ -2243,7 +2243,7 @@ int GeDigFlash::scan( grow_tObject object)
...
@@ -2243,7 +2243,7 @@ int GeDigFlash::scan( grow_tObject object)
grow_ResetObjectFillColor
(
object
);
grow_ResetObjectFillColor
(
object
);
dyn
->
reset_color
=
true
;
dyn
->
reset_color
=
true
;
}
}
on
=
!
on
;
on
=
on
?
false
:
true
;
}
}
else
{
else
{
grow_ResetObjectFillColor
(
object
);
grow_ResetObjectFillColor
(
object
);
...
@@ -2275,6 +2275,11 @@ void GeInvisible::get_attributes( attr_sItem *attrinfo, int *item_count)
...
@@ -2275,6 +2275,11 @@ void GeInvisible::get_attributes( attr_sItem *attrinfo, int *item_count)
attrinfo
[
i
].
type
=
glow_eType_String
;
attrinfo
[
i
].
type
=
glow_eType_String
;
attrinfo
[
i
++
].
size
=
sizeof
(
attribute
);
attrinfo
[
i
++
].
size
=
sizeof
(
attribute
);
strcpy
(
attrinfo
[
i
].
name
,
"Invisible.Dimmed"
);
attrinfo
[
i
].
value
=
&
dimmed
;
attrinfo
[
i
].
type
=
glow_eType_Boolean
;
attrinfo
[
i
++
].
size
=
sizeof
(
dimmed
);
*
item_count
=
i
;
*
item_count
=
i
;
}
}
...
@@ -2299,6 +2304,7 @@ void GeInvisible::save( ofstream& fp)
...
@@ -2299,6 +2304,7 @@ void GeInvisible::save( ofstream& fp)
{
{
fp
<<
int
(
ge_eSave_Invisible
)
<<
endl
;
fp
<<
int
(
ge_eSave_Invisible
)
<<
endl
;
fp
<<
int
(
ge_eSave_Invisible_attribute
)
<<
FSPACE
<<
attribute
<<
endl
;
fp
<<
int
(
ge_eSave_Invisible_attribute
)
<<
FSPACE
<<
attribute
<<
endl
;
fp
<<
int
(
ge_eSave_Invisible_dimmed
)
<<
FSPACE
<<
dimmed
<<
endl
;
fp
<<
int
(
ge_eSave_End
)
<<
endl
;
fp
<<
int
(
ge_eSave_End
)
<<
endl
;
}
}
...
@@ -2317,6 +2323,7 @@ void GeInvisible::open( ifstream& fp)
...
@@ -2317,6 +2323,7 @@ void GeInvisible::open( ifstream& fp)
fp
.
get
();
fp
.
get
();
fp
.
getline
(
attribute
,
sizeof
(
attribute
));
fp
.
getline
(
attribute
,
sizeof
(
attribute
));
break
;
break
;
case
ge_eSave_Invisible_dimmed
:
fp
>>
dimmed
;
break
;
case
ge_eSave_End
:
end_found
=
1
;
break
;
case
ge_eSave_End
:
end_found
=
1
;
break
;
default:
default:
cout
<<
"GeInvisible:open syntax error"
<<
endl
;
cout
<<
"GeInvisible:open syntax error"
<<
endl
;
...
@@ -2340,9 +2347,34 @@ int GeInvisible::connect( grow_tObject object, glow_sTraceData *trace_data)
...
@@ -2340,9 +2347,34 @@ int GeInvisible::connect( grow_tObject object, glow_sTraceData *trace_data)
if
(
strcmp
(
parsed_name
,
""
)
==
0
)
if
(
strcmp
(
parsed_name
,
""
)
==
0
)
return
1
;
return
1
;
if
(
cdh_NoCaseStrncmp
(
parsed_name
,
"$cmd("
,
5
)
==
0
)
{
char
command
[
256
];
char
*
s
;
pwr_tStatus
sts
;
static
pwr_tBoolean
val_false
=
0
;
static
pwr_tBoolean
val_true
=
1
;
strcpy
(
command
,
&
parsed_name
[
5
]);
if
(
(
s
=
strrchr
(
command
,
')'
)))
*
s
=
0
;
dyn
->
graph
->
get_command
(
command
,
command
,
dyn
);
sts
=
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
command
);
if
(
ODD
(
sts
))
p
=
&
val_false
;
else
p
=
&
val_true
;
db
=
graph_eDatabase_User
;
a_typeid
=
pwr_eType_Boolean
;
}
else
{
sts
=
dyn
->
graph
->
ref_object_info
(
dyn
->
cycle
,
parsed_name
,
(
void
**
)
&
p
,
&
subid
,
size
);
sts
=
dyn
->
graph
->
ref_object_info
(
dyn
->
cycle
,
parsed_name
,
(
void
**
)
&
p
,
&
subid
,
size
);
if
(
EVEN
(
sts
))
return
sts
;
if
(
EVEN
(
sts
))
return
sts
;
a_typeid
=
attr_type
;
}
if
(
p
)
if
(
p
)
trace_data
->
p
=
p
;
trace_data
->
p
=
p
;
first_scan
=
true
;
first_scan
=
true
;
...
@@ -2362,6 +2394,10 @@ int GeInvisible::scan( grow_tObject object)
...
@@ -2362,6 +2394,10 @@ int GeInvisible::scan( grow_tObject object)
if
(
!
p
)
if
(
!
p
)
return
1
;
return
1
;
switch
(
a_typeid
)
{
case
pwr_eType_Boolean
:
case
pwr_eType_Int32
:
case
pwr_eType_UInt32
:
if
(
!
first_scan
)
{
if
(
!
first_scan
)
{
if
(
old_value
==
*
p
)
{
if
(
old_value
==
*
p
)
{
// No change since last time
// No change since last time
...
@@ -2372,14 +2408,46 @@ int GeInvisible::scan( grow_tObject object)
...
@@ -2372,14 +2408,46 @@ int GeInvisible::scan( grow_tObject object)
first_scan
=
false
;
first_scan
=
false
;
if
(
(
!
inverted
&&
!*
p
)
||
(
inverted
&&
*
p
))
{
if
(
(
!
inverted
&&
!*
p
)
||
(
inverted
&&
*
p
))
{
grow_SetObjectVisibility
(
object
,
1
);
grow_SetObjectVisibility
(
object
,
glow_eVis_Visible
);
dyn
->
reset_color
=
true
;
dyn
->
reset_color
=
true
;
}
}
else
{
else
{
grow_SetObjectVisibility
(
object
,
0
);
if
(
dimmed
)
grow_SetObjectVisibility
(
object
,
glow_eVis_Dimmed
);
else
grow_SetObjectVisibility
(
object
,
glow_eVis_Invisible
);
dyn
->
ignore_color
=
true
;
dyn
->
ignore_color
=
true
;
}
}
old_value
=
*
p
;
old_value
=
*
p
;
break
;
case
pwr_eType_String
:
{
char
*
sp
=
(
char
*
)
p
;
char
*
sp_old
=
(
char
*
)
&
old_value
;
if
(
!
first_scan
)
{
if
(
*
sp_old
==
*
sp
)
{
// No change since last time
return
1
;
}
}
else
first_scan
=
false
;
if
(
(
!
inverted
&&
*
sp
)
||
(
inverted
&&
!*
sp
))
{
grow_SetObjectVisibility
(
object
,
glow_eVis_Visible
);
dyn
->
reset_color
=
true
;
}
else
{
if
(
dimmed
)
grow_SetObjectVisibility
(
object
,
glow_eVis_Dimmed
);
else
grow_SetObjectVisibility
(
object
,
glow_eVis_Invisible
);
dyn
->
ignore_color
=
true
;
}
*
sp_old
=
*
sp
;
break
;
}
}
return
1
;
return
1
;
}
}
...
@@ -5603,6 +5671,10 @@ int GeTable::connect( grow_tObject object, glow_sTraceData *trace_data)
...
@@ -5603,6 +5671,10 @@ int GeTable::connect( grow_tObject object, glow_sTraceData *trace_data)
case
pwr_eType_String
:
case
pwr_eType_String
:
info
.
column_size
[
i
]
=
size
[
i
];
info
.
column_size
[
i
]
=
size
[
i
];
break
;
break
;
case
pwr_eType_Status
:
case
pwr_eType_NetStatus
:
info
.
column_size
[
i
]
=
80
;
break
;
case
pwr_eType_Time
:
case
pwr_eType_Time
:
info
.
column_size
[
i
]
=
25
;
info
.
column_size
[
i
]
=
25
;
break
;
break
;
...
@@ -5706,6 +5778,23 @@ int GeTable::scan( grow_tObject object)
...
@@ -5706,6 +5778,23 @@ int GeTable::scan( grow_tObject object)
case
pwr_eType_UInt32
:
case
pwr_eType_UInt32
:
len
=
sprintf
(
buf
,
format
[
i
],
*
(
pwr_tInt32
*
)
headerref_p
[
i
][
j
]);
len
=
sprintf
(
buf
,
format
[
i
],
*
(
pwr_tInt32
*
)
headerref_p
[
i
][
j
]);
break
;
break
;
case
pwr_eType_Status
:
case
pwr_eType_NetStatus
:
if
(
*
(
pwr_tStatus
*
)
headerref_p
[
i
][
j
]
==
0
)
{
strcpy
(
buf
,
""
);
len
=
0
;
break
;
}
switch
(
(
int
)
format
[
1
])
{
case
'1'
:
// Format %1m: Write only the text
msg_GetText
(
*
(
pwr_tStatus
*
)
headerref_p
[
i
][
j
],
buf
,
sizeof
(
buf
));
break
;
default:
msg_GetMsg
(
*
(
pwr_tStatus
*
)
headerref_p
[
i
][
j
],
buf
,
sizeof
(
buf
));
}
len
=
strlen
(
buf
);
break
;
case
pwr_eType_String
:
case
pwr_eType_String
:
len
=
sprintf
(
buf
,
format
[
i
],
(
char
*
)
headerref_p
[
i
][
j
]);
len
=
sprintf
(
buf
,
format
[
i
],
(
char
*
)
headerref_p
[
i
][
j
]);
break
;
break
;
...
@@ -6627,7 +6716,6 @@ int GePopupMenu::action( grow_tObject object, glow_tEvent event)
...
@@ -6627,7 +6716,6 @@ int GePopupMenu::action( grow_tObject object, glow_tEvent event)
char
parsed_name
[
120
];
char
parsed_name
[
120
];
int
inverted
;
int
inverted
;
int
attr_type
,
attr_size
;
int
attr_type
,
attr_size
;
char
*
s
;
pwr_sAttrRef
attrref
;
pwr_sAttrRef
attrref
;
char
name
[
80
];
char
name
[
80
];
Widget
popup
;
Widget
popup
;
...
@@ -6647,19 +6735,17 @@ int GePopupMenu::action( grow_tObject object, glow_tEvent event)
...
@@ -6647,19 +6735,17 @@ int GePopupMenu::action( grow_tObject object, glow_tEvent event)
}
}
if
(
reference
)
{
if
(
reference
)
{
// The ref_object is an objid-attribute that containts the object
// The ref_object is an objid-attribute that containts the object
memset
(
&
attrref
,
0
,
sizeof
(
attrref
));
pwr_tOid
oid
;
sts
=
gdh_GetObjectInfo
(
parsed_name
,
&
attrref
.
Objid
,
sizeof
(
attrref
.
Objid
));
sts
=
gdh_GetObjectInfo
(
parsed_name
,
&
oid
,
sizeof
(
oid
));
if
(
EVEN
(
sts
))
break
;
if
(
EVEN
(
sts
))
break
;
if
(
cdh_ObjidIsNull
(
attrref
.
Obj
id
))
if
(
cdh_ObjidIsNull
(
o
id
))
break
;
break
;
attrref
=
cdh_ObjidToAref
(
oid
);
}
}
else
{
else
{
if
(
(
s
=
strrchr
(
parsed_name
,
'.'
)))
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
parsed_name
,
&
attrref
);
*
s
=
0
;
memset
(
&
attrref
,
0
,
sizeof
(
attrref
));
sts
=
gdh_NameToObjid
(
parsed_name
,
&
attrref
.
Objid
);
if
(
EVEN
(
sts
))
break
;
if
(
EVEN
(
sts
))
break
;
}
}
if
(
dyn
->
graph
->
popup_menu_cb
)
{
if
(
dyn
->
graph
->
popup_menu_cb
)
{
...
@@ -7388,7 +7474,7 @@ int GeCommand::action( grow_tObject object, glow_tEvent event)
...
@@ -7388,7 +7474,7 @@ int GeCommand::action( grow_tObject object, glow_tEvent event)
if
(
dyn
->
graph
->
command_cb
)
{
if
(
dyn
->
graph
->
command_cb
)
{
char
cmd
[
200
];
char
cmd
[
200
];
dyn
->
graph
->
get_command
(
command
,
cmd
);
dyn
->
graph
->
get_command
(
command
,
cmd
,
dyn
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
}
}
break
;
break
;
...
@@ -7481,7 +7567,7 @@ int GeCommandDoubleClick::action( grow_tObject object, glow_tEvent event)
...
@@ -7481,7 +7567,7 @@ int GeCommandDoubleClick::action( grow_tObject object, glow_tEvent event)
if
(
dyn
->
graph
->
command_cb
)
{
if
(
dyn
->
graph
->
command_cb
)
{
char
cmd
[
200
];
char
cmd
[
200
];
dyn
->
graph
->
get_command
(
command
,
cmd
);
dyn
->
graph
->
get_command
(
command
,
cmd
,
dyn
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
}
}
break
;
break
;
...
@@ -7964,10 +8050,32 @@ void GeTipText::open( ifstream& fp)
...
@@ -7964,10 +8050,32 @@ void GeTipText::open( ifstream& fp)
int
GeTipText
::
action
(
grow_tObject
object
,
glow_tEvent
event
)
int
GeTipText
::
action
(
grow_tObject
object
,
glow_tEvent
event
)
{
{
switch
(
event
->
event
)
{
switch
(
event
->
event
)
{
case
glow_eEvent_TipText
:
case
glow_eEvent_TipText
:
{
char
*
s
;
char
text_low
[
80
];
cdh_ToLower
(
text_low
,
text
);
if
(
(
s
=
strstr
(
text_low
,
"##string"
)))
{
char
value
[
80
];
char
parsed_name
[
120
];
int
inverted
;
int
attr_type
,
attr_size
;
int
sts
;
dyn
->
parse_attr_name
(
text
,
parsed_name
,
&
inverted
,
&
attr_type
,
&
attr_size
);
sts
=
gdh_GetObjectInfo
(
parsed_name
,
value
,
sizeof
(
value
));
if
(
EVEN
(
sts
))
printf
(
"ToolTip error: %s
\n
"
,
text
);
grow_SetTipText
(
dyn
->
graph
->
grow
->
ctx
,
event
->
object
.
object
,
value
,
event
->
any
.
x_pixel
,
event
->
any
.
y_pixel
);
}
else
{
grow_SetTipText
(
dyn
->
graph
->
grow
->
ctx
,
event
->
object
.
object
,
grow_SetTipText
(
dyn
->
graph
->
grow
->
ctx
,
event
->
object
.
object
,
text
,
event
->
any
.
x_pixel
,
event
->
any
.
y_pixel
);
text
,
event
->
any
.
x_pixel
,
event
->
any
.
y_pixel
);
}
break
;
break
;
}
default:
;
default:
;
}
}
return
1
;
return
1
;
...
@@ -8075,7 +8183,7 @@ int GeHelp::action( grow_tObject object, glow_tEvent event)
...
@@ -8075,7 +8183,7 @@ int GeHelp::action( grow_tObject object, glow_tEvent event)
sprintf
(
command
,
"help %s /bookmark=%s"
,
topic
,
bookmark
);
sprintf
(
command
,
"help %s /bookmark=%s"
,
topic
,
bookmark
);
else
else
sprintf
(
command
,
"help %s"
,
topic
);
sprintf
(
command
,
"help %s"
,
topic
);
dyn
->
graph
->
get_command
(
command
,
cmd
);
dyn
->
graph
->
get_command
(
command
,
cmd
,
dyn
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
}
}
break
;
break
;
...
@@ -8200,7 +8308,7 @@ int GeOpenGraph::action( grow_tObject object, glow_tEvent event)
...
@@ -8200,7 +8308,7 @@ int GeOpenGraph::action( grow_tObject object, glow_tEvent event)
char
cmd
[
200
];
char
cmd
[
200
];
sprintf
(
command
,
"open graph/object=%s"
,
graph_object
);
sprintf
(
command
,
"open graph/object=%s"
,
graph_object
);
dyn
->
graph
->
get_command
(
command
,
cmd
);
dyn
->
graph
->
get_command
(
command
,
cmd
,
dyn
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
}
}
break
;
break
;
...
@@ -8302,7 +8410,7 @@ int GeOpenURL::action( grow_tObject object, glow_tEvent event)
...
@@ -8302,7 +8410,7 @@ int GeOpenURL::action( grow_tObject object, glow_tEvent event)
char
cmd
[
200
];
char
cmd
[
200
];
sprintf
(
command
,
"open url
\"
%s
\"
"
,
url
);
sprintf
(
command
,
"open url
\"
%s
\"
"
,
url
);
dyn
->
graph
->
get_command
(
command
,
cmd
);
dyn
->
graph
->
get_command
(
command
,
cmd
,
dyn
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
(
dyn
->
graph
->
command_cb
)(
dyn
->
graph
->
parent_ctx
,
cmd
);
}
}
break
;
break
;
...
@@ -8889,9 +8997,11 @@ int GeSlider::scan( grow_tObject object)
...
@@ -8889,9 +8997,11 @@ int GeSlider::scan( grow_tObject object)
if
(
fabs
(
old_value
-
*
p
)
<
FLT_EPSILON
)
if
(
fabs
(
old_value
-
*
p
)
<
FLT_EPSILON
)
// No change since last time
// No change since last time
return
1
;
return
1
;
break
;
case
pwr_eType_Int32
:
case
pwr_eType_Int32
:
if
(
*
(
pwr_tInt32
*
)
p
==
(
pwr_tInt32
)
old_value
)
if
(
*
(
pwr_tInt32
*
)
p
==
(
pwr_tInt32
)
old_value
)
return
1
;
return
1
;
break
;
default:
;
default:
;
}
}
}
}
...
...
xtt/lib/ge/src/ge_dyn.h
View file @
a303593e
...
@@ -288,6 +288,7 @@ extern "C" {
...
@@ -288,6 +288,7 @@ extern "C" {
ge_eSave_DigError_attribute
=
700
,
ge_eSave_DigError_attribute
=
700
,
ge_eSave_DigWarning_attribute
=
800
,
ge_eSave_DigWarning_attribute
=
800
,
ge_eSave_Invisible_attribute
=
900
,
ge_eSave_Invisible_attribute
=
900
,
ge_eSave_Invisible_dimmed
=
901
,
ge_eSave_DigBorder_attribute
=
1000
,
ge_eSave_DigBorder_attribute
=
1000
,
ge_eSave_DigBorder_color
=
1001
,
ge_eSave_DigBorder_color
=
1001
,
ge_eSave_DigText_attribute
=
1100
,
ge_eSave_DigText_attribute
=
1100
,
...
@@ -925,7 +926,7 @@ class GeDigFlash : public GeDynElem {
...
@@ -925,7 +926,7 @@ class GeDigFlash : public GeDynElem {
color
(
glow_eDrawType_Inherit
),
on
(
true
)
color
(
glow_eDrawType_Inherit
),
on
(
true
)
{
strcpy
(
attribute
,
""
);}
{
strcpy
(
attribute
,
""
);}
GeDigFlash
(
const
GeDigFlash
&
x
)
:
GeDigFlash
(
const
GeDigFlash
&
x
)
:
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
),
color
(
x
.
color
)
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
),
color
(
x
.
color
)
,
on
(
x
.
on
)
{
strcpy
(
attribute
,
x
.
attribute
);}
{
strcpy
(
attribute
,
x
.
attribute
);}
void
get_attributes
(
attr_sItem
*
attrinfo
,
int
*
item_count
);
void
get_attributes
(
attr_sItem
*
attrinfo
,
int
*
item_count
);
void
save
(
ofstream
&
fp
);
void
save
(
ofstream
&
fp
);
...
@@ -944,6 +945,7 @@ class GeDigFlash : public GeDynElem {
...
@@ -944,6 +945,7 @@ class GeDigFlash : public GeDynElem {
class
GeInvisible
:
public
GeDynElem
{
class
GeInvisible
:
public
GeDynElem
{
public:
public:
char
attribute
[
120
];
//!< Database reference for digital attribute.
char
attribute
[
120
];
//!< Database reference for digital attribute.
int
dimmed
;
//!< Object is dimmed (not invisible)
pwr_tBoolean
*
p
;
pwr_tBoolean
*
p
;
pwr_tSubid
subid
;
pwr_tSubid
subid
;
...
@@ -952,12 +954,14 @@ class GeInvisible : public GeDynElem {
...
@@ -952,12 +954,14 @@ class GeInvisible : public GeDynElem {
int
inverted
;
int
inverted
;
bool
first_scan
;
bool
first_scan
;
pwr_tBoolean
old_value
;
pwr_tBoolean
old_value
;
int
a_typeid
;
GeInvisible
(
GeDyn
*
e_dyn
)
:
GeInvisible
(
GeDyn
*
e_dyn
)
:
GeDynElem
(
e_dyn
,
ge_mDynType_Invisible
,
(
ge_mActionType
)
0
,
ge_eDynPrio_Invisible
)
GeDynElem
(
e_dyn
,
ge_mDynType_Invisible
,
(
ge_mActionType
)
0
,
ge_eDynPrio_Invisible
),
dimmed
(
0
)
{
strcpy
(
attribute
,
""
);}
{
strcpy
(
attribute
,
""
);}
GeInvisible
(
const
GeInvisible
&
x
)
:
GeInvisible
(
const
GeInvisible
&
x
)
:
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
)
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
)
,
dimmed
(
x
.
dimmed
)
{
strcpy
(
attribute
,
x
.
attribute
);}
{
strcpy
(
attribute
,
x
.
attribute
);}
void
get_attributes
(
attr_sItem
*
attrinfo
,
int
*
item_count
);
void
get_attributes
(
attr_sItem
*
attrinfo
,
int
*
item_count
);
void
save
(
ofstream
&
fp
);
void
save
(
ofstream
&
fp
);
...
@@ -1990,6 +1994,7 @@ class GeTable : public GeDynElem {
...
@@ -1990,6 +1994,7 @@ class GeTable : public GeDynElem {
{
memset
(
attribute
,
0
,
sizeof
(
attribute
));
memset
(
format
,
0
,
sizeof
(
format
));
{
memset
(
attribute
,
0
,
sizeof
(
attribute
));
memset
(
format
,
0
,
sizeof
(
format
));
memset
(
sel_attribute
,
0
,
sizeof
(
sel_attribute
));
memset
(
old_value
,
0
,
sizeof
(
old_value
));
memset
(
sel_attribute
,
0
,
sizeof
(
sel_attribute
));
memset
(
old_value
,
0
,
sizeof
(
old_value
));
memset
(
is_headerref
,
0
,
sizeof
(
is_headerref
));
memset
(
headerref_p
,
0
,
sizeof
(
headerref_p
));
memset
(
is_headerref
,
0
,
sizeof
(
is_headerref
));
memset
(
headerref_p
,
0
,
sizeof
(
headerref_p
));
memset
(
sel_elements
,
0
,
sizeof
(
sel_elements
));
}
}
GeTable
(
const
GeTable
&
x
)
:
GeTable
(
const
GeTable
&
x
)
:
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
)
GeDynElem
(
x
.
dyn
,
x
.
dyn_type
,
x
.
action_type
,
x
.
prio
)
...
...
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