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
70466a92
Kaydet (Commit)
70466a92
authored
Haz 27, 2013
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
get vlcwindow compiling.
Change-Id: I188a8ecf30e3816bd915ccdd452f6a93bd9d021d
üst
b6090460
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
124 additions
and
123 deletions
+124
-123
Library_avmediavlc.mk
avmedia/Library_avmediavlc.mk
+1
-0
vlccommon.hxx
avmedia/source/vlc/vlccommon.hxx
+1
-0
vlcwindow.cpp
avmedia/source/vlc/vlcwindow.cpp
+0
-123
vlcwindow.cxx
avmedia/source/vlc/vlcwindow.cxx
+122
-0
No files found.
avmedia/Library_avmediavlc.mk
Dosyayı görüntüle @
70466a92
...
...
@@ -42,6 +42,7 @@ $(eval $(call gb_Library_add_exception_objects,avmediavlc,\
avmedia/source/vlc/vlcmanager
\
avmedia/source/vlc/vlcplayer
\
avmedia/source/vlc/vlcuno
\
avmedia/source/vlc/vlcwindow
\
))
# vim: set noet sw=4 ts=4:
avmedia/source/vlc/vlccommon.hxx
Dosyayı görüntüle @
70466a92
...
...
@@ -40,6 +40,7 @@
#include <com/sun/star/awt/KeyModifier.hpp>
#include <com/sun/star/awt/MouseButton.hpp>
#include <com/sun/star/media/XManager.hpp>
#include <com/sun/star/media/XPlayerWindow.hpp>
#endif // _VLCCOMMOM_HXX
...
...
avmedia/source/vlc/vlcwindow.cpp
deleted
100644 → 0
Dosyayı görüntüle @
b6090460
#include "vlcwindow.hxx"
using
namespace
;
namespace
avmedia
{
namespace
vlc
{
void
SAL_CALL
VLCWindow
::
pdate
()
{
}
::
sal_Bool
SAL_CALL
VLCWindow
::
setZoomLevel
(
css
::
media
::
ZoomLevel
ZoomLevel
)
{
return
false
;
}
css
::
media
::
ZoomLevel
SAL_CALL
VLCWindow
::
getZoomLevel
()
{
return
css
::
media
::
ZoomLevel_NOT_AVAILABLE
;
}
void
SAL_CALL
VLCWindow
::
setPointerType
(
::
sal_Int32
SystemPointerType
)
{
}
::
rtl
::
OUString
SAL_CALL
VLCWindow
::
getImplementationName
()
{
return
::
rtl
::
OUString
();
}
::
sal_Bool
SAL_CALL
VLCWindow
::
supportsService
(
const
::
rtl
::
OUString
&
ServiceName
)
{
return
false
;
}
::
uno
::
Sequence
<
::
rtl
::
OUString
>
SAL_CALL
VLCWindow
::
getSupportedServiceNames
()
{
return
::
uno
::
Sequence
<
::
rtl
::
OUString
>
();
}
void
SAL_CALL
VLCWindow
::
dispose
()
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addEventListener
(
const
::
uno
::
Reference
<
::
lang
::
XEventListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeEventListener
(
const
::
uno
::
Reference
<
:::
lang
::
XEventListener
>&
aListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
setPosSize
(
sal_Int32
X
,
sal_Int32
Y
,
sal_Int32
Width
,
sal_Int32
Height
,
sal_Int16
Flags
)
throw
(
::
uno
::
RuntimeException
)
{
}
::
awt
::
Rectangle
SAL_CALL
VLCWindow
::
getPosSize
()
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
setVisible
(
sal_Bool
Visible
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
setEnable
(
sal_Bool
Enable
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
setFocus
()
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addWindowListener
(
const
::
uno
::
Reference
<
::
awt
::
XWindowListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeWindowListener
(
const
::
uno
::
Reference
<
::
awt
::
XWindowListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addFocusListener
(
const
::
uno
::
Reference
<
::
awt
::
XFocusListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeFocusListener
(
const
::
uno
::
Reference
<
::
awt
::
XFocusListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addKeyListener
(
const
::
uno
::
Reference
<
::
awt
::
XKeyListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeKeyListener
(
const
::
uno
::
Reference
<
::
awt
::
XKeyListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addMouseListener
(
const
::
uno
::
Reference
<
::
awt
::
XMouseListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeMouseListener
(
const
::
uno
::
Reference
<
::
awt
::
XMouseListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addMouseMotionListener
(
const
::
uno
::
Reference
<
::
awt
::
XMouseMotionListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeMouseMotionListener
(
const
::
uno
::
Reference
<
::
awt
::
XMouseMotionListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addPaintListener
(
const
::
uno
::
Reference
<
::
awt
::
XPaintListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removePaintListener
(
const
::
uno
::
Reference
<
::
awt
::
XPaintListener
>&
xListener
)
throw
(
::
uno
::
RuntimeException
)
{
}
}
}
\ No newline at end of file
avmedia/source/vlc/vlcwindow.cxx
0 → 100644
Dosyayı görüntüle @
70466a92
#include "vlcwindow.hxx"
using
namespace
::
com
::
sun
::
star
;
namespace
avmedia
{
namespace
vlc
{
void
SAL_CALL
VLCWindow
::
update
()
{
}
::
sal_Bool
SAL_CALL
VLCWindow
::
setZoomLevel
(
css
::
media
::
ZoomLevel
ZoomLevel
)
{
return
false
;
}
css
::
media
::
ZoomLevel
SAL_CALL
VLCWindow
::
getZoomLevel
()
{
return
css
::
media
::
ZoomLevel_NOT_AVAILABLE
;
}
void
SAL_CALL
VLCWindow
::
setPointerType
(
::
sal_Int32
SystemPointerType
)
{
}
::
rtl
::
OUString
SAL_CALL
VLCWindow
::
getImplementationName
()
{
return
::
rtl
::
OUString
();
}
::
sal_Bool
SAL_CALL
VLCWindow
::
supportsService
(
const
::
rtl
::
OUString
&
ServiceName
)
{
return
false
;
}
uno
::
Sequence
<
::
rtl
::
OUString
>
SAL_CALL
VLCWindow
::
getSupportedServiceNames
()
{
return
uno
::
Sequence
<
::
rtl
::
OUString
>
();
}
void
SAL_CALL
VLCWindow
::
dispose
()
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addEventListener
(
const
uno
::
Reference
<
lang
::
XEventListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeEventListener
(
const
uno
::
Reference
<
lang
::
XEventListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
setPosSize
(
sal_Int32
X
,
sal_Int32
Y
,
sal_Int32
Width
,
sal_Int32
Height
,
sal_Int16
Flags
)
throw
(
uno
::
RuntimeException
)
{
}
awt
::
Rectangle
SAL_CALL
VLCWindow
::
getPosSize
()
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
setVisible
(
sal_Bool
Visible
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
setEnable
(
sal_Bool
Enable
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
setFocus
()
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addWindowListener
(
const
uno
::
Reference
<
awt
::
XWindowListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeWindowListener
(
const
uno
::
Reference
<
awt
::
XWindowListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addFocusListener
(
const
uno
::
Reference
<
awt
::
XFocusListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeFocusListener
(
const
uno
::
Reference
<
awt
::
XFocusListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addKeyListener
(
const
uno
::
Reference
<
awt
::
XKeyListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeKeyListener
(
const
uno
::
Reference
<
awt
::
XKeyListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addMouseListener
(
const
uno
::
Reference
<
awt
::
XMouseListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeMouseListener
(
const
uno
::
Reference
<
awt
::
XMouseListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addMouseMotionListener
(
const
uno
::
Reference
<
awt
::
XMouseMotionListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removeMouseMotionListener
(
const
uno
::
Reference
<
awt
::
XMouseMotionListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
addPaintListener
(
const
uno
::
Reference
<
awt
::
XPaintListener
>&
xListener
)
throw
(
uno
::
RuntimeException
)
{
}
void
SAL_CALL
VLCWindow
::
removePaintListener
(
const
uno
::
Reference
<
awt
::
XPaintListener
>&
xListener
)
throw
(
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