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
8e4560e7
Kaydet (Commit)
8e4560e7
authored
Mar 27, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SAL_OVERRIDE, Mac OS X vcl redux
Change-Id: I25f2a79efff7b77651f7cd6c658269e9411c3bdd
üst
c62d31f7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
17 deletions
+17
-17
saltimer.h
vcl/inc/osx/saltimer.h
+2
-2
salbmp.h
vcl/inc/quartz/salbmp.h
+11
-11
salgdi.h
vcl/inc/quartz/salgdi.h
+0
-0
salvd.h
vcl/inc/quartz/salvd.h
+4
-4
No files found.
vcl/inc/osx/saltimer.h
Dosyayı görüntüle @
8e4560e7
...
...
@@ -33,8 +33,8 @@ class AquaSalTimer : public SalTimer
AquaSalTimer
();
virtual
~
AquaSalTimer
();
void
Start
(
sal_uLong
nMS
);
void
Stop
();
void
Start
(
sal_uLong
nMS
)
SAL_OVERRIDE
;
void
Stop
()
SAL_OVERRIDE
;
static
void
handleStartTimerEvent
(
NSEvent
*
pEvent
);
...
...
vcl/inc/quartz/salbmp.h
Dosyayı görüntüle @
8e4560e7
...
...
@@ -63,23 +63,23 @@ public:
public
:
// SalBitmap methods
bool
Create
(
const
Size
&
rSize
,
sal_uInt16
nBitCount
,
const
BitmapPalette
&
rPal
);
bool
Create
(
const
SalBitmap
&
rSalBmp
);
bool
Create
(
const
SalBitmap
&
rSalBmp
,
SalGraphics
*
pGraphics
);
bool
Create
(
const
SalBitmap
&
rSalBmp
,
sal_uInt16
nNewBitCount
);
bool
Create
(
const
Size
&
rSize
,
sal_uInt16
nBitCount
,
const
BitmapPalette
&
rPal
)
SAL_OVERRIDE
;
bool
Create
(
const
SalBitmap
&
rSalBmp
)
SAL_OVERRIDE
;
bool
Create
(
const
SalBitmap
&
rSalBmp
,
SalGraphics
*
pGraphics
)
SAL_OVERRIDE
;
bool
Create
(
const
SalBitmap
&
rSalBmp
,
sal_uInt16
nNewBitCount
)
SAL_OVERRIDE
;
virtual
bool
Create
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBitmapCanvas
>
xBitmapCanvas
,
Size
&
rSize
,
bool
bMask
=
false
);
bool
bMask
=
false
)
SAL_OVERRIDE
;
void
Destroy
();
void
Destroy
()
SAL_OVERRIDE
;
Size
GetSize
()
const
;
sal_uInt16
GetBitCount
()
const
;
Size
GetSize
()
const
SAL_OVERRIDE
;
sal_uInt16
GetBitCount
()
const
SAL_OVERRIDE
;
BitmapBuffer
*
AcquireBuffer
(
bool
bReadOnly
);
void
ReleaseBuffer
(
BitmapBuffer
*
pBuffer
,
bool
bReadOnly
);
BitmapBuffer
*
AcquireBuffer
(
bool
bReadOnly
)
SAL_OVERRIDE
;
void
ReleaseBuffer
(
BitmapBuffer
*
pBuffer
,
bool
bReadOnly
)
SAL_OVERRIDE
;
bool
GetSystemData
(
BitmapSystemData
&
rData
);
bool
GetSystemData
(
BitmapSystemData
&
rData
)
SAL_OVERRIDE
;
private
:
// quartz helper
...
...
vcl/inc/quartz/salgdi.h
Dosyayı görüntüle @
8e4560e7
This diff is collapsed.
Click to expand it.
vcl/inc/quartz/salvd.h
Dosyayı görüntüle @
8e4560e7
...
...
@@ -58,10 +58,10 @@ public:
AquaSalVirtualDevice
(
AquaSalGraphics
*
pGraphic
,
long
nDX
,
long
nDY
,
sal_uInt16
nBitCount
,
const
SystemGraphicsData
*
pData
);
virtual
~
AquaSalVirtualDevice
();
virtual
SalGraphics
*
AcquireGraphics
();
virtual
void
ReleaseGraphics
(
SalGraphics
*
pGraphics
);
virtual
bool
SetSize
(
long
nNewDX
,
long
nNewDY
);
virtual
void
GetSize
(
long
&
rWidth
,
long
&
rHeight
);
virtual
SalGraphics
*
AcquireGraphics
()
SAL_OVERRIDE
;
virtual
void
ReleaseGraphics
(
SalGraphics
*
pGraphics
)
SAL_OVERRIDE
;
virtual
bool
SetSize
(
long
nNewDX
,
long
nNewDY
)
SAL_OVERRIDE
;
virtual
void
GetSize
(
long
&
rWidth
,
long
&
rHeight
)
SAL_OVERRIDE
;
};
#endif // INCLUDED_VCL_INC_OSX_SALVD_H
...
...
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