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
2fc8e17a
Kaydet (Commit)
2fc8e17a
authored
Nis 28, 2014
tarafından
Chris Sherlock
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
VCL: Rename ApplyMask to DrawDeviceMask in OutputDevice
Change-Id: I3392294f8144a9f3124ada972934bb0452c6e13b
üst
99c9e0f8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
outdev.hxx
include/vcl/outdev.hxx
+1
-1
print.hxx
include/vcl/print.hxx
+1
-1
print.cxx
vcl/source/gdi/print.cxx
+1
-1
mask.cxx
vcl/source/outdev/mask.cxx
+2
-2
No files found.
include/vcl/outdev.hxx
Dosyayı görüntüle @
2fc8e17a
...
@@ -1472,7 +1472,7 @@ public:
...
@@ -1472,7 +1472,7 @@ public:
protected
:
protected
:
virtual
void
Apply
Mask
(
const
Bitmap
&
rMask
,
const
Color
&
rMaskColor
,
virtual
void
DrawDevice
Mask
(
const
Bitmap
&
rMask
,
const
Color
&
rMaskColor
,
const
Point
&
rDestPt
,
const
Size
&
rDestSize
,
const
Point
&
rDestPt
,
const
Size
&
rDestSize
,
const
Point
&
rSrcPtPixel
,
const
Size
&
rSrcSizePixel
);
const
Point
&
rSrcPtPixel
,
const
Size
&
rSrcSizePixel
);
///@}
///@}
...
...
include/vcl/print.hxx
Dosyayı görüntüle @
2fc8e17a
...
@@ -270,7 +270,7 @@ protected:
...
@@ -270,7 +270,7 @@ protected:
void
SetSelfAsQueuePrinter
(
bool
bQueuePrinter
)
{
mbIsQueuePrinter
=
bQueuePrinter
;
}
void
SetSelfAsQueuePrinter
(
bool
bQueuePrinter
)
{
mbIsQueuePrinter
=
bQueuePrinter
;
}
bool
IsQueuePrinter
()
const
{
return
mbIsQueuePrinter
;
}
bool
IsQueuePrinter
()
const
{
return
mbIsQueuePrinter
;
}
virtual
void
Apply
Mask
(
const
Bitmap
&
rMask
,
const
Color
&
rMaskColor
,
virtual
void
DrawDevice
Mask
(
const
Bitmap
&
rMask
,
const
Color
&
rMaskColor
,
const
Point
&
rDestPt
,
const
Size
&
rDestSize
,
const
Point
&
rDestPt
,
const
Size
&
rDestSize
,
const
Point
&
rSrcPtPixel
,
const
Size
&
rSrcSizePixel
)
SAL_OVERRIDE
;
const
Point
&
rSrcPtPixel
,
const
Size
&
rSrcSizePixel
)
SAL_OVERRIDE
;
...
...
vcl/source/gdi/print.cxx
Dosyayı görüntüle @
2fc8e17a
...
@@ -801,7 +801,7 @@ void Printer::ImplInitDisplay( const Window* pWindow )
...
@@ -801,7 +801,7 @@ void Printer::ImplInitDisplay( const Window* pWindow )
mnDPIY
=
mpDisplayDev
->
mnDPIY
;
mnDPIY
=
mpDisplayDev
->
mnDPIY
;
}
}
void
Printer
::
Apply
Mask
(
const
Bitmap
&
rMask
,
const
Color
&
rMaskColor
,
void
Printer
::
DrawDevice
Mask
(
const
Bitmap
&
rMask
,
const
Color
&
rMaskColor
,
const
Point
&
rDestPt
,
const
Size
&
rDestSize
,
const
Point
&
rDestPt
,
const
Size
&
rDestSize
,
const
Point
&
rSrcPtPixel
,
const
Size
&
rSrcSizePixel
)
const
Point
&
rSrcPtPixel
,
const
Size
&
rSrcSizePixel
)
{
{
...
...
vcl/source/outdev/mask.cxx
Dosyayı görüntüle @
2fc8e17a
...
@@ -91,11 +91,11 @@ void OutputDevice::DrawMask( const Point& rDestPt, const Size& rDestSize,
...
@@ -91,11 +91,11 @@ void OutputDevice::DrawMask( const Point& rDestPt, const Size& rDestSize,
if
(
mbOutputClipped
)
if
(
mbOutputClipped
)
return
;
return
;
Apply
Mask
(
rBitmap
,
rMaskColor
,
rDestPt
,
rDestSize
,
rSrcPtPixel
,
rSrcSizePixel
);
DrawDevice
Mask
(
rBitmap
,
rMaskColor
,
rDestPt
,
rDestSize
,
rSrcPtPixel
,
rSrcSizePixel
);
}
}
void
OutputDevice
::
Apply
Mask
(
const
Bitmap
&
rMask
,
const
Color
&
rMaskColor
,
void
OutputDevice
::
DrawDevice
Mask
(
const
Bitmap
&
rMask
,
const
Color
&
rMaskColor
,
const
Point
&
rDestPt
,
const
Size
&
rDestSize
,
const
Point
&
rDestPt
,
const
Size
&
rDestSize
,
const
Point
&
rSrcPtPixel
,
const
Size
&
rSrcSizePixel
)
const
Point
&
rSrcPtPixel
,
const
Size
&
rSrcSizePixel
)
{
{
...
...
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