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
2c12d570
Kaydet (Commit)
2c12d570
authored
Agu 22, 2011
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix warning errors
üst
496ccc46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
window.cxx
avmedia/source/quicktime/window.cxx
+5
-5
window.hxx
avmedia/source/quicktime/window.hxx
+5
-5
No files found.
avmedia/source/quicktime/window.cxx
Dosyayı görüntüle @
2c12d570
...
...
@@ -106,7 +106,7 @@ Window::~Window()
}
}
bool
Window
::
create
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
aArguments
)
bool
Window
::
create
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
)
{
return
true
;
}
...
...
@@ -122,7 +122,7 @@ void SAL_CALL Window::update( )
// ------------------------------------------------------------------------------
sal_Bool
SAL_CALL
Window
::
setZoomLevel
(
media
::
ZoomLevel
eZoomLevel
)
sal_Bool
SAL_CALL
Window
::
setZoomLevel
(
media
::
ZoomLevel
)
throw
(
uno
::
RuntimeException
)
{
return
false
;
...
...
@@ -147,7 +147,7 @@ void SAL_CALL Window::setPointerType( sal_Int32 nPointerType )
// XWindow
// ------------------------------------------------------------------------------
void
SAL_CALL
Window
::
setPosSize
(
sal_Int32
X
,
sal_Int32
Y
,
sal_Int32
Width
,
sal_Int32
Height
,
sal_Int16
Flags
)
void
SAL_CALL
Window
::
setPosSize
(
sal_Int32
,
sal_Int32
,
sal_Int32
Width
,
sal_Int32
Height
,
sal_Int16
Flags
)
throw
(
uno
::
RuntimeException
)
{
if
(
mpParentView
&&
mpMovieView
)
...
...
@@ -177,7 +177,7 @@ awt::Rectangle SAL_CALL Window::getPosSize()
// ------------------------------------------------------------------------------
void
SAL_CALL
Window
::
setVisible
(
sal_Bool
bVisible
)
void
SAL_CALL
Window
::
setVisible
(
sal_Bool
)
throw
(
uno
::
RuntimeException
)
{
OSL_TRACE
(
"Window::setVisible"
);
...
...
@@ -186,7 +186,7 @@ void SAL_CALL Window::setVisible( sal_Bool bVisible )
// ------------------------------------------------------------------------------
void
SAL_CALL
Window
::
setEnable
(
sal_Bool
bEnable
)
void
SAL_CALL
Window
::
setEnable
(
sal_Bool
)
throw
(
uno
::
RuntimeException
)
{
;
...
...
avmedia/source/quicktime/window.hxx
Dosyayı görüntüle @
2c12d570
...
...
@@ -53,21 +53,21 @@ public:
);
~
Window
();
bool
create
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
aArguments
);
bool
create
(
const
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Any
>&
);
void
processGraphEvent
();
void
updatePointer
();
// XPlayerWindow
virtual
void
SAL_CALL
update
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
setZoomLevel
(
::
com
::
sun
::
star
::
media
::
ZoomLevel
ZoomLevel
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Bool
SAL_CALL
setZoomLevel
(
::
com
::
sun
::
star
::
media
::
ZoomLevel
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
media
::
ZoomLevel
SAL_CALL
getZoomLevel
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setPointerType
(
sal_Int32
nPointerType
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// XWindow
virtual
void
SAL_CALL
setPosSize
(
sal_Int32
X
,
sal_Int32
Y
,
sal_Int32
Width
,
sal_Int32
Height
,
sal_Int16
Flags
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setPosSize
(
sal_Int32
,
sal_Int32
,
sal_Int32
Width
,
sal_Int32
Height
,
sal_Int16
Flags
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
awt
::
Rectangle
SAL_CALL
getPosSize
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setVisible
(
sal_Bool
Visible
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setEnable
(
sal_Bool
Enable
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setVisible
(
sal_Bool
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setEnable
(
sal_Bool
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setFocus
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
addWindowListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XWindowListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
removeWindowListener
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XWindowListener
>&
xListener
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
...
...
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