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
dd8a9ea2
Commit
dd8a9ea2
authored
Jul 14, 2005
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spreadsheet editor was not inserted correctly in Wtt application list
parent
3b04727e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
4 deletions
+30
-4
wb/lib/wb/src/wb.h
wb/lib/wb/src/wb.h
+2
-1
wb/lib/wb/src/wb_wda.cpp
wb/lib/wb/src/wb_wda.cpp
+1
-1
wb/lib/wb/src/wb_wtt.cpp
wb/lib/wb/src/wb_wtt.cpp
+23
-2
wb/lib/wb/src/wb_wtt.h
wb/lib/wb/src/wb_wtt.h
+4
-0
No files found.
wb/lib/wb/src/wb.h
View file @
dd8a9ea2
...
...
@@ -26,7 +26,8 @@ typedef enum {
wb_eUtility_Wtt
=
999
,
wb_eUtility_PlcEditor
=
1000
,
wb_eUtility_AttributeEditor
=
1001
,
wb_eUtility_Distributor
=
1002
wb_eUtility_Distributor
=
1002
,
wb_eUtility_SpreadsheetEditor
=
1003
}
wb_eUtility
;
#endif
...
...
wb/lib/wb/src/wb_wda.cpp
View file @
dd8a9ea2
...
...
@@ -886,7 +886,7 @@ Wda::Wda(
if
(
utility
==
wb_eUtility_Wtt
)
{
((
Wtt
*
)
parent_ctx
)
->
register_utility
(
(
void
*
)
this
,
wb_eUtility_
Attribute
Editor
);
wb_eUtility_
Spreadsheet
Editor
);
}
}
wb/lib/wb/src/wb_wtt.cpp
View file @
dd8a9ea2
...
...
@@ -150,7 +150,7 @@ extern "C" void wtt_uted_quit_cb( void *ctx)
extern
"C"
void
wtt_wpkg_quit_cb
(
void
*
ctx
)
{
delete
((
Wtt
*
)
ctx
)
->
wpkg
;
((
Wtt
*
)
ctx
)
->
wpkg
=
NULL
;
((
Wtt
*
)
ctx
)
->
wpkg
=
0
;
}
static
void
wtt_open_vsel_cb
(
void
*
ctx
,
wb_eType
type
,
char
*
filename
,
wow_eFileSelType
file_type
)
...
...
@@ -1094,7 +1094,7 @@ int Wtt::set_edit()
ldh_eUtility_Configurator
);
if
(
EVEN
(
sts
))
{
// Access denied, open readsess
s
ion again
// Access denied, open readsession again
ldh_OpenSession
(
&
ldhses
,
volctx
,
ldh_eAccess_ReadOnly
,
ldh_eUtility_Navigator
);
ldh_AddOtherSessionCallback
(
ldhses
,
(
void
*
)
this
,
...
...
@@ -3204,6 +3204,14 @@ void wtt_watt_close_cb( void *watt)
wtt
->
appl
.
remove
(
watt
);
}
void
wtt_wda_close_cb
(
void
*
wda
)
{
Wtt
*
wtt
=
(
Wtt
*
)
((
Wda
*
)
wda
)
->
parent_ctx
;
delete
(
Wda
*
)
wda
;
wtt
->
appl
.
remove
(
wda
);
}
void
Wtt
::
register_utility
(
void
*
ctx
,
wb_eUtility
utility
)
{
...
...
@@ -3213,6 +3221,10 @@ void Wtt::register_utility( void *ctx, wb_eUtility utility)
appl
.
insert
(
utility
,
ctx
,
pwr_cNObjid
,
""
);
((
WAtt
*
)
ctx
)
->
close_cb
=
wtt_watt_close_cb
;
break
;
case
wb_eUtility_SpreadsheetEditor
:
appl
.
insert
(
utility
,
ctx
,
pwr_cNObjid
,
""
);
((
Wda
*
)
ctx
)
->
close_cb
=
wtt_wda_close_cb
;
break
;
default:
;
}
...
...
@@ -3601,6 +3613,9 @@ Wtt::~Wtt()
free_cursor
();
if
(
utedctx
)
uted_delete
(
utedctx
);
if
(
set_focus_disabled
)
XtRemoveTimeOut
(
disfocus_timerid
);
if
(
selection_timerid
)
...
...
@@ -3668,6 +3683,9 @@ WttApplList::~WttApplList()
case
wb_eUtility_AttributeEditor
:
delete
(
WAtt
*
)
elem
->
ctx
;
break
;
case
wb_eUtility_SpreadsheetEditor
:
delete
(
Wda
*
)
elem
->
ctx
;
break
;
default:
;
}
...
...
@@ -3733,6 +3751,9 @@ void WttApplList::set_editmode( int editmode, ldh_tSesContext ldhses)
remove
(
elem
->
ctx
);
elem
=
next_elem
;
continue
;
case
wb_eUtility_SpreadsheetEditor
:
((
Wda
*
)
elem
->
ctx
)
->
set_editmode
(
editmode
,
ldhses
);
break
;
default:
;
}
...
...
wb/lib/wb/src/wb_wtt.h
View file @
dd8a9ea2
...
...
@@ -49,6 +49,10 @@ extern "C" {
#include "wb_uted.h"
#endif
#ifndef wb_wda_h
#include "wb_wda.h"
#endif
#ifndef co_wow_h
#include "co_wow.h"
#endif
...
...
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