1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VBAHELPER_VBAWINDOWBASE_HXX
21 #define INCLUDED_VBAHELPER_VBAWINDOWBASE_HXX
23 #include <ooo/vba/XWindowBase.hpp>
24 #include <com/sun/star/awt/XWindow2.hpp>
25 #include <com/sun/star/frame/XController.hpp>
26 #include <vbahelper/vbahelperinterface.hxx>
28 typedef InheritedHelperInterfaceImpl1
< ov::XWindowBase
> WindowBaseImpl_BASE
;
30 class VBAHELPER_DLLPUBLIC VbaWindowBase
: public WindowBaseImpl_BASE
34 const css::uno::Reference
< ov::XHelperInterface
>& xParent
,
35 const css::uno::Reference
< css::uno::XComponentContext
>& xContext
,
36 const css::uno::Reference
< css::frame::XModel
>& xModel
,
37 const css::uno::Reference
< css::frame::XController
>& xController
)
38 throw (css::uno::RuntimeException
);
40 css::uno::Sequence
< css::uno::Any
> const& aArgs
,
41 css::uno::Reference
< css::uno::XComponentContext
> const& xContext
)
42 throw (css::uno::RuntimeException
);
45 virtual sal_Int32 SAL_CALL
getHeight() throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
46 virtual void SAL_CALL
setHeight( sal_Int32 _height
) throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
47 virtual sal_Int32 SAL_CALL
getLeft() throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
48 virtual void SAL_CALL
setLeft( sal_Int32 _left
) throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
49 virtual sal_Int32 SAL_CALL
getTop() throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
50 virtual void SAL_CALL
setTop( sal_Int32 _top
) throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
51 virtual sal_Bool SAL_CALL
getVisible() throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
52 virtual void SAL_CALL
setVisible( sal_Bool _visible
) throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
53 virtual sal_Int32 SAL_CALL
getWidth() throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
54 virtual void SAL_CALL
setWidth( sal_Int32 _width
) throw (css::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
57 virtual OUString
getServiceImplName() SAL_OVERRIDE
;
58 virtual css::uno::Sequence
<OUString
> getServiceNames() SAL_OVERRIDE
;
61 css::uno::Reference
< css::frame::XController
> getController() throw (css::uno::RuntimeException
);
62 css::uno::Reference
< css::awt::XWindow
> getWindow() throw (css::uno::RuntimeException
);
63 css::uno::Reference
< css::awt::XWindow2
> getWindow2() throw (css::uno::RuntimeException
);
65 css::uno::Reference
< css::frame::XModel
> m_xModel
;
68 void construct( const css::uno::Reference
< css::frame::XController
>& xController
) throw (css::uno::RuntimeException
);
70 css::uno::WeakReference
< css::frame::XController
> m_xController
;
71 css::uno::WeakReference
< css::awt::XWindow
> m_xWindow
;
74 #endif // INCLUDED_VBAHELPER_VBAWINDOWBASE_HXX
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */