Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
af285be4
Kaydet (Commit)
af285be4
authored
May 28, 2012
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
android: fix mouse click positioning, add more keymappings, fix focus.
üst
35382d56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
12 deletions
+44
-12
androidinst.cxx
vcl/android/androidinst.cxx
+44
-12
No files found.
vcl/android/androidinst.cxx
Dosyayı görüntüle @
af285be4
...
@@ -116,6 +116,9 @@ static sal_uInt16 KeyToCode(AInputEvent *event)
...
@@ -116,6 +116,9 @@ static sal_uInt16 KeyToCode(AInputEvent *event)
MAP
(
DEL
,
DELETE
);
MAP
(
DEL
,
DELETE
);
MAP
(
PERIOD
,
POINT
);
MAP
(
PERIOD
,
POINT
);
MAP
(
DPAD_UP
,
UP
);
MAP
(
DPAD_DOWN
,
DOWN
);
MAP
(
DPAD_LEFT
,
LEFT
);
MAP
(
DPAD_RIGHT
,
RIGHT
);
case
AKEYCODE_BACK
:
// escape ?
case
AKEYCODE_BACK
:
// escape ?
case
AKEYCODE_UNKNOWN
:
case
AKEYCODE_UNKNOWN
:
case
AKEYCODE_SOFT_LEFT
:
case
AKEYCODE_SOFT_LEFT
:
...
@@ -124,13 +127,9 @@ static sal_uInt16 KeyToCode(AInputEvent *event)
...
@@ -124,13 +127,9 @@ static sal_uInt16 KeyToCode(AInputEvent *event)
case
AKEYCODE_ENDCALL
:
case
AKEYCODE_ENDCALL
:
case
AKEYCODE_STAR
:
case
AKEYCODE_STAR
:
case
AKEYCODE_POUND
:
case
AKEYCODE_POUND
:
case
AKEYCODE_DPAD_UP
:
case
AKEYCODE_DPAD_DOWN
:
case
AKEYCODE_DPAD_LEFT
:
case
AKEYCODE_DPAD_RIGHT
:
case
AKEYCODE_DPAD_CENTER
:
case
AKEYCODE_VOLUME_UP
:
case
AKEYCODE_VOLUME_UP
:
case
AKEYCODE_VOLUME_DOWN
:
case
AKEYCODE_VOLUME_DOWN
:
case
AKEYCODE_DPAD_CENTER
:
case
AKEYCODE_POWER
:
case
AKEYCODE_POWER
:
case
AKEYCODE_CAMERA
:
case
AKEYCODE_CAMERA
:
case
AKEYCODE_CLEAR
:
case
AKEYCODE_CLEAR
:
...
@@ -435,6 +434,29 @@ void AndroidSalInstance::onAppCmd (struct android_app* app, int32_t cmd)
...
@@ -435,6 +434,29 @@ void AndroidSalInstance::onAppCmd (struct android_app* app, int32_t cmd)
}
}
}
}
/*
* Try too hard to get a frame, in the absence of anything better to do
*/
SalFrame
*
AndroidSalInstance
::
getFocusFrame
()
const
{
SalFrame
*
pFocus
=
SvpSalFrame
::
GetFocusFrame
();
if
(
!
pFocus
)
{
fprintf
(
stderr
,
"no focus frame, re-focusing first visible frame
\n
"
);
const
std
::
list
<
SalFrame
*
>&
rFrames
(
getFrames
()
);
for
(
std
::
list
<
SalFrame
*
>::
const_iterator
it
=
rFrames
.
begin
();
it
!=
rFrames
.
end
();
++
it
)
{
SvpSalFrame
*
pFrame
=
const_cast
<
SvpSalFrame
*>
(
static_cast
<
const
SvpSalFrame
*>
(
*
it
));
if
(
pFrame
->
IsVisible
()
)
{
pFrame
->
GetFocus
();
pFocus
=
pFrame
;
break
;
}
}
}
return
pFocus
;
}
int32_t
AndroidSalInstance
::
onInputEvent
(
struct
android_app
*
app
,
AInputEvent
*
event
)
int32_t
AndroidSalInstance
::
onInputEvent
(
struct
android_app
*
app
,
AInputEvent
*
event
)
{
{
bool
bHandled
=
false
;
bool
bHandled
=
false
;
...
@@ -449,11 +471,13 @@ int32_t AndroidSalInstance::onInputEvent (struct android_app* app, AInputEvent*
...
@@ -449,11 +471,13 @@ int32_t AndroidSalInstance::onInputEvent (struct android_app* app, AInputEvent*
case
AINPUT_EVENT_TYPE_KEY
:
case
AINPUT_EVENT_TYPE_KEY
:
{
{
int32_t
nAction
=
AKeyEvent_getAction
(
event
);
int32_t
nAction
=
AKeyEvent_getAction
(
event
);
fprintf
(
stderr
,
"key event keycode %d '%s' %s
\n
"
,
fprintf
(
stderr
,
"key event keycode %d '%s' %s
flags (0x%x) 0x%x
\n
"
,
AKeyEvent_getKeyCode
(
event
),
AKeyEvent_getKeyCode
(
event
),
nAction
==
AKEY_EVENT_ACTION_DOWN
?
"down"
:
nAction
==
AKEY_EVENT_ACTION_DOWN
?
"down"
:
nAction
==
AKEY_EVENT_ACTION_UP
?
"up"
:
"multiple"
,
nAction
==
AKEY_EVENT_ACTION_UP
?
"up"
:
"multiple"
,
KeyMetaStateToString
(
AKeyEvent_getMetaState
(
event
)).
getStr
());
KeyMetaStateToString
(
AKeyEvent_getMetaState
(
event
)).
getStr
(),
AKeyEvent_getMetaState
(
event
),
AKeyEvent_getFlags
(
event
));
// FIXME: the whole SALEVENT_KEYMODCHANGE stuff is going to be interesting
// FIXME: the whole SALEVENT_KEYMODCHANGE stuff is going to be interesting
// can we really emit that ? no input method madness required though.
// can we really emit that ? no input method madness required though.
...
@@ -483,7 +507,7 @@ int32_t AndroidSalInstance::onInputEvent (struct android_app* app, AInputEvent*
...
@@ -483,7 +507,7 @@ int32_t AndroidSalInstance::onInputEvent (struct android_app* app, AInputEvent*
aEvent
.
mnCode
=
nMetaState
|
nCode
;
aEvent
.
mnCode
=
nMetaState
|
nCode
;
aEvent
.
mnRepeat
=
AKeyEvent_getRepeatCount
(
event
);
aEvent
.
mnRepeat
=
AKeyEvent_getRepeatCount
(
event
);
SalFrame
*
pFocus
=
SvpSalFrame
::
G
etFocusFrame
();
SalFrame
*
pFocus
=
g
etFocusFrame
();
if
(
pFocus
)
if
(
pFocus
)
bHandled
=
pFocus
->
CallCallback
(
nEvent
,
&
aEvent
);
bHandled
=
pFocus
->
CallCallback
(
nEvent
,
&
aEvent
);
else
else
...
@@ -514,13 +538,21 @@ int32_t AndroidSalInstance::onInputEvent (struct android_app* app, AInputEvent*
...
@@ -514,13 +538,21 @@ int32_t AndroidSalInstance::onInputEvent (struct android_app* app, AInputEvent*
// FIXME: all this filing the nEvent and aMouseEvent has to be cleaned up
// FIXME: all this filing the nEvent and aMouseEvent has to be cleaned up
nEvent
=
AMotionEvent_getAction
(
event
)
?
SALEVENT_MOUSEBUTTONUP
:
SALEVENT_MOUSEBUTTONDOWN
;
nEvent
=
AMotionEvent_getAction
(
event
)
?
SALEVENT_MOUSEBUTTONUP
:
SALEVENT_MOUSEBUTTONDOWN
;
aMouseEvent
.
mnX
=
AMotionEvent_getXOffset
(
event
);
if
(
nPoints
>
0
)
aMouseEvent
.
mnY
=
AMotionEvent_getYOffset
(
event
);
{
aMouseEvent
.
mnTime
=
0
;
// FIXME
aMouseEvent
.
mnX
=
AMotionEvent_getX
(
event
,
0
);
aMouseEvent
.
mnY
=
AMotionEvent_getY
(
event
,
0
);
}
else
{
aMouseEvent
.
mnX
=
AMotionEvent_getXOffset
(
event
);
aMouseEvent
.
mnY
=
AMotionEvent_getYOffset
(
event
);
}
int64_t
nNsTime
=
AMotionEvent_getEventTime
(
event
);
aMouseEvent
.
mnTime
=
nNsTime
/
(
1000
*
1000
);
aMouseEvent
.
mnCode
=
0
;
// FIXME
aMouseEvent
.
mnCode
=
0
;
// FIXME
aMouseEvent
.
mnButton
=
MOUSE_LEFT
;
// FIXME
aMouseEvent
.
mnButton
=
MOUSE_LEFT
;
// FIXME
SalFrame
*
pFocus
=
SvpSalFrame
::
G
etFocusFrame
();
SalFrame
*
pFocus
=
g
etFocusFrame
();
if
(
pFocus
)
if
(
pFocus
)
bHandled
=
pFocus
->
CallCallback
(
nEvent
,
&
aMouseEvent
);
bHandled
=
pFocus
->
CallCallback
(
nEvent
,
&
aMouseEvent
);
else
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