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
e086f783
Commit
e086f783
authored
Sep 05, 2005
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete of objects with subwindows added
parent
9d426dcf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
3 deletions
+62
-3
wb/lib/wb/src/wb_foe_callbacks.c
wb/lib/wb/src/wb_foe_callbacks.c
+62
-3
No files found.
wb/lib/wb/src/wb_foe_callbacks.c
View file @
e086f783
/**
/**
* Proview $Id: wb_foe_callbacks.c,v 1.1
0 2005-09-01 14:57:58
claes Exp $
* Proview $Id: wb_foe_callbacks.c,v 1.1
1 2005-09-05 08:35:17
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
* Copyright (C) 2005 SSAB Oxelsund AB.
*
*
* This program is free software; you can redistribute it and/or
* This program is free software; you can redistribute it and/or
...
@@ -54,6 +54,7 @@
...
@@ -54,6 +54,7 @@
#include "wb_foe_callbacks.h"
#include "wb_foe_callbacks.h"
#include "wb_foe_api.h"
#include "wb_foe_api.h"
#include "co_api.h"
#include "co_api.h"
#include "co_wow.h"
#include "pwr_baseclasses.h"
#include "pwr_baseclasses.h"
#include "flow_x.h"
#include "flow_x.h"
...
@@ -857,6 +858,50 @@ XmAnyCallbackStruct *data;
...
@@ -857,6 +858,50 @@ XmAnyCallbackStruct *data;
* Checks first that a selected node does not contain a subwindow.
* Checks first that a selected node does not contain a subwindow.
*
*
**************************************************************************/
**************************************************************************/
static
void
foe_delete_subwindow_ok_cb
(
void
*
ctx
,
void
*
data
)
{
foe_ctx
foectx
=
(
foe_ctx
)
ctx
;
vldh_t_node
node
=
(
vldh_t_node
)
data
;
pwr_tStatus
sts
,
rsts
;
pwr_tOid
child
,
nextchild
;
vldh_t_wind
wind
=
foectx
->
grectx
->
wind
;
unsigned
long
wind_count
;
vldh_t_wind
*
windlist
;
vldh_t_wind
*
wind_ptr
;
int
i
;
/* Check that subwindow is not open */
sts
=
vldh_get_wind_subwindows
(
foectx
->
grectx
->
wind
,
&
wind_count
,
&
windlist
);
if
(
EVEN
(
sts
))
{
error_msg
(
sts
);
return
;}
for
(
sts
=
ldh_GetChild
(
wind
->
hw
.
ldhses
,
node
->
ln
.
oid
,
&
child
);
ODD
(
sts
);
sts
=
ldh_GetNextSibling
(
wind
->
hw
.
ldhses
,
child
,
&
child
))
{
wind_ptr
=
windlist
;
for
(
i
=
0
;
i
<
wind_count
;
i
++
)
{
if
(
cdh_ObjidIsEqual
(
(
*
wind_ptr
)
->
lw
.
oid
,
child
))
{
wow_DisplayError
(
foectx
->
widgets
.
foe_window
,
"Window open"
,
"Subwindow is open
\n
Close subwindow first"
);
XtFree
((
char
*
)
windlist
);
return
;
}
wind_ptr
++
;
}
}
if
(
wind_count
>
0
)
XtFree
((
char
*
)
windlist
);
for
(
sts
=
ldh_GetChild
(
wind
->
hw
.
ldhses
,
node
->
ln
.
oid
,
&
child
);
ODD
(
sts
);
child
=
nextchild
)
{
sts
=
ldh_GetNextSibling
(
wind
->
hw
.
ldhses
,
child
,
&
nextchild
);
rsts
=
ldh_DeleteObjectTree
(
wind
->
hw
.
ldhses
,
child
);
if
(
EVEN
(
rsts
))
{
error_msg
(
rsts
);
return
;
}
}
node
->
ln
.
subwindow
=
0
;
gre_delete
(
foectx
->
grectx
);
}
static
void
foe_activate_delete
(
w
,
foectx
,
data
)
static
void
foe_activate_delete
(
w
,
foectx
,
data
)
Widget
w
;
Widget
w
;
...
@@ -880,6 +925,20 @@ XmAnyCallbackStruct *data;
...
@@ -880,6 +925,20 @@ XmAnyCallbackStruct *data;
/* Delete the selected nodes and connections */
/* Delete the selected nodes and connections */
/* Check that any node doesn't contain a subwindow */
/* Check that any node doesn't contain a subwindow */
gre_get_selnodes
(
foectx
->
grectx
,
&
node_count
,
&
nodelist
);
gre_get_selnodes
(
foectx
->
grectx
,
&
node_count
,
&
nodelist
);
if
(
node_count
==
1
&&
(
*
nodelist
)
->
ln
.
subwindow
!=
0
)
{
/* Single node that has subwindow */
char
msg
[
200
];
sprintf
(
msg
,
"Object
\"
%s
\"
has subwindow
\n
Do you wan't to delete the subwindow?"
,
(
*
nodelist
)
->
hn
.
name
);
wow_DisplayQuestion
(
foectx
,
foectx
->
widgets
.
foe_window
,
"Delete subwindow"
,
msg
,
foe_delete_subwindow_ok_cb
,
0
,
*
nodelist
);
foectx
->
popupmenu_node
=
0
;
return
;
}
node_ptr
=
nodelist
;
node_ptr
=
nodelist
;
subwind_found
=
FALSE
;
subwind_found
=
FALSE
;
for
(
i
=
0
;
i
<
node_count
;
i
++
)
for
(
i
=
0
;
i
<
node_count
;
i
++
)
...
@@ -894,8 +953,8 @@ XmAnyCallbackStruct *data;
...
@@ -894,8 +953,8 @@ XmAnyCallbackStruct *data;
if
(
node_count
>
0
)
XtFree
((
char
*
)
nodelist
);
if
(
node_count
>
0
)
XtFree
((
char
*
)
nodelist
);
if
(
subwind_found
)
if
(
subwind_found
)
{
{
foe_message
(
foectx
,
wow_DisplayError
(
foectx
->
widgets
.
foe_window
,
"Subwindow found"
,
"Subwindow found, delete the subwindow first
"
);
"Subwindow found
\n
Delete objects with subwindows separately
"
);
BEEP
;
BEEP
;
}
}
else
else
...
...
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