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
7ebd40d2
Kaydet (Commit)
7ebd40d2
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 slideshow redux
Change-Id: I91d21fa4ebec26eaa59aff93eb730c48b0afad45
üst
cd648c5a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
20 deletions
+20
-20
OGLTrans_TransitionImpl.hxx
...ow/source/engine/OGLTrans/mac/OGLTrans_TransitionImpl.hxx
+15
-15
OGLTrans_TransitionerImpl.mm
...w/source/engine/OGLTrans/mac/OGLTrans_TransitionerImpl.mm
+5
-5
No files found.
slideshow/source/engine/OGLTrans/mac/OGLTrans_TransitionImpl.hxx
Dosyayı görüntüle @
7ebd40d2
...
...
@@ -198,9 +198,9 @@ class Iris : public SceneObject
public
:
Iris
();
virtual
void
prepare
();
virtual
void
display
(
double
nTime
,
double
SlideWidth
,
double
SlideHeight
,
double
DispWidth
,
double
DispHeight
);
virtual
void
finish
();
virtual
void
prepare
()
SAL_OVERRIDE
;
virtual
void
display
(
double
nTime
,
double
SlideWidth
,
double
SlideHeight
,
double
DispWidth
,
double
DispHeight
)
SAL_OVERRIDE
;
virtual
void
finish
()
SAL_OVERRIDE
;
private
:
...
...
@@ -324,8 +324,8 @@ public:
class
SRotate
:
public
Operation
{
public
:
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
);
virtual
SRotate
*
clone
();
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
)
SAL_OVERRIDE
;
virtual
SRotate
*
clone
()
SAL_OVERRIDE
;
/** Constructor
...
...
@@ -369,8 +369,8 @@ private:
class
SScale
:
public
Operation
{
public
:
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
);
SScale
*
clone
();
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
)
SAL_OVERRIDE
;
SScale
*
clone
()
SAL_OVERRIDE
;
/** Constructor
...
...
@@ -402,8 +402,8 @@ private:
class
STranslate
:
public
Operation
{
public
:
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
);
STranslate
*
clone
();
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
)
SAL_OVERRIDE
;
STranslate
*
clone
()
SAL_OVERRIDE
;
/** Constructor
...
...
@@ -433,8 +433,8 @@ private:
class
SEllipseTranslate
:
public
Operation
{
public
:
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
);
SEllipseTranslate
*
clone
();
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
)
SAL_OVERRIDE
;
SEllipseTranslate
*
clone
()
SAL_OVERRIDE
;
/** Constructor
...
...
@@ -469,8 +469,8 @@ private:
class
RotateAndScaleDepthByWidth
:
public
Operation
{
public
:
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
);
RotateAndScaleDepthByWidth
*
clone
();
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
)
SAL_OVERRIDE
;
RotateAndScaleDepthByWidth
*
clone
()
SAL_OVERRIDE
;
RotateAndScaleDepthByWidth
(
const
basegfx
::
B3DVector
&
Axis
,
const
basegfx
::
B3DVector
&
Origin
,
double
Angle
,
bool
bInter
,
double
T0
,
double
T1
);
~
RotateAndScaleDepthByWidth
(){}
...
...
@@ -485,8 +485,8 @@ private:
class
RotateAndScaleDepthByHeight
:
public
Operation
{
public
:
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
);
RotateAndScaleDepthByHeight
*
clone
();
void
interpolate
(
double
t
,
double
SlideWidthScale
,
double
SlideHeightScale
)
SAL_OVERRIDE
;
RotateAndScaleDepthByHeight
*
clone
()
SAL_OVERRIDE
;
RotateAndScaleDepthByHeight
(
const
basegfx
::
B3DVector
&
Axis
,
const
basegfx
::
B3DVector
&
Origin
,
double
Angle
,
bool
bInter
,
double
T0
,
double
T1
);
~
RotateAndScaleDepthByHeight
(){}
...
...
slideshow/source/engine/OGLTrans/mac/OGLTrans_TransitionerImpl.mm
Dosyayı görüntüle @
7ebd40d2
...
...
@@ -151,18 +151,18 @@ public:
// XTransition
virtual void SAL_CALL update( double nTime )
throw (uno::RuntimeException);
throw (uno::RuntimeException)
SAL_OVERRIDE
;
virtual void SAL_CALL viewChanged( const Reference< presentation::XSlideShowView >& rView,
const Reference< rendering::XBitmap >& rLeavingBitmap,
const Reference< rendering::XBitmap >& rEnteringBitmap )
throw (uno::RuntimeException);
throw (uno::RuntimeException)
SAL_OVERRIDE
;
protected:
void disposeContextAndWindow();
void disposeTextures();
// WeakComponentImplHelperBase
virtual void SAL_CALL disposing();
virtual void SAL_CALL disposing()
SAL_OVERRIDE
;
bool isDisposed() const
{
...
...
@@ -929,7 +929,7 @@ public:
{}
// XTransitionFactory
virtual ::sal_Bool SAL_CALL hasTransition( ::sal_Int16 transitionType, ::sal_Int16 transitionSubType ) throw (uno::RuntimeException)
virtual ::sal_Bool SAL_CALL hasTransition( ::sal_Int16 transitionType, ::sal_Int16 transitionSubType ) throw (uno::RuntimeException)
SAL_OVERRIDE
{
if( transitionType == animations::TransitionType::MISCSHAPEWIPE ) {
switch( transitionSubType )
...
...
@@ -971,7 +971,7 @@ public:
const uno::Reference< presentation::XSlideShowView >& view,
const uno::Reference< rendering::XBitmap >& leavingBitmap,
const uno::Reference< rendering::XBitmap >& enteringBitmap )
throw (uno::RuntimeException)
throw (uno::RuntimeException)
SAL_OVERRIDE
{
if( !hasTransition( transitionType, transitionSubType ) )
return uno::Reference< presentation::XTransition >();
...
...
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