summaryrefslogtreecommitdiffstats
path: root/avmedia/source/vlc/vlcwindow.cpp
blob: 77656eb9ac60bbdfa773daff20557d92f81ee645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "vlcwindow.hxx"

using namespace ::com::sun::star;

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 >();
}

}
}