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
637e8970
Kaydet (Commit)
637e8970
authored
Eki 24, 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
now showing blank tile
Change-Id: I76cbf205e19ffff83bea1ebae28f5172b2fbc250
üst
2ffb7509
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
MLOTestingTileRendererViewController.m
...lers/testing_tiles/MLOTestingTileRendererViewController.m
+1
-0
viewsh.cxx
sw/source/core/view/viewsh.cxx
+13
-1
No files found.
ios/shared/ios_sharedlo/objective_c/view_controllers/testing_tiles/MLOTestingTileRendererViewController.m
Dosyayı görüntüle @
637e8970
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
-
(
void
)
initScrollView
{
-
(
void
)
initScrollView
{
self
.
scrollView
=
[
UIScrollView
new
];
self
.
scrollView
=
[
UIScrollView
new
];
self
.
scrollView
.
backgroundColor
=
[
UIColor
grayColor
];
self
.
view
=
self
.
scrollView
;
self
.
view
=
self
.
scrollView
;
}
}
-
(
void
)
resize
{
-
(
void
)
resize
{
...
...
sw/source/core/view/viewsh.cxx
Dosyayı görüntüle @
637e8970
...
@@ -55,7 +55,9 @@
...
@@ -55,7 +55,9 @@
#include <ndole.hxx>
#include <ndole.hxx>
#include <ndindex.hxx>
#include <ndindex.hxx>
#include <accmap.hxx>
#include <accmap.hxx>
#include <vcl/bitmapex.hxx>
#include <svtools/colorcfg.hxx>
#include <svtools/colorcfg.hxx>
#include <vcl/bmpacc.hxx>
#include <svtools/accessibilityoptions.hxx>
#include <svtools/accessibilityoptions.hxx>
#include <accessibilityoptions.hxx>
#include <accessibilityoptions.hxx>
#include <statstr.hrc>
#include <statstr.hrc>
...
@@ -64,6 +66,7 @@
...
@@ -64,6 +66,7 @@
#include <sortedobjs.hxx>
#include <sortedobjs.hxx>
#include <anchoredobject.hxx>
#include <anchoredobject.hxx>
#include <wrtsh.hxx>
#include <wrtsh.hxx>
#include <vcl/alpha.hxx>
#include "../../ui/inc/view.hxx"
#include "../../ui/inc/view.hxx"
#include <PostItMgr.hxx>
#include <PostItMgr.hxx>
...
@@ -1788,7 +1791,16 @@ void touch_lo_draw_tile(void * context, int contextWidth, int contextHeight, int
...
@@ -1788,7 +1791,16 @@ void touch_lo_draw_tile(void * context, int contextWidth, int contextHeight, int
aDevice
.
SetOutputSizePixel
(
Size
(
contextWidth
,
contextHeight
));
aDevice
.
SetOutputSizePixel
(
Size
(
contextWidth
,
contextHeight
));
pViewShell
->
PaintTile
(
&
aDevice
,
Rectangle
(
tilePosX
,
tilePosY
,
tileWidth
,
tileHeight
));
pViewShell
->
PaintTile
(
&
aDevice
,
Rectangle
(
tilePosX
,
tilePosY
,
tileWidth
,
tileHeight
));
//TODO now get it to the 'context'
BitmapEx
aBitmapEx
(
aDevice
.
GetBitmapEx
(
Point
(
0
,
0
),
aDevice
.
GetOutputSizePixel
()));
Bitmap
aBitmap
=
aBitmapEx
.
GetBitmap
();
BitmapReadAccess
*
readAccess
=
aBitmap
.
AcquireReadAccess
();
touch_lo_copy_buffer
((
void
*
)
readAccess
->
GetBuffer
(),
tileWidth
,
tileHeight
,
readAccess
->
GetScanlineSize
(),
context
,
contextWidth
,
contextHeight
);
}
}
}
}
...
...
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