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
8e4085c9
Commit
8e4085c9
authored
Jul 26, 2013
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Xtt commands, aristotle symbol added to 'close graph/multiview' and 'set subwindow'
parent
e2af5336
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
34 deletions
+52
-34
xtt/lib/xtt/src/xtt_xnav_command.cpp
xtt/lib/xtt/src/xtt_xnav_command.cpp
+52
-34
No files found.
xtt/lib/xtt/src/xtt_xnav_command.cpp
View file @
8e4085c9
...
@@ -189,6 +189,7 @@ static void xnav_open_shist_cb( void *ctx, char *text);
...
@@ -189,6 +189,7 @@ static void xnav_open_shist_cb( void *ctx, char *text);
static
void
xnav_open_shist_cancel_cb
(
void
*
ctx
);
static
void
xnav_open_shist_cancel_cb
(
void
*
ctx
);
static
void
xnav_show_objectlist_cb
(
void
*
ctx
,
char
*
text
);
static
void
xnav_show_objectlist_cb
(
void
*
ctx
,
char
*
text
);
static
void
xnav_show_objectlist_cancel_cb
(
void
*
ctx
);
static
void
xnav_show_objectlist_cancel_cb
(
void
*
ctx
);
static
int
xnav_replace_node_str
(
char
*
out
,
char
*
object_str
);
static
int
xnav_help_func
(
void
*
client_data
,
static
int
xnav_help_func
(
void
*
client_data
,
void
*
client_flag
);
void
*
client_flag
);
...
@@ -836,11 +837,11 @@ static int xnav_set_func( void *client_data,
...
@@ -836,11 +837,11 @@ static int xnav_set_func( void *client_data,
// Command is "SET SUBWINDOW"
// Command is "SET SUBWINDOW"
XttGe
*
gectx
;
XttGe
*
gectx
;
XttMultiView
*
mvctx
;
XttMultiView
*
mvctx
;
char
graph_str
[
80
]
;
pwr_tOName
graph_str
;
char
name_str
[
80
];
char
name_str
[
80
];
pwr_tOName
object_str
;
pwr_tOName
object_str
;
char
*
object_p
;
char
*
object_p
;
char
source_str
[
80
]
;
pwr_tOName
source_str
;
if
(
EVEN
(
dcli_get_qualifier
(
"dcli_arg2"
,
graph_str
,
sizeof
(
graph_str
))))
{
if
(
EVEN
(
dcli_get_qualifier
(
"dcli_arg2"
,
graph_str
,
sizeof
(
graph_str
))))
{
xnav
->
message
(
'E'
,
"Graph name is missing"
);
xnav
->
message
(
'E'
,
"Graph name is missing"
);
...
@@ -862,6 +863,9 @@ static int xnav_set_func( void *client_data,
...
@@ -862,6 +863,9 @@ static int xnav_set_func( void *client_data,
else
else
object_p
=
0
;
object_p
=
0
;
if
(
object_p
)
xnav_replace_node_str
(
object_p
,
object_p
);
if
(
xnav
->
appl
.
find_graph
(
graph_str
,
0
,
(
void
**
)
&
gectx
))
{
if
(
xnav
->
appl
.
find_graph
(
graph_str
,
0
,
(
void
**
)
&
gectx
))
{
return
gectx
->
set_subwindow_source
(
name_str
,
source_str
,
object_p
);
return
gectx
->
set_subwindow_source
(
name_str
,
source_str
,
object_p
);
}
}
...
@@ -869,6 +873,8 @@ static int xnav_set_func( void *client_data,
...
@@ -869,6 +873,8 @@ static int xnav_set_func( void *client_data,
pwr_tStatus
sts
;
pwr_tStatus
sts
;
pwr_tAttrRef
aref
;
pwr_tAttrRef
aref
;
xnav_replace_node_str
(
graph_str
,
graph_str
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
graph_str
,
&
aref
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
graph_str
,
&
aref
);
if
(
ODD
(
sts
)
&&
xnav
->
appl
.
find
(
applist_eType_MultiView
,
&
aref
,
(
void
**
)
&
mvctx
))
{
if
(
ODD
(
sts
)
&&
xnav
->
appl
.
find
(
applist_eType_MultiView
,
&
aref
,
(
void
**
)
&
mvctx
))
{
return
mvctx
->
set_subwindow_source
(
name_str
,
source_str
,
object_p
);
return
mvctx
->
set_subwindow_source
(
name_str
,
source_str
,
object_p
);
...
@@ -884,7 +890,7 @@ static int xnav_set_func( void *client_data,
...
@@ -884,7 +890,7 @@ static int xnav_set_func( void *client_data,
// Command is "SET NEXTSUBWINDOW"
// Command is "SET NEXTSUBWINDOW"
XttGe
*
gectx
;
XttGe
*
gectx
;
XttMultiView
*
mvctx
;
XttMultiView
*
mvctx
;
char
graph_str
[
80
]
;
pwr_tOName
graph_str
;
char
name_str
[
80
];
char
name_str
[
80
];
if
(
EVEN
(
dcli_get_qualifier
(
"dcli_arg2"
,
graph_str
,
sizeof
(
graph_str
))))
{
if
(
EVEN
(
dcli_get_qualifier
(
"dcli_arg2"
,
graph_str
,
sizeof
(
graph_str
))))
{
...
@@ -904,6 +910,8 @@ static int xnav_set_func( void *client_data,
...
@@ -904,6 +910,8 @@ static int xnav_set_func( void *client_data,
pwr_tStatus
sts
;
pwr_tStatus
sts
;
pwr_tAttrRef
aref
;
pwr_tAttrRef
aref
;
xnav_replace_node_str
(
graph_str
,
graph_str
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
graph_str
,
&
aref
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
graph_str
,
&
aref
);
if
(
ODD
(
sts
)
&&
xnav
->
appl
.
find
(
applist_eType_MultiView
,
&
aref
,
(
void
**
)
&
mvctx
))
{
if
(
ODD
(
sts
)
&&
xnav
->
appl
.
find
(
applist_eType_MultiView
,
&
aref
,
(
void
**
)
&
mvctx
))
{
return
mvctx
->
set_subwindow_next
(
name_str
);
return
mvctx
->
set_subwindow_next
(
name_str
);
...
@@ -919,7 +927,7 @@ static int xnav_set_func( void *client_data,
...
@@ -919,7 +927,7 @@ static int xnav_set_func( void *client_data,
// Command is "SET PREVSUBWINDOW"
// Command is "SET PREVSUBWINDOW"
XttGe
*
gectx
;
XttGe
*
gectx
;
XttMultiView
*
mvctx
;
XttMultiView
*
mvctx
;
char
graph_str
[
80
]
;
pwr_tOName
graph_str
;
char
name_str
[
80
];
char
name_str
[
80
];
if
(
EVEN
(
dcli_get_qualifier
(
"dcli_arg2"
,
graph_str
,
sizeof
(
graph_str
))))
{
if
(
EVEN
(
dcli_get_qualifier
(
"dcli_arg2"
,
graph_str
,
sizeof
(
graph_str
))))
{
...
@@ -939,6 +947,8 @@ static int xnav_set_func( void *client_data,
...
@@ -939,6 +947,8 @@ static int xnav_set_func( void *client_data,
pwr_tStatus
sts
;
pwr_tStatus
sts
;
pwr_tAttrRef
aref
;
pwr_tAttrRef
aref
;
xnav_replace_node_str
(
graph_str
,
graph_str
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
graph_str
,
&
aref
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
graph_str
,
&
aref
);
if
(
ODD
(
sts
)
&&
xnav
->
appl
.
find
(
applist_eType_MultiView
,
&
aref
,
(
void
**
)
&
mvctx
))
{
if
(
ODD
(
sts
)
&&
xnav
->
appl
.
find
(
applist_eType_MultiView
,
&
aref
,
(
void
**
)
&
mvctx
))
{
return
mvctx
->
set_subwindow_prev
(
name_str
);
return
mvctx
->
set_subwindow_prev
(
name_str
);
...
@@ -2851,7 +2861,6 @@ static int xnav_open_func( void *client_data,
...
@@ -2851,7 +2861,6 @@ static int xnav_open_func( void *client_data,
if
(
ODD
(
dcli_get_qualifier
(
"/OBJECT"
,
object_str
,
sizeof
(
object_str
))))
{
if
(
ODD
(
dcli_get_qualifier
(
"/OBJECT"
,
object_str
,
sizeof
(
object_str
))))
{
pwr_tObjid
objid
;
pwr_tObjid
objid
;
pwr_tObjid
node_objid
;
pwr_tAName
xttgraph_name
;
pwr_tAName
xttgraph_name
;
int
sts
;
int
sts
;
char
focus_str
[
80
];
char
focus_str
[
80
];
...
@@ -2863,21 +2872,8 @@ static int xnav_open_func( void *client_data,
...
@@ -2863,21 +2872,8 @@ static int xnav_open_func( void *client_data,
int
nr
;
int
nr
;
IF_NOGDH_RETURN
;
IF_NOGDH_RETURN
;
if
(
strncmp
(
object_str
,
"*-"
,
2
)
==
0
||
cdh_NoCaseStrncmp
(
object_str
,
"$node-"
,
6
)
==
0
)
{
xnav_replace_node_str
(
xttgraph_name
,
object_str
);
// Replace * by the node object
sts
=
gdh_GetNodeObject
(
0
,
&
node_objid
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
gdh_ObjidToName
(
node_objid
,
xttgraph_name
,
sizeof
(
xttgraph_name
),
cdh_mNName
);
if
(
EVEN
(
sts
))
return
sts
;
if
(
object_str
[
0
]
==
'*'
)
strcat
(
xttgraph_name
,
&
object_str
[
1
]);
else
strcat
(
xttgraph_name
,
&
object_str
[
5
]);
}
else
strcpy
(
xttgraph_name
,
object_str
);
sts
=
gdh_NameToObjid
(
xttgraph_name
,
&
objid
);
sts
=
gdh_NameToObjid
(
xttgraph_name
,
&
objid
);
if
(
EVEN
(
sts
))
{
if
(
EVEN
(
sts
))
{
...
@@ -3071,7 +3067,7 @@ static int xnav_open_func( void *client_data,
...
@@ -3071,7 +3067,7 @@ static int xnav_open_func( void *client_data,
int
x
,
y
;
int
x
,
y
;
unsigned
int
options
=
0
;
unsigned
int
options
=
0
;
pwr_tAttrRef
aref
=
pwr_cNAttrRef
;
pwr_tAttrRef
aref
=
pwr_cNAttrRef
;
char
name_str
[
80
]
;
pwr_tOName
name_str
;
char
*
name_ptr
=
0
;
char
*
name_ptr
=
0
;
int
nr
;
int
nr
;
pwr_tStatus
sts
;
pwr_tStatus
sts
;
...
@@ -3102,6 +3098,8 @@ static int xnav_open_func( void *client_data,
...
@@ -3102,6 +3098,8 @@ static int xnav_open_func( void *client_data,
}
}
}
}
xnav_replace_node_str
(
name_ptr
,
name_ptr
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
name_ptr
,
&
aref
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
name_ptr
,
&
aref
);
if
(
EVEN
(
sts
))
{
if
(
EVEN
(
sts
))
{
xnav
->
message
(
'E'
,
"MultiView object not found"
);
xnav
->
message
(
'E'
,
"MultiView object not found"
);
...
@@ -4222,7 +4220,6 @@ static int xnav_close_func( void *client_data,
...
@@ -4222,7 +4220,6 @@ static int xnav_close_func( void *client_data,
if
(
ODD
(
dcli_get_qualifier
(
"/OBJECT"
,
object_str
,
sizeof
(
object_str
))))
if
(
ODD
(
dcli_get_qualifier
(
"/OBJECT"
,
object_str
,
sizeof
(
object_str
))))
{
{
pwr_tObjid
objid
;
pwr_tObjid
objid
;
pwr_tObjid
node_objid
;
pwr_tAName
xttgraph_name
;
pwr_tAName
xttgraph_name
;
int
sts
;
int
sts
;
pwr_sClass_XttGraph
*
xttgraph_p
;
pwr_sClass_XttGraph
*
xttgraph_p
;
...
@@ -4230,18 +4227,8 @@ static int xnav_close_func( void *client_data,
...
@@ -4230,18 +4227,8 @@ static int xnav_close_func( void *client_data,
char
*
s
;
char
*
s
;
IF_NOGDH_RETURN
;
IF_NOGDH_RETURN
;
if
(
strncmp
(
object_str
,
"*-"
,
2
)
==
0
)
{
xnav_replace_node_str
(
xttgraph_name
,
object_str
);
// Replace * by the node object
sts
=
gdh_GetNodeObject
(
0
,
&
node_objid
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
gdh_ObjidToName
(
node_objid
,
xttgraph_name
,
sizeof
(
xttgraph_name
),
cdh_mNName
);
if
(
EVEN
(
sts
))
return
sts
;
strcat
(
xttgraph_name
,
&
object_str
[
1
]);
}
else
strcpy
(
xttgraph_name
,
object_str
);
sts
=
gdh_NameToObjid
(
xttgraph_name
,
&
objid
);
sts
=
gdh_NameToObjid
(
xttgraph_name
,
&
objid
);
if
(
EVEN
(
sts
))
if
(
EVEN
(
sts
))
...
@@ -4339,6 +4326,9 @@ static int xnav_close_func( void *client_data,
...
@@ -4339,6 +4326,9 @@ static int xnav_close_func( void *client_data,
}
}
}
}
xnav_replace_node_str
(
name_ptr
,
name_ptr
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
name_ptr
,
&
aref
);
sts
=
gdh_NameToAttrref
(
pwr_cNObjid
,
name_ptr
,
&
aref
);
if
(
EVEN
(
sts
))
{
if
(
EVEN
(
sts
))
{
xnav
->
message
(
'E'
,
"Object not found"
);
xnav
->
message
(
'E'
,
"Object not found"
);
...
@@ -8635,3 +8625,31 @@ int XNav::collect_window( int copy, int type)
...
@@ -8635,3 +8625,31 @@ int XNav::collect_window( int copy, int type)
return
XNAV__SUCCESS
;
return
XNAV__SUCCESS
;
}
}
static
int
xnav_replace_node_str
(
char
*
out
,
char
*
object_str
)
{
if
(
strncmp
(
object_str
,
"*-"
,
2
)
==
0
||
cdh_NoCaseStrncmp
(
object_str
,
"$node-"
,
6
)
==
0
)
{
// Replace * by the node object
pwr_tObjid
node_objid
;
pwr_tAName
str
;
pwr_tStatus
sts
;
sts
=
gdh_GetNodeObject
(
0
,
&
node_objid
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
gdh_ObjidToName
(
node_objid
,
str
,
sizeof
(
str
),
cdh_mNName
);
if
(
EVEN
(
sts
))
return
sts
;
if
(
object_str
[
0
]
==
'*'
)
strcat
(
str
,
&
object_str
[
1
]);
else
strcat
(
str
,
&
object_str
[
5
]);
strcpy
(
out
,
str
);
return
1
;
}
if
(
out
!=
object_str
)
strcpy
(
out
,
object_str
);
return
0
;
}
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