merged tag LIBREOFFICE_3_2_99_3
[LibreOffice.git] / extensions / source / unoactivex / main / initwindowpeer.cxx
blob5e88b5b489ddb9b61a0154afb2110249fe5b3e35
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
30 // MARKER(update_precomp.py): autogen include statement, do not remove
31 #include "precompiled_extensions.hxx"
33 #include "initwindowpeer.hxx"
35 using namespace ::com::sun::star;
38 uno::Any SAL_CALL InitWindowPeer::getWindowHandle( const uno::Sequence< sal_Int8 >& ProcessId, sal_Int16 SystemType )
39 throw ( uno::RuntimeException )
41 uno::Any aRes;
42 sal_Int32 nHwnd = (sal_Int32)m_hwnd;
43 aRes <<= nHwnd;
44 return aRes;
48 uno::Reference< awt::XToolkit > SAL_CALL InitWindowPeer::getToolkit()
49 throw ( uno::RuntimeException )
51 return uno::Reference< awt::XToolkit >();
54 void SAL_CALL InitWindowPeer::setPointer( const uno::Reference< awt::XPointer >& Pointer )
55 throw ( uno::RuntimeException )
59 void SAL_CALL InitWindowPeer::setBackground( sal_Int32 Color )
60 throw ( uno::RuntimeException )
64 void SAL_CALL InitWindowPeer::invalidate( sal_Int16 Flags )
65 throw ( uno::RuntimeException )
69 void SAL_CALL InitWindowPeer::invalidateRect( const awt::Rectangle& Rect, sal_Int16 Flags )
70 throw ( uno::RuntimeException )
74 void SAL_CALL InitWindowPeer::dispose()
75 throw ( uno::RuntimeException )
79 void SAL_CALL InitWindowPeer::addEventListener( const uno::Reference< lang::XEventListener >& xListener )
80 throw ( uno::RuntimeException )
84 void SAL_CALL InitWindowPeer::removeEventListener( const uno::Reference< lang::XEventListener >& aListener )
85 throw ( uno::RuntimeException )
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */