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
46f2b538
Kaydet (Commit)
46f2b538
authored
Eki 29, 2013
tarafından
Ptyl Dragon
Kaydeden (comit)
Jan Holesovsky
Kas 15, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
changed to CGSize
Change-Id: Ic84fcadf4332210693586825cdd8e32ef0f2a727
üst
53001c77
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
13 deletions
+12
-13
touch.h
include/touch/touch.h
+1
-1
viewsh.cxx
sw/source/core/view/viewsh.cxx
+0
-12
iosinst.cxx
vcl/ios/iosinst.cxx
+11
-0
No files found.
include/touch/touch.h
Dosyayı görüntüle @
46f2b538
...
...
@@ -132,7 +132,7 @@ context, contextHeight, contextWidth specify where to draw.
*/
void
touch_lo_draw_tile
(
void
*
context
,
int
contextWidth
,
int
contextHeight
,
int
tilePosX
,
int
tilePosY
,
int
tileWidth
,
int
tileHeight
);
void
touch_lo_copy_buffer
(
const
void
*
source
,
size_t
sourceWidth
,
size_t
sourceHeight
,
size_t
sourceBytesPerRow
,
void
*
target
,
size_t
targetWidth
,
size_t
targetHeight
);
Size
touch_lo_get_content_size
();
CG
Size
touch_lo_get_content_size
();
void
touch_lo_mouse_drag
(
int
x
,
int
y
,
MLOMouseButtonState
state
);
// Move the start of the selection to (x,y)
...
...
sw/source/core/view/viewsh.cxx
Dosyayı görüntüle @
46f2b538
...
...
@@ -1770,7 +1770,6 @@ void SwViewShell::PaintTile(OutputDevice *pOut, const Rectangle &rRect)
}
#if !HAVE_FEATURE_DESKTOP
extern
"C"
void
touch_lo_draw_tile
(
void
*
context
,
int
contextWidth
,
int
contextHeight
,
int
tilePosX
,
int
tilePosY
,
int
tileWidth
,
int
tileHeight
)
{
...
...
@@ -1812,17 +1811,6 @@ void touch_lo_draw_tile(void * context, int contextWidth, int contextHeight, int
contextHeight
);
}
}
extern
"C"
Size
touch_lo_get_content_size
()
{
SwWrtShell
*
pViewShell
=
GetActiveWrtShell
();
Size
contentSize
(
0
,
0
);
if
(
pViewShell
)
{
}
return
contentSize
;
}
#endif
extern
"C"
void
touch_ui_selection_none
()
{}
...
...
vcl/ios/iosinst.cxx
Dosyayı görüntüle @
46f2b538
...
...
@@ -414,6 +414,17 @@ touch_lo_copy_buffer(const void * source, size_t sourceWidth, size_t sourceHeigh
CGImageRelease
(
sourceImage
);
}
extern
"C"
CGSize
touch_lo_get_content_size
()
{
CGSize
contentSize
=
CGSizeMake
(
0
,
0
);
SalFrame
*
pFocus
=
IosSalInstance
::
getInstance
()
->
getFocusFrame
();
if
(
pFocus
)
{
}
return
contentSize
;
}
extern
"C"
void
touch_lo_render_windows
(
void
*
context
,
int
minX
,
int
minY
,
int
width
,
int
height
)
{
...
...
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