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
c989f5e0
Kaydet (Commit)
c989f5e0
authored
Kas 07, 2014
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
These constants are now in the scoped enum MouseEventModifiers
Change-Id: I73e1498198cbb55ccd969713a38b6cd678c94643
üst
46a47217
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
iosinst.cxx
vcl/ios/iosinst.cxx
+4
-4
No files found.
vcl/ios/iosinst.cxx
Dosyayı görüntüle @
c989f5e0
...
...
@@ -321,15 +321,15 @@ void touch_lo_mouse(int x, int y, MLOMouseButtonState state, MLOModifierMask mod
switch
(
state
)
{
case
DOWN
:
aEvent
=
MouseEvent
(
Point
(
x
,
y
),
1
,
M
OUSE_
SIMPLECLICK
,
MOUSE_LEFT
,
nModifiers
);
aEvent
=
MouseEvent
(
Point
(
x
,
y
),
1
,
M
ouseEventModifiers
::
SIMPLECLICK
,
MOUSE_LEFT
,
nModifiers
);
nEvent
=
VCLEVENT_WINDOW_MOUSEBUTTONDOWN
;
break
;
case
MOVE
:
aEvent
=
MouseEvent
(
Point
(
x
,
y
),
1
,
M
OUSE_
SIMPLEMOVE
,
MOUSE_LEFT
,
nModifiers
);
aEvent
=
MouseEvent
(
Point
(
x
,
y
),
1
,
M
ouseEventModifiers
::
SIMPLEMOVE
,
MOUSE_LEFT
,
nModifiers
);
nEvent
=
VCLEVENT_WINDOW_MOUSEMOVE
;
break
;
case
UP
:
aEvent
=
MouseEvent
(
Point
(
x
,
y
),
1
,
M
OUSE_
SIMPLECLICK
,
MOUSE_LEFT
,
nModifiers
);
aEvent
=
MouseEvent
(
Point
(
x
,
y
),
1
,
M
ouseEventModifiers
::
SIMPLECLICK
,
MOUSE_LEFT
,
nModifiers
);
nEvent
=
VCLEVENT_WINDOW_MOUSEBUTTONUP
;
break
;
default
:
...
...
@@ -388,7 +388,7 @@ void touch_lo_keyboard_did_hide()
if
(
pFocus
)
{
MouseEvent
aEvent
;
aEvent
=
MouseEvent
(
Point
(
0
,
0
),
0
,
M
OUSE_
LEAVEWINDOW
,
MOUSE_LEFT
);
aEvent
=
MouseEvent
(
Point
(
0
,
0
),
0
,
M
ouseEventModifiers
::
LEAVEWINDOW
,
MOUSE_LEFT
);
Application
::
PostMouseEvent
(
VCLEVENT_WINDOW_MOUSEMOVE
,
pFocus
->
GetWindow
(),
&
aEvent
);
}
}
...
...
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