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
826d6e2b
Commit
826d6e2b
authored
Sep 22, 2014
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build directory window update button and opened maps kept
parent
fbebfd7e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
143 additions
and
9 deletions
+143
-9
wb/lib/wb/gtk/wb_expw_gtk.cpp
wb/lib/wb/gtk/wb_expw_gtk.cpp
+8
-0
wb/lib/wb/src/wb_expw.cpp
wb/lib/wb/src/wb_expw.cpp
+5
-0
wb/lib/wb/src/wb_expw.h
wb/lib/wb/src/wb_expw.h
+2
-1
wb/lib/wb/src/wb_expwnav.cpp
wb/lib/wb/src/wb_expwnav.cpp
+126
-7
wb/lib/wb/src/wb_expwnav.h
wb/lib/wb/src/wb_expwnav.h
+2
-1
No files found.
wb/lib/wb/gtk/wb_expw_gtk.cpp
View file @
826d6e2b
...
...
@@ -175,6 +175,14 @@ WbExpWGtk::WbExpWGtk (
g_object_set
(
tools_export
,
"can-focus"
,
FALSE
,
NULL
);
gtk_toolbar_append_widget
(
tools
,
tools_export
,
action
,
""
);
GtkWidget
*
tools_update
=
gtk_button_new
();
dcli_translate_filename
(
fname
,
"$pwr_exe/ge_update.png"
);
gtk_container_add
(
GTK_CONTAINER
(
tools_update
),
gtk_image_new_from_file
(
fname
));
g_signal_connect
(
tools_update
,
"clicked"
,
G_CALLBACK
(
activate_update
),
this
);
g_object_set
(
tools_update
,
"can-focus"
,
FALSE
,
NULL
);
gtk_toolbar_append_widget
(
tools
,
tools_update
,
"Update"
,
""
);
GtkWidget
*
tools_zoom_in
=
gtk_button_new
();
dcli_translate_filename
(
fname
,
"$pwr_exe/xtt_zoom_in.png"
);
gtk_container_add
(
GTK_CONTAINER
(
tools_zoom_in
),
...
...
wb/lib/wb/src/wb_expw.cpp
View file @
826d6e2b
...
...
@@ -90,6 +90,11 @@ void WbExpW::show()
expwnav
->
show
();
}
void
WbExpW
::
update
()
{
expwnav
->
update
();
}
void
WbExpW
::
activate_export
()
{
char
text
[
80
];
...
...
wb/lib/wb/src/wb_expw.h
View file @
826d6e2b
...
...
@@ -69,8 +69,9 @@ class WbExpW {
virtual
void
set_title
(
char
*
title
)
{}
void
show
();
void
update
();
void
activate_export
();
void
activate_update
()
{
expwnav
->
show
();}
void
activate_update
()
{
expwnav
->
update
();}
void
activate_check_all
()
{
expwnav
->
check_all
();}
void
activate_check_clear
()
{
expwnav
->
check_clear
();}
void
activate_check_reset
()
{
expwnav
->
check_reset
();}
...
...
wb/lib/wb/src/wb_expwnav.cpp
View file @
826d6e2b
...
...
@@ -659,9 +659,117 @@ void WbExpWNav::show()
}
}
void
WbExpWNav
::
show_export_import
()
void
WbExpWNav
::
update
()
{
int
sts
;
ItemDir
*
item
;
brow_tNode
node
;
pwr_tString80
*
open_nodes
;
int
select_exist
=
0
;
expwitem_eItemType
select_type
;
pwr_tString80
select_name
;
pwr_tFileName
select_source
;
pwr_tFileName
select_target
;
brow_tNode
*
node_list
;
int
node_count
;
// Store selected node
brow_GetSelectedNodes
(
brow
->
ctx
,
&
node_list
,
&
node_count
);
if
(
node_count
)
{
select_exist
=
1
;
brow_GetUserData
(
node_list
[
0
],
(
void
**
)
&
item
);
select_type
=
item
->
type
;
switch
(
item
->
type
)
{
case
expwitem_eItemType_Dir
:
strcpy
(
select_name
,
item
->
name
);
break
;
case
expwitem_eItemType_Exp
:
strcpy
(
select_source
,
((
ItemExp
*
)
item
)
->
source
);
strcpy
(
select_target
,
((
ItemExp
*
)
item
)
->
target
);
break
;
}
free
(
node_list
);
}
// Store all open nodes.
int
cnt
=
0
;
for
(
sts
=
brow_GetFirst
(
brow
->
ctx
,
&
node
);
ODD
(
sts
);
sts
=
brow_GetNextSibling
(
brow
->
ctx
,
node
,
&
node
))
{
if
(
brow_IsOpen
(
node
))
cnt
++
;
}
open_nodes
=
(
pwr_tString80
*
)
calloc
(
cnt
,
sizeof
(
pwr_tString80
));
cnt
=
0
;
for
(
sts
=
brow_GetFirst
(
brow
->
ctx
,
&
node
);
ODD
(
sts
);
sts
=
brow_GetNextSibling
(
brow
->
ctx
,
node
,
&
node
))
{
if
(
brow_IsOpen
(
node
))
{
brow_GetUserData
(
node
,
(
void
**
)
&
item
);
switch
(
item
->
type
)
{
case
expwitem_eItemType_Exp
:
break
;
case
expwitem_eItemType_Dir
:
strcpy
(
open_nodes
[
cnt
],
item
->
name
);
break
;
}
cnt
++
;
}
}
brow_SetNodraw
(
brow
->
ctx
);
show
();
if
(
cnt
)
{
for
(
sts
=
brow_GetFirst
(
brow
->
ctx
,
&
node
);
ODD
(
sts
);
sts
=
brow_GetNextSibling
(
brow
->
ctx
,
node
,
&
node
))
{
brow_GetUserData
(
node
,
(
void
**
)
&
item
);
switch
(
item
->
type
)
{
case
expwitem_eItemType_Exp
:
break
;
case
expwitem_eItemType_Dir
:
for
(
int
i
=
0
;
i
<
cnt
;
i
++
)
{
if
(
strcmp
(
open_nodes
[
i
],
item
->
name
)
==
0
)
{
item
->
open_children
();
}
}
break
;
}
}
}
// Select previously selected node
if
(
select_exist
)
{
brow_GetObjectList
(
brow
->
ctx
,
&
node_list
,
&
node_count
);
for
(
int
i
=
0
;
i
<
node_count
;
i
++
)
{
brow_GetUserData
(
node_list
[
i
],
(
void
**
)
&
item
);
if
(
select_type
==
item
->
type
&&
((
item
->
type
==
expwitem_eItemType_Exp
&&
strcmp
(
select_source
,
((
ItemExp
*
)
item
)
->
source
)
==
0
&&
strcmp
(
select_target
,
((
ItemExp
*
)
item
)
->
target
)
==
0
)
||
(
item
->
type
==
expwitem_eItemType_Dir
&&
strcmp
(
select_name
,
item
->
name
)
==
0
)))
{
brow_SelectInsert
(
brow
->
ctx
,
node_list
[
i
]);
brow_SetInverse
(
node_list
[
i
],
1
);
}
}
}
brow_ResetNodraw
(
brow
->
ctx
);
brow_Redraw
(
brow
->
ctx
,
0
);
free
(
open_nodes
);
}
void
WbExpWNav
::
show_export_import
()
{
pwr_tFileName
fname
;
char
line
[
400
];
char
line_item
[
4
][
250
];
...
...
@@ -669,6 +777,7 @@ void WbExpWNav::show_export_import()
int
num
;
int
sts
;
char
tag
[
20
];
ItemExp
*
first_item
=
0
;
brow_SetNodraw
(
brow
->
ctx
);
brow_DeleteAll
(
brow
->
ctx
);
...
...
@@ -735,6 +844,8 @@ void WbExpWNav::show_export_import()
ItemExp
*
item
=
new
ItemExp
(
this
,
found_file
,
line_item
[
3
],
0
,
0
,
flow_eDest_IntoLast
);
if
(
update
)
brow_SetRadiobutton
(
item
->
node
,
0
,
1
);
if
(
!
first_item
)
first_item
=
item
;
}
dcli_search_file
(
line_item
[
2
],
found_file
,
DCLI_DIR_SEARCH_END
);
}
...
...
@@ -742,7 +853,8 @@ void WbExpWNav::show_export_import()
is
.
close
();
check_all
();
if
(
!
show_all
&&
first_item
)
brow_CenterObject
(
brow
->
ctx
,
first_item
->
node
,
0
);
brow_ResetNodraw
(
brow
->
ctx
);
brow_Redraw
(
brow
->
ctx
,
0
);
...
...
@@ -882,7 +994,7 @@ void WbExpWNav::show_builddir()
is
.
close
();
redraw
();
redraw
(
0
);
}
void
WbExpWNav
::
set_show_all
(
int
set
)
...
...
@@ -894,13 +1006,15 @@ void WbExpWNav::set_show_all( int set)
show
();
break
;
case
expw_eType_BuildDirectories
:
redraw
();
redraw
(
!
show_all
);
break
;
}
}
void
WbExpWNav
::
redraw
()
void
WbExpWNav
::
redraw
(
int
posit_top
)
{
ItemDir
*
first_item
=
0
;
brow_SetNodraw
(
brow
->
ctx
);
brow_DeleteAll
(
brow
->
ctx
);
...
...
@@ -910,8 +1024,13 @@ void WbExpWNav::redraw()
brow_SetRadiobutton
(
item
->
node
,
0
,
1
);
if
(
dir
->
open
)
item
->
open_children
();
if
(
!
first_item
)
first_item
=
item
;
}
if
(
first_item
&&
posit_top
)
brow_CenterObject
(
brow
->
ctx
,
first_item
->
node
,
0
);
brow_ResetNodraw
(
brow
->
ctx
);
brow_Redraw
(
brow
->
ctx
,
0
);
}
...
...
@@ -1149,7 +1268,7 @@ void WbExpWNav::check_all()
for
(
ExpWExec
*
ep
=
dir
->
execlist
;
ep
;
ep
=
ep
->
next
)
ep
->
update
=
1
;
}
redraw
();
redraw
(
0
);
break
;
}
default:
;
...
...
@@ -1180,7 +1299,7 @@ void WbExpWNav::check_clear()
for
(
ExpWExec
*
ep
=
dir
->
execlist
;
ep
;
ep
=
ep
->
next
)
ep
->
update
=
0
;
}
redraw
();
redraw
(
0
);
break
;
}
default:
;
...
...
wb/lib/wb/src/wb_expwnav.h
View file @
826d6e2b
...
...
@@ -173,9 +173,10 @@ class WbExpWNav {
virtual
void
set_input_focus
()
{}
void
show
();
void
update
();
void
show_export_import
();
void
show_builddir
();
void
redraw
();
void
redraw
(
int
posit_top
);
void
clear
();
void
zoom
(
double
zoom_factor
);
void
unzoom
();
...
...
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