update credits
[LibreOffice.git] / svtools / source / hatchwindow / hatchwindow.hxx
blob312e3d824ef7282e3a692a0671d6ef0de19ae10a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 _SVT_HATCHWINDOW_HXX
21 #define _SVT_HATCHWINDOW_HXX
23 #include <com/sun/star/embed/XHatchWindow.hpp>
25 #include <toolkit/awt/vclxwindow.hxx>
26 #include <cppuhelper/typeprovider.hxx>
28 class SvResizeWindow;
29 class VCLXHatchWindow : public ::com::sun::star::embed::XHatchWindow,
30 public VCLXWindow
32 ::com::sun::star::uno::Reference< ::com::sun::star::embed::XHatchWindowController > m_xController;
33 ::com::sun::star::awt::Size aHatchBorderSize;
34 SvResizeWindow* pHatchWindow;
36 public:
37 VCLXHatchWindow();
38 ~VCLXHatchWindow();
40 void initializeWindow( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer >& xParent,
41 const ::com::sun::star::awt::Rectangle& aBounds,
42 const ::com::sun::star::awt::Size& aSize );
44 void QueryObjAreaPixel( Rectangle & );
45 void RequestObjAreaPixel( const Rectangle & );
46 void InplaceDeactivate();
47 void Activated();
48 void Deactivated();
50 // XInterface
51 ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& rType ) throw(::com::sun::star::uno::RuntimeException);
52 void SAL_CALL acquire() throw();
53 void SAL_CALL release() throw();
55 // XTypeProvider
56 ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw(::com::sun::star::uno::RuntimeException);
57 ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw(::com::sun::star::uno::RuntimeException);
59 // XHatchWindow
60 virtual void SAL_CALL setController( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XHatchWindowController >& xController ) throw (::com::sun::star::uno::RuntimeException);
61 virtual ::com::sun::star::awt::Size SAL_CALL getHatchBorderSize() throw (::com::sun::star::uno::RuntimeException);
62 virtual void SAL_CALL setHatchBorderSize( const ::com::sun::star::awt::Size& _hatchbordersize ) throw (::com::sun::star::uno::RuntimeException);
64 // XComponent
65 virtual void SAL_CALL dispose() throw (::com::sun::star::uno::RuntimeException);
66 virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
67 virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
70 #endif // _SVT_HATCHWINDOW_HXX
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */