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
330fc5ab
Commit
330fc5ab
authored
Oct 25, 2007
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Command paste/toplvevel added
parent
45ce2c7e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
5 deletions
+31
-5
wb/lib/wb/src/wb_ldh.cpp
wb/lib/wb/src/wb_ldh.cpp
+5
-1
wb/lib/wb/src/wb_ldh.h
wb/lib/wb/src/wb_ldh.h
+2
-1
wb/lib/wb/src/wb_wnav_command.cpp
wb/lib/wb/src/wb_wnav_command.cpp
+24
-3
No files found.
wb/lib/wb/src/wb_ldh.cpp
View file @
330fc5ab
/*
* Proview $Id: wb_ldh.cpp,v 1.6
1 2007-09-26 11:52:34
claes Exp $
* Proview $Id: wb_ldh.cpp,v 1.6
2 2007-10-25 11:07:12
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -1142,6 +1142,7 @@ ldh_GetSessionInfo(ldh_tSession session, ldh_sSessInfo *ip)
ip
->
Access
=
sp
->
access
();
ip
->
Utility
=
sp
->
utility
();
ip
->
Empty
=
sp
->
isEmpty
()
?
1
:
0
;
ip
->
Vid
=
sp
->
vid
();
return
LDH__SUCCESS
;
}
...
...
@@ -1472,6 +1473,9 @@ ldh_AttrRefToName(ldh_tSession session, pwr_sAttrRef *arp, int nametype, char **
break
;
}
default:
{
if
(
arp
->
Objid
.
vid
==
0
&&
arp
->
Objid
.
oix
==
0
)
return
LDH__NOSUCHOBJ
;
wb_attribute
a
=
sp
->
attribute
(
arp
);
if
(
!
a
)
return
a
.
sts
();
...
...
wb/lib/wb/src/wb_ldh.h
View file @
330fc5ab
/*
* Proview $Id: wb_ldh.h,v 1.
39 2007-10-01 14:37:23
claes Exp $
* Proview $Id: wb_ldh.h,v 1.
40 2007-10-25 11:07:12
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -351,6 +351,7 @@ struct ldh_s_SessInfo {
ldh_eDId
DidRange
;
ldh_eUtility
Utility
;
pwr_tBoolean
Empty
;
pwr_tVid
Vid
;
};
struct
ldh_s_ObjContext
{
...
...
wb/lib/wb/src/wb_wnav_command.cpp
View file @
330fc5ab
/*
* Proview $Id: wb_wnav_command.cpp,v 1.4
5 2007-01-04 07:29:04
claes Exp $
* Proview $Id: wb_wnav_command.cpp,v 1.4
6 2007-10-25 11:07:12
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -237,7 +237,8 @@ dcli_tCmdTable wnav_command_table[] = {
{
"PASTE"
,
&
wnav_paste_func
,
{
"dcli_arg1"
,
"/INTO"
,
"/BUFFER"
,
"/KEEPOID"
,
""
}
{
"dcli_arg1"
,
"/INTO"
,
"/BUFFER"
,
"/KEEPOID"
,
"/TOPLEVEL"
,
""
}
},
{
"MOVE"
,
...
...
@@ -3273,6 +3274,27 @@ static int wnav_paste_func( void *client_data,
if
(
wnav
->
window_type
==
wnav_eWindowType_No
)
return
WNAV__CMDMODE
;
int
keepoid
=
ODD
(
dcli_get_qualifier
(
"/KEEPOID"
,
0
,
0
));
if
(
ODD
(
dcli_get_qualifier
(
"/TOPLEVEL"
,
0
,
0
)))
{
ldh_sSessInfo
info
;
pwr_tOid
destoid
;
sts
=
ldh_GetSessionInfo
(
wnav
->
ldhses
,
&
info
);
if
(
EVEN
(
sts
))
return
sts
;
dest
=
ldh_eDest_IntoFirst
;
destoid
.
oix
=
0
;
destoid
.
vid
=
info
.
Vid
;
sts
=
ldh_Paste
(
wnav
->
ldhses
,
destoid
,
dest
,
keepoid
,
buffer_ptr
);
if
(
EVEN
(
sts
))
{
wnav
->
message
(
' '
,
wnav_get_message
(
sts
));
return
sts
;
}
return
WNAV__SUCCESS
;
}
sts
=
wnav
->
get_select
(
&
sel_list
,
&
sel_is_attr
,
&
sel_cnt
);
if
(
EVEN
(
sts
))
{
wnav
->
message
(
'E'
,
"Nothing is selected in the current window"
);
...
...
@@ -3283,7 +3305,6 @@ static int wnav_paste_func( void *client_data,
return
WNAV__SELTOMANY
;
}
int
keepoid
=
ODD
(
dcli_get_qualifier
(
"/KEEPOID"
,
0
,
0
));
if
(
ODD
(
dcli_get_qualifier
(
"/INTO"
,
0
,
0
)))
dest
=
ldh_eDest_IntoFirst
;
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