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
288a6d89
Kaydet (Commit)
288a6d89
authored
Mar 12, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Mark overriding GraphicDeviceBase class template member funs as SAL_OVERRIDE
Change-Id: Idfac26bb0f436799c3431062238e46b1a50d9f14
üst
268be3ac
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
24 deletions
+24
-24
graphicdevicebase.hxx
include/canvas/base/graphicdevicebase.hxx
+24
-24
No files found.
include/canvas/base/graphicdevicebase.hxx
Dosyayı görüntüle @
288a6d89
...
...
@@ -147,40 +147,40 @@ namespace canvas
}
// XGraphicDevice
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBufferController
>
SAL_CALL
getBufferController
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBufferController
>
SAL_CALL
getBufferController
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
return
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBufferController
>
();
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XColorSpace
>
SAL_CALL
getDeviceColorSpace
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XColorSpace
>
SAL_CALL
getDeviceColorSpace
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
return
maDeviceHelper
.
getColorSpace
();
}
virtual
::
com
::
sun
::
star
::
geometry
::
RealSize2D
SAL_CALL
getPhysicalResolution
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
geometry
::
RealSize2D
SAL_CALL
getPhysicalResolution
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
return
maDeviceHelper
.
getPhysicalResolution
();
}
virtual
::
com
::
sun
::
star
::
geometry
::
RealSize2D
SAL_CALL
getPhysicalSize
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
geometry
::
RealSize2D
SAL_CALL
getPhysicalSize
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
return
maDeviceHelper
.
getPhysicalSize
();
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XLinePolyPolygon2D
>
SAL_CALL
createCompatibleLinePolyPolygon
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
geometry
::
RealPoint2D
>
>&
points
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XLinePolyPolygon2D
>
SAL_CALL
createCompatibleLinePolyPolygon
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
geometry
::
RealPoint2D
>
>&
points
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
return
maDeviceHelper
.
createCompatibleLinePolyPolygon
(
this
,
points
);
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBezierPolyPolygon2D
>
SAL_CALL
createCompatibleBezierPolyPolygon
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
geometry
::
RealBezierSegment2D
>
>&
points
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBezierPolyPolygon2D
>
SAL_CALL
createCompatibleBezierPolyPolygon
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
geometry
::
RealBezierSegment2D
>
>&
points
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
...
...
@@ -188,7 +188,7 @@ namespace canvas
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBitmap
>
SAL_CALL
createCompatibleBitmap
(
const
::
com
::
sun
::
star
::
geometry
::
IntegerSize2D
&
size
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
tools
::
verifyBitmapSize
(
size
,
BOOST_CURRENT_FUNCTION
,
...
...
@@ -200,7 +200,7 @@ namespace canvas
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XVolatileBitmap
>
SAL_CALL
createVolatileBitmap
(
const
::
com
::
sun
::
star
::
geometry
::
IntegerSize2D
&
size
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
tools
::
verifyBitmapSize
(
size
,
BOOST_CURRENT_FUNCTION
,
...
...
@@ -212,7 +212,7 @@ namespace canvas
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XBitmap
>
SAL_CALL
createCompatibleAlphaBitmap
(
const
::
com
::
sun
::
star
::
geometry
::
IntegerSize2D
&
size
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
tools
::
verifyBitmapSize
(
size
,
BOOST_CURRENT_FUNCTION
,
...
...
@@ -224,7 +224,7 @@ namespace canvas
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XVolatileBitmap
>
SAL_CALL
createVolatileAlphaBitmap
(
const
::
com
::
sun
::
star
::
geometry
::
IntegerSize2D
&
size
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
tools
::
verifyBitmapSize
(
size
,
BOOST_CURRENT_FUNCTION
,
...
...
@@ -235,19 +235,19 @@ namespace canvas
return
maDeviceHelper
.
createVolatileAlphaBitmap
(
this
,
size
);
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>
SAL_CALL
getParametricPolyPolygonFactory
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>
SAL_CALL
getParametricPolyPolygonFactory
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
return
this
;
}
virtual
::
sal_Bool
SAL_CALL
hasFullScreenMode
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
sal_Bool
SAL_CALL
hasFullScreenMode
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
return
maDeviceHelper
.
hasFullScreenMode
();
}
virtual
::
sal_Bool
SAL_CALL
enterFullScreenMode
(
::
sal_Bool
bEnter
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
sal_Bool
SAL_CALL
enterFullScreenMode
(
::
sal_Bool
bEnter
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
...
...
@@ -255,7 +255,7 @@ namespace canvas
}
// XMultiServiceFactory
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>
SAL_CALL
createInstance
(
const
OUString
&
aServiceSpecifier
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>
SAL_CALL
createInstance
(
const
OUString
&
aServiceSpecifier
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
return
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XParametricPolyPolygon2D
>
(
ParametricPolyPolygon
::
create
(
this
,
...
...
@@ -263,7 +263,7 @@ namespace canvas
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>
()));
}
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>
SAL_CALL
createInstanceWithArguments
(
const
OUString
&
aServiceSpecifier
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
Arguments
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>
SAL_CALL
createInstanceWithArguments
(
const
OUString
&
aServiceSpecifier
,
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
Arguments
)
throw
(
::
com
::
sun
::
star
::
uno
::
Exception
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
return
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
rendering
::
XParametricPolyPolygon2D
>
(
ParametricPolyPolygon
::
create
(
this
,
...
...
@@ -271,14 +271,14 @@ namespace canvas
Arguments
));
}
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getAvailableServiceNames
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getAvailableServiceNames
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
return
ParametricPolyPolygon
::
getAvailableServiceNames
();
}
// XUpdatable
virtual
void
SAL_CALL
update
()
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
void
SAL_CALL
update
()
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
...
...
@@ -288,7 +288,7 @@ namespace canvas
// XPropertySet
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySetInfo
>
SAL_CALL
getPropertySetInfo
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySetInfo
>
SAL_CALL
getPropertySetInfo
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
return
maPropHelper
.
getPropertySetInfo
();
...
...
@@ -299,7 +299,7 @@ namespace canvas
::
com
::
sun
::
star
::
beans
::
PropertyVetoException
,
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
maPropHelper
.
setPropertyValue
(
aPropertyName
,
aValue
);
...
...
@@ -307,7 +307,7 @@ namespace canvas
virtual
::
com
::
sun
::
star
::
uno
::
Any
SAL_CALL
getPropertyValue
(
const
OUString
&
aPropertyName
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
return
maPropHelper
.
getPropertyValue
(
aPropertyName
);
...
...
@@ -316,7 +316,7 @@ namespace canvas
virtual
void
SAL_CALL
addPropertyChangeListener
(
const
OUString
&
aPropertyName
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertyChangeListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
maPropHelper
.
addPropertyChangeListener
(
aPropertyName
,
...
...
@@ -326,7 +326,7 @@ namespace canvas
virtual
void
SAL_CALL
removePropertyChangeListener
(
const
OUString
&
aPropertyName
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertyChangeListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
maPropHelper
.
removePropertyChangeListener
(
aPropertyName
,
...
...
@@ -336,7 +336,7 @@ namespace canvas
virtual
void
SAL_CALL
addVetoableChangeListener
(
const
OUString
&
aPropertyName
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XVetoableChangeListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
maPropHelper
.
addVetoableChangeListener
(
aPropertyName
,
...
...
@@ -346,7 +346,7 @@ namespace canvas
virtual
void
SAL_CALL
removeVetoableChangeListener
(
const
OUString
&
aPropertyName
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XVetoableChangeListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
beans
::
UnknownPropertyException
,
::
com
::
sun
::
star
::
lang
::
WrappedTargetException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
SAL_OVERRIDE
{
MutexType
aGuard
(
BaseType
::
m_aMutex
);
maPropHelper
.
removeVetoableChangeListener
(
aPropertyName
,
...
...
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