Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
a74c0530
Commit
a74c0530
authored
Feb 02, 2017
by
Alexander.Trofimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move check AltGr to editorscommon
check enter z,a,i,u with ctrl in Latvian keyboard
parent
3669611c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
23 deletions
+19
-23
cell/view/CellEditorView.js
cell/view/CellEditorView.js
+1
-1
cell/view/EventsController.js
cell/view/EventsController.js
+10
-8
common/Drawings/WorkEvents.js
common/Drawings/WorkEvents.js
+2
-14
common/editorscommon.js
common/editorscommon.js
+6
-0
No files found.
cell/view/CellEditorView.js
View file @
a74c0530
...
...
@@ -2162,7 +2162,7 @@
*/
CellEditor
.
prototype
.
_onWindowKeyDown
=
function
(
event
,
isInput
)
{
var
t
=
this
,
kind
=
undefined
,
hieroglyph
=
false
;
var
ctrlKey
=
event
.
metaKey
||
event
.
ctrlKey
;
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
)
;
if
(
!
t
.
isOpened
||
(
!
isInput
&&
!
t
.
enableKeyEvents
))
{
return
true
;
...
...
cell/view/EventsController.js
View file @
a74c0530
...
...
@@ -323,7 +323,7 @@
// Будем делать dblClick как в Excel
asc_CEventsController
.
prototype
.
doMouseDblClick
=
function
(
event
,
isHideCursor
)
{
var
t
=
this
;
var
ctrlKey
=
event
.
metaKey
||
event
.
ctrlKey
;
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
)
;
// Для формулы не нужно выходить из редактирования ячейки
if
(
t
.
settings
.
isViewerMode
||
t
.
isFormulaEditMode
||
t
.
isSelectionDialogMode
)
{
return
true
;}
...
...
@@ -528,7 +528,7 @@
*/
asc_CEventsController
.
prototype
.
_changeSelectionDone
=
function
(
event
)
{
var
coord
=
this
.
_getCoordinates
(
event
);
var
ctrlKey
=
event
.
metaKey
||
event
.
ctrlKey
;
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
)
;
if
(
false
===
ctrlKey
)
{
coord
.
x
=
-
1
;
coord
.
y
=
-
1
;
...
...
@@ -591,7 +591,8 @@
asc_CEventsController
.
prototype
.
_changeFillHandleDone
=
function
(
event
)
{
// Закончили автозаполнение, пересчитаем
var
coord
=
this
.
_getCoordinates
(
event
);
this
.
handlers
.
trigger
(
"
changeFillHandleDone
"
,
coord
.
x
,
coord
.
y
,
event
.
metaKey
||
event
.
ctrlKey
);
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
);
this
.
handlers
.
trigger
(
"
changeFillHandleDone
"
,
coord
.
x
,
coord
.
y
,
ctrlKey
);
};
/**
...
...
@@ -661,7 +662,8 @@
/** @param event {MouseEvent} */
asc_CEventsController
.
prototype
.
_moveRangeHandleDone
=
function
(
event
)
{
// Закончили перемещение диапазона, пересчитаем
this
.
handlers
.
trigger
(
"
moveRangeHandleDone
"
,
event
.
metaKey
||
event
.
ctrlKey
);
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
);
this
.
handlers
.
trigger
(
"
moveRangeHandleDone
"
,
ctrlKey
);
};
asc_CEventsController
.
prototype
.
_moveResizeRangeHandleDone
=
function
(
event
,
target
)
{
...
...
@@ -679,7 +681,7 @@
/** @param event {KeyboardEvent} */
asc_CEventsController
.
prototype
.
_onWindowKeyDown
=
function
(
event
)
{
var
t
=
this
,
dc
=
0
,
dr
=
0
,
isViewerMode
=
t
.
settings
.
isViewerMode
;
var
ctrlKey
=
event
.
metaKey
||
event
.
ctrlKey
;
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
)
;
var
shiftKey
=
event
.
shiftKey
;
var
result
=
true
;
...
...
@@ -1215,7 +1217,7 @@
}
var
t
=
this
;
var
ctrlKey
=
event
.
metaKey
||
event
.
ctrlKey
;
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
)
;
var
coord
=
t
.
_getCoordinates
(
event
);
event
.
isLocked
=
t
.
isMousePressed
=
true
;
...
...
@@ -1456,7 +1458,7 @@
/** @param event {MouseEvent} */
asc_CEventsController
.
prototype
.
_onMouseMove
=
function
(
event
)
{
var
t
=
this
;
var
ctrlKey
=
event
.
metaKey
||
event
.
ctrlKey
;
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
)
;
var
coord
=
t
.
_getCoordinates
(
event
);
t
.
hasCursor
=
true
;
...
...
@@ -1534,7 +1536,7 @@
/** @param event {MouseEvent} */
asc_CEventsController
.
prototype
.
_onMouseWheel
=
function
(
event
)
{
var
ctrlKey
=
event
.
metaKey
||
event
.
ctrlKey
;
var
ctrlKey
=
!
AscCommon
.
getAltGr
(
event
)
&&
(
event
.
metaKey
||
event
.
ctrlKey
)
;
if
(
this
.
isFillHandleMode
||
this
.
isMoveRangeMode
||
this
.
isMoveResizeRange
||
ctrlKey
)
{
return
true
;
}
...
...
common/Drawings/WorkEvents.js
View file @
a74c0530
...
...
@@ -178,20 +178,8 @@
function
check_KeyboardEvent
(
e
)
{
global_keyboardEvent
.
AltKey
=
e
.
altKey
;
if
(
e
.
metaKey
!==
undefined
)
global_keyboardEvent
.
CtrlKey
=
e
.
ctrlKey
||
e
.
metaKey
;
else
global_keyboardEvent
.
CtrlKey
=
e
.
ctrlKey
;
global_keyboardEvent
.
AltGr
=
(
global_keyboardEvent
.
CtrlKey
&&
global_keyboardEvent
.
AltKey
)
?
true
:
false
;
if
(
AscBrowser
.
isMacOs
)
{
global_keyboardEvent
.
AltGr
=
(
!
global_keyboardEvent
.
CtrlKey
&&
global_keyboardEvent
.
AltKey
)
?
true
:
false
;
}
if
(
global_keyboardEvent
.
AltGr
)
global_keyboardEvent
.
CtrlKey
=
false
;
global_keyboardEvent
.
AltGr
=
AscCommon
.
getAltGr
(
e
);
global_keyboardEvent
.
CtrlKey
=
!
global_keyboardEvent
.
AltGr
&&
(
e
.
metaKey
||
e
.
ctrlKey
);
global_keyboardEvent
.
ShiftKey
=
e
.
shiftKey
;
...
...
common/editorscommon.js
View file @
a74c0530
...
...
@@ -2780,6 +2780,11 @@ CUserCacheColor.prototype.init = function(nColor) {
loadScript
(
'
./../../../../sdkjs/
'
+
sdkName
+
'
/sdk-all.js
'
,
callback
);
}
}
function
getAltGr
(
e
)
{
var
ctrlKey
=
e
.
metaKey
||
e
.
ctrlKey
;
var
altKey
=
e
.
altKey
;
return
(
altKey
&&
(
AscBrowser
.
isMacOs
?
!
ctrlKey
:
ctrlKey
));
}
var
g_oIdCounter
=
new
CIdCounter
();
var
g_oTableId
=
new
CTableId
();
...
...
@@ -2830,6 +2835,7 @@ window["SetDoctRendererParams"] = function(_params)
window
[
"
AscCommon
"
].
CContentChangesElement
=
CContentChangesElement
;
window
[
"
AscCommon
"
].
loadSdk
=
loadSdk
;
window
[
"
AscCommon
"
].
getAltGr
=
getAltGr
;
window
[
"
AscCommon
"
].
g_oDocumentUrls
=
g_oDocumentUrls
;
window
[
"
AscCommon
"
].
FormulaTablePartInfo
=
FormulaTablePartInfo
;
...
...
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