Files
libreoffice/UnoControls/source/inc/framecontrol.hxx

186 lines
6.1 KiB
C++
Raw Normal View History

2010-10-27 12:45:03 +01:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-07-02 17:12:00 +01:00
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
2000-09-18 15:18:56 +00:00
#ifndef INCLUDED_UNOCONTROLS_SOURCE_INC_FRAMECONTROL_HXX
#define INCLUDED_UNOCONTROLS_SOURCE_INC_FRAMECONTROL_HXX
2000-09-18 15:18:56 +00:00
#include <com/sun/star/frame/XFrame2.hpp>
2000-09-18 15:18:56 +00:00
#include <com/sun/star/lang/XServiceName.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XConnectionPointContainer.hpp>
#include <cppuhelper/propshlp.hxx>
#include <rtl/ref.hxx>
2000-09-18 15:18:56 +00:00
#include <basecontrol.hxx>
2000-09-18 15:18:56 +00:00
#include "OConnectionPointContainerHelper.hxx"
namespace unocontrols {
class FrameControl : public css::awt::XControlModel
, public css::lang::XConnectionPointContainer
, public BaseControl // This order is necessary for right initialization of m_aMutex!
2010-10-31 21:34:25 -07:00
, public ::cppu::OBroadcastHelper
, public ::cppu::OPropertySetHelper
2000-09-18 15:18:56 +00:00
{
public:
FrameControl( const css::uno::Reference< css::uno::XComponentContext >& rxContext );
2000-09-18 15:18:56 +00:00
virtual ~FrameControl() override;
2000-09-18 15:18:56 +00:00
// XInterface
virtual css::uno::Any SAL_CALL queryInterface(
const css::uno::Type& aType
) override;
2000-09-18 15:18:56 +00:00
/**
2000-09-18 15:18:56 +00:00
@short increment refcount
@seealso XInterface
@seealso release()
@onerror A RuntimeException is thrown.
*/
virtual void SAL_CALL acquire() throw() override;
2000-09-18 15:18:56 +00:00
/**
2000-09-18 15:18:56 +00:00
@short decrement refcount
@seealso XInterface
@seealso acquire()
@onerror A RuntimeException is thrown.
*/
virtual void SAL_CALL release() throw() override;
2000-09-18 15:18:56 +00:00
// XTypeProvider
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override;
2000-09-18 15:18:56 +00:00
// XAggregation
css::uno::Any SAL_CALL queryAggregation(
const css::uno::Type& aType
) override;
2000-09-18 15:18:56 +00:00
OUString SAL_CALL getImplementationName() override;
css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
2000-09-18 15:18:56 +00:00
// XControl
2010-10-31 21:34:25 -07:00
virtual void SAL_CALL createPeer(
const css::uno::Reference< css::awt::XToolkit >& xToolkit ,
const css::uno::Reference< css::awt::XWindowPeer >& xParent
) override;
2000-09-18 15:18:56 +00:00
2010-10-31 21:34:25 -07:00
virtual sal_Bool SAL_CALL setModel(
const css::uno::Reference< css::awt::XControlModel >& xModel
) override;
2000-09-18 15:18:56 +00:00
virtual css::uno::Reference< css::awt::XControlModel > SAL_CALL getModel() override;
2000-09-18 15:18:56 +00:00
// XComponent
virtual void SAL_CALL dispose() override;
2000-09-18 15:18:56 +00:00
// XView
2010-10-31 21:34:25 -07:00
virtual sal_Bool SAL_CALL setGraphics(
const css::uno::Reference< css::awt::XGraphics >& xDevice
) override;
2000-09-18 15:18:56 +00:00
virtual css::uno::Reference< css::awt::XGraphics > SAL_CALL getGraphics() override;
2000-09-18 15:18:56 +00:00
// XConnectionPointContainer
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getConnectionPointTypes() override;
2000-09-18 15:18:56 +00:00
virtual css::uno::Reference< css::lang::XConnectionPoint > SAL_CALL queryConnectionPoint(
const css::uno::Type& aType
) override;
2000-09-18 15:18:56 +00:00
2010-10-31 21:34:25 -07:00
virtual void SAL_CALL advise(
const css::uno::Type& aType ,
const css::uno::Reference< css::uno::XInterface >& xListener
) override;
2000-09-18 15:18:56 +00:00
2010-10-31 21:34:25 -07:00
virtual void SAL_CALL unadvise(
const css::uno::Type& aType ,
const css::uno::Reference< css::uno::XInterface >& xListener
) override;
2000-09-18 15:18:56 +00:00
// impl but public methods to register service!
static const css::uno::Sequence< OUString > impl_getStaticSupportedServiceNames();
2000-09-18 15:18:56 +00:00
static const OUString impl_getStaticImplementationName();
2000-09-18 15:18:56 +00:00
protected:
using OPropertySetHelper::getFastPropertyValue;
2000-09-18 15:18:56 +00:00
// OPropertySetHelper
2010-10-31 21:34:25 -07:00
virtual sal_Bool SAL_CALL convertFastPropertyValue(
css::uno::Any& rConvertedValue ,
css::uno::Any& rOldValue ,
2010-10-31 21:34:25 -07:00
sal_Int32 nHandle ,
const css::uno::Any& rValue
) override;
2000-09-18 15:18:56 +00:00
2010-10-31 21:34:25 -07:00
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(
sal_Int32 nHandle ,
const css::uno::Any& rValue
) override;
2000-09-18 15:18:56 +00:00
virtual void SAL_CALL getFastPropertyValue( css::uno::Any& rValue ,
sal_Int32 nHandle ) const override;
2000-09-18 15:18:56 +00:00
virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() override;
2000-09-18 15:18:56 +00:00
// XPropertySet
css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override;
2000-09-18 15:18:56 +00:00
// BaseControl
virtual css::awt::WindowDescriptor* impl_getWindowDescriptor(
const css::uno::Reference< css::awt::XWindowPeer >& xParentPeer
) override;
2000-09-18 15:18:56 +00:00
private:
void impl_createFrame( const css::uno::Reference< css::awt::XWindowPeer >& xPeer ,
const OUString& sURL ,
const css::uno::Sequence< css::beans::PropertyValue >& seqArguments );
2000-09-18 15:18:56 +00:00
void impl_deleteFrame();
css::uno::Reference< css::frame::XFrame2 > m_xFrame;
OUString m_sComponentURL;
css::uno::Sequence< css::beans::PropertyValue > m_seqLoaderArguments;
rtl::Reference<OConnectionPointContainerHelper> m_aConnectionPointContainer;
2000-09-18 15:18:56 +00:00
};
2000-09-18 15:18:56 +00:00
}
2000-09-18 15:18:56 +00:00
#endif // INCLUDED_UNOCONTROLS_SOURCE_INC_FRAMECONTROL_HXX
2010-10-27 12:45:03 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */