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
4263a939
Commit
4263a939
authored
May 13, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set all intern added to menu
parent
daaea6e7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
4 deletions
+35
-4
xtt/lib/ge/gtk/ge_subgraphs_gtk.cpp
xtt/lib/ge/gtk/ge_subgraphs_gtk.cpp
+15
-1
xtt/lib/ge/src/ge_subgraphs.cpp
xtt/lib/ge/src/ge_subgraphs.cpp
+18
-2
xtt/lib/ge/src/ge_subgraphs.h
xtt/lib/ge/src/ge_subgraphs.h
+2
-1
No files found.
xtt/lib/ge/gtk/ge_subgraphs_gtk.cpp
View file @
4263a939
/*
* Proview $Id: ge_subgraphs_gtk.cpp,v 1.
2 2008-01-24 09:28:0
1 claes Exp $
* Proview $Id: ge_subgraphs_gtk.cpp,v 1.
3 2008-05-13 13:53:1
1 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -106,6 +106,13 @@ static void subgraphs_activate_set_intern( GtkWidget *w, gpointer data)
item
->
set_extern
(
0
);
}
static
void
subgraphs_activate_set_all_intern
(
GtkWidget
*
w
,
gpointer
data
)
{
SubGraphsGtk
*
subgraphs
=
(
SubGraphsGtk
*
)
data
;
((
SubGraphs
*
)
subgraphs
)
->
set_all_extern
(
0
);
}
static
void
subgraphs_activate_help
(
GtkWidget
*
w
,
gpointer
data
)
{
}
...
...
@@ -160,6 +167,12 @@ SubGraphsGtk::SubGraphsGtk(
gtk_widget_add_accelerator
(
file_setintern
,
"activate"
,
accel_g
,
'i'
,
GDK_CONTROL_MASK
,
GTK_ACCEL_VISIBLE
);
GtkWidget
*
file_setallintern
=
gtk_menu_item_new_with_mnemonic
(
"Set _All Intern"
);
g_signal_connect
(
file_setallintern
,
"activate"
,
G_CALLBACK
(
subgraphs_activate_set_all_intern
),
this
);
gtk_widget_add_accelerator
(
file_setallintern
,
"activate"
,
accel_g
,
'l'
,
GDK_CONTROL_MASK
,
GTK_ACCEL_VISIBLE
);
GtkWidget
*
file_close
=
gtk_image_menu_item_new_from_stock
(
GTK_STOCK_CLOSE
,
accel_g
);
g_signal_connect
(
file_close
,
"activate"
,
G_CALLBACK
(
subgraphs_activate_close
),
this
);
...
...
@@ -167,6 +180,7 @@ SubGraphsGtk::SubGraphsGtk(
gtk_menu_shell_append
(
GTK_MENU_SHELL
(
file_menu
),
file_attributes
);
gtk_menu_shell_append
(
GTK_MENU_SHELL
(
file_menu
),
file_setextern
);
gtk_menu_shell_append
(
GTK_MENU_SHELL
(
file_menu
),
file_setintern
);
gtk_menu_shell_append
(
GTK_MENU_SHELL
(
file_menu
),
file_setallintern
);
gtk_menu_shell_append
(
GTK_MENU_SHELL
(
file_menu
),
file_close
);
GtkWidget
*
file
=
gtk_menu_item_new_with_mnemonic
(
"_File"
);
...
...
xtt/lib/ge/src/ge_subgraphs.cpp
View file @
4263a939
/*
* Proview $Id: ge_subgraphs.cpp,v 1.
6 2008-01-24 09:28:01
claes Exp $
* Proview $Id: ge_subgraphs.cpp,v 1.
7 2008-05-13 13:49:25
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -180,6 +180,23 @@ int SubGraphs::get_select( void **subgraph_item)
return
1
;
}
int
SubGraphs
::
set_all_extern
(
int
eval
)
{
brow_tNode
*
node_list
;
int
node_count
;
SubGraphBaseItem
*
item
;
brow_GetObjectList
(
brow
->
ctx
,
&
node_list
,
&
node_count
);
if
(
!
node_count
)
return
0
;
for
(
int
i
=
0
;
i
<
node_count
;
i
++
)
{
brow_GetUserData
(
node_list
[
i
],
(
void
**
)
&
item
);
if
(
item
->
type
==
subgraphs_eItemType_SubGraph
)
((
ItemSubGraph
*
)
item
)
->
set_extern
(
eval
);
}
return
1
;
}
//
// Callbacks from brow
...
...
@@ -691,7 +708,6 @@ static void subgraphs_attr_close_cb( Attr *attrctx)
SubGraphs
*
subgraphs
=
(
SubGraphs
*
)
attrctx
->
parent_ctx
;
subgraphs_tAttr
attrlist_p
,
prev_p
;
printf
(
"Here in attr close
\n
"
);
// if ( attrctx->object)
// grow_FreeObjectAttrInfo( (grow_sAttrInfo *)attrctx->client_data);
// else
...
...
xtt/lib/ge/src/ge_subgraphs.h
View file @
4263a939
/*
* Proview $Id: ge_subgraphs.h,v 1.
4 2007-01-04 08:18:3
5 claes Exp $
* Proview $Id: ge_subgraphs.h,v 1.
5 2008-05-13 13:49:2
5 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -101,6 +101,7 @@ class SubGraphs {
subgraphs_tAttr
attrlist
;
int
get_select
(
pwr_sAttrRef
*
attrref
,
int
*
is_attr
);
int
set_all_extern
(
int
eval
);
void
message
(
char
sev
,
char
*
text
);
void
set_inputfocus
();
int
object_attr
();
...
...
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