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
8d5ef11c
Commit
8d5ef11c
authored
Jun 17, 2004
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix in CloseGraph and Menu, and create annot's with selected textsize
parent
60869dfc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
9 deletions
+45
-9
xtt/lib/ge/src/ge_graph.cpp
xtt/lib/ge/src/ge_graph.cpp
+45
-9
No files found.
xtt/lib/ge/src/ge_graph.cpp
View file @
8d5ef11c
...
@@ -36,6 +36,7 @@ extern "C" {
...
@@ -36,6 +36,7 @@ extern "C" {
#include "ge_attr.h"
#include "ge_attr.h"
#include "ge_dyn.h"
#include "ge_dyn.h"
#include "ge_msg.h"
#include "ge_msg.h"
#include "glow_msg.h"
extern
"C"
{
extern
"C"
{
#include "co_mrm_util.h"
#include "co_mrm_util.h"
...
@@ -2097,11 +2098,27 @@ static int graph_grow_cb( GlowCtx *ctx, glow_tEvent event)
...
@@ -2097,11 +2098,27 @@ static int graph_grow_cb( GlowCtx *ctx, glow_tEvent event)
case
grow_eMode_Annot
:
case
grow_eMode_Annot
:
{
{
grow_tObject
a1
;
grow_tObject
a1
;
glow_eDrawType
drawtype
;
int
textsize
;
if
(
graph
->
textbold
)
drawtype
=
glow_eDrawType_TextHelveticaBold
;
else
drawtype
=
glow_eDrawType_TextHelvetica
;
switch
(
graph
->
textsize
)
{
case
0
:
textsize
=
0
;
break
;
case
1
:
textsize
=
1
;
break
;
case
2
:
textsize
=
2
;
break
;
case
3
:
textsize
=
4
;
break
;
case
4
:
textsize
=
6
;
break
;
case
5
:
textsize
=
8
;
break
;
}
grow_CreateGrowAnnot
(
graph
->
grow
->
ctx
,
""
,
grow_CreateGrowAnnot
(
graph
->
grow
->
ctx
,
""
,
event
->
create_grow_object
.
x
,
event
->
create_grow_object
.
y
,
event
->
create_grow_object
.
x
,
event
->
create_grow_object
.
y
,
1
,
glow_eDrawType_TextHelveticaBold
,
graph
->
get_text_drawtype
(),
1
,
drawtype
,
graph
->
get_text_drawtype
(),
3
,
glow_eAnnotType_OneLine
,
textsize
,
glow_eAnnotType_OneLine
,
0
,
glow_mDisplayLevel_1
,
NULL
,
&
a1
);
0
,
glow_mDisplayLevel_1
,
NULL
,
&
a1
);
grow_SetModified
(
graph
->
grow
->
ctx
,
1
);
grow_SetModified
(
graph
->
grow
->
ctx
,
1
);
if
(
!
graph
->
keep_mode
)
if
(
!
graph
->
keep_mode
)
...
@@ -3047,7 +3064,7 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
...
@@ -3047,7 +3064,7 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
if
(
event
->
object
.
object_type
==
glow_eObjectType_NoObject
||
if
(
event
->
object
.
object_type
==
glow_eObjectType_NoObject
||
grow_GetObjectType
(
event
->
object
.
object
)
!=
glow_eObjectType_GrowMenu
)
{
grow_GetObjectType
(
event
->
object
.
object
)
!=
glow_eObjectType_GrowMenu
)
{
// Close any open menu, if not click in menu
// Close any open menu, if not click in menu
glow_sEvent
e
;
glow_sEvent
e
;
grow_tObject
*
objectlist
;
grow_tObject
*
objectlist
;
int
object_cnt
,
cnt
;
int
object_cnt
,
cnt
;
...
@@ -3123,22 +3140,32 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
...
@@ -3123,22 +3140,32 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
break
;
break
;
}
}
case
glow_eEvent_Key_Tab
:
case
glow_eEvent_Key_ShiftTab
:
case
glow_eEvent_Key_Escape
:
case
glow_eEvent_Key_Left
:
case
glow_eEvent_Key_Left
:
case
glow_eEvent_Key_Right
:
case
glow_eEvent_Key_Right
:
case
glow_eEvent_Key_Up
:
case
glow_eEvent_Key_Up
:
case
glow_eEvent_Key_Down
:
case
glow_eEvent_Key_Down
:
case
glow_eEvent_Key_Return
:
case
glow_eEvent_Key_Return
:
{
GeDyn
*
dyn
;
if
(
!
(
event
->
object
.
object_type
==
glow_eObjectType_NoObject
))
{
grow_GetUserData
(
event
->
object
.
object
,
(
void
**
)
&
dyn
);
dyn
->
action
(
event
->
object
.
object
,
event
);
}
break
;
}
case
glow_eEvent_Key_Tab
:
case
glow_eEvent_Key_ShiftTab
:
case
glow_eEvent_Key_Escape
:
case
glow_eEvent_InputFocusInit
:
{
case
glow_eEvent_InputFocusInit
:
{
GeDyn
*
dyn
;
GeDyn
*
dyn
;
if
(
event
->
object
.
object_type
==
glow_eObjectType_NoObject
)
{
if
(
event
->
object
.
object_type
==
glow_eObjectType_NoObject
)
{
grow_tObject
*
objectlist
;
grow_tObject
*
objectlist
;
int
object_cnt
;
int
object_cnt
;
int
new_object_cnt
;
int
i
;
int
i
;
grow_GetObjectList
(
graph
->
grow
->
ctx
,
&
objectlist
,
&
object_cnt
);
grow_GetObjectList
(
graph
->
grow
->
ctx
,
&
objectlist
,
&
object_cnt
);
for
(
i
=
0
;
i
<
object_cnt
;
i
++
)
{
for
(
i
=
0
;
i
<
object_cnt
;
i
++
)
{
if
(
grow_GetObjectType
(
objectlist
[
i
])
==
glow_eObjectType_GrowNode
||
if
(
grow_GetObjectType
(
objectlist
[
i
])
==
glow_eObjectType_GrowNode
||
...
@@ -3146,6 +3173,12 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
...
@@ -3146,6 +3173,12 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
grow_GetObjectType
(
objectlist
[
i
])
==
glow_eObjectType_GrowGroup
)
{
grow_GetObjectType
(
objectlist
[
i
])
==
glow_eObjectType_GrowGroup
)
{
grow_GetUserData
(
objectlist
[
i
],
(
void
**
)
&
dyn
);
grow_GetUserData
(
objectlist
[
i
],
(
void
**
)
&
dyn
);
dyn
->
action
(
objectlist
[
i
],
event
);
dyn
->
action
(
objectlist
[
i
],
event
);
// Check if anything is deleted
grow_GetObjectList
(
graph
->
grow
->
ctx
,
&
objectlist
,
&
new_object_cnt
);
if
(
new_object_cnt
!=
object_cnt
)
break
;
}
}
}
}
}
}
...
@@ -3173,6 +3206,7 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
...
@@ -3173,6 +3206,7 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
int
new_object_cnt
;
int
new_object_cnt
;
int
i
;
int
i
;
GeDyn
*
dyn
;
GeDyn
*
dyn
;
int
sts
;
grow_GetObjectList
(
graph
->
grow
->
ctx
,
&
objectlist
,
&
object_cnt
);
grow_GetObjectList
(
graph
->
grow
->
ctx
,
&
objectlist
,
&
object_cnt
);
for
(
i
=
0
;
i
<
object_cnt
;
i
++
)
{
for
(
i
=
0
;
i
<
object_cnt
;
i
++
)
{
...
@@ -3181,7 +3215,9 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
...
@@ -3181,7 +3215,9 @@ static int graph_trace_grow_cb( GlowCtx *ctx, glow_tEvent event)
grow_GetUserData
(
objectlist
[
i
],
(
void
**
)
&
dyn
);
grow_GetUserData
(
objectlist
[
i
],
(
void
**
)
&
dyn
);
dyn
->
action
(
objectlist
[
i
],
event
);
sts
=
dyn
->
action
(
objectlist
[
i
],
event
);
if
(
sts
==
GLOW__TERMINATED
)
return
sts
;
// Check if anything is deleted
// Check if anything is deleted
grow_GetObjectList
(
graph
->
grow
->
ctx
,
&
objectlist
,
&
new_object_cnt
);
grow_GetObjectList
(
graph
->
grow
->
ctx
,
&
objectlist
,
&
new_object_cnt
);
...
...
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