SCI: Added skeleton code for kEditText (still not working)
This commit is contained in:
parent
d8db7b11c1
commit
4ac2940bc5
6 changed files with 24 additions and 7 deletions
|
@ -499,6 +499,7 @@ static SciKernelMapEntry s_kernelMap[] = {
|
|||
{ MAP_CALL(UpdatePlane), SIG_EVERYWHERE, "o", NULL, NULL },
|
||||
{ MAP_CALL(UpdateScreenItem), SIG_EVERYWHERE, "o", NULL, NULL },
|
||||
{ MAP_CALL(ObjectIntersect), SIG_EVERYWHERE, "oo", NULL, NULL },
|
||||
{ MAP_CALL(EditText), SIG_EVERYWHERE, "o", NULL, NULL },
|
||||
|
||||
// SCI2 unmapped functions - TODO!
|
||||
|
||||
|
@ -523,13 +524,6 @@ static SciKernelMapEntry s_kernelMap[] = {
|
|||
// TODO: Implement once the original save/load menus are implemented.
|
||||
{ MAP_DUMMY(MakeSaveFileName), SIG_EVERYWHERE, "(.*)", NULL, NULL },
|
||||
|
||||
// Used for edit boxes in save/load dialogs. It's a rewritten version of kEditControl,
|
||||
// but it handles events on its own, using an internal loop, instead of using SCI
|
||||
// scripts for event management like kEditControl does. Called by script 64914,
|
||||
// DEdit::hilite().
|
||||
// TODO: Implement once the original save/load menus are implemented.
|
||||
{ MAP_DUMMY(EditText), SIG_EVERYWHERE, "o", NULL, NULL },
|
||||
|
||||
// Unused / debug SCI2 unused functions, always mapped to kDummy
|
||||
|
||||
// AddMagnify/DeleteMagnify are both called by script 64979 (the Magnifier
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue