calc: on editing invalidation of view with different zoom is wrong
[LibreOffice.git] / dbaccess / source / core / dataaccess / commandcontainer.cxx
blob8afb81520e2d16a8835f9953f247b59569a383d7
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 #include "commandcontainer.hxx"
21 #include "commanddefinition.hxx"
23 #include <com/sun/star/sdb/TableDefinition.hpp>
24 #include <com/sun/star/sdb/CommandDefinition.hpp>
26 using namespace ::com::sun::star::uno;
27 using namespace ::com::sun::star::lang;
28 using namespace ::com::sun::star::beans;
29 using namespace ::com::sun::star::container;
30 using namespace ::com::sun::star::ucb;
31 using namespace ::osl;
32 using namespace ::comphelper;
33 using namespace ::cppu;
35 namespace dbaccess
38 // OCommandContainer
40 OCommandContainer::OCommandContainer( const Reference< css::uno::XComponentContext >& _xORB
41 ,const Reference< XInterface >& _xParentContainer
42 ,const TContentPtr& _pImpl
43 ,bool _bTables
45 :ODefinitionContainer(_xORB,_xParentContainer,_pImpl,!_bTables)
46 ,m_bTables(_bTables)
50 OCommandContainer::~OCommandContainer()
54 IMPLEMENT_FORWARD_XINTERFACE2( OCommandContainer,ODefinitionContainer,OCommandContainer_BASE)
55 css::uno::Sequence< css::uno::Type > OCommandContainer::getTypes()
57 return ::comphelper::concatSequences(
58 ODefinitionContainer::getTypes( ),
59 OCommandContainer_BASE::getTypes( )
63 css::uno::Sequence<sal_Int8> OCommandContainer::getImplementationId()
65 return css::uno::Sequence<sal_Int8>();
68 Reference< XContent > OCommandContainer::createObject( const OUString& _rName)
70 const ODefinitionContainer_Impl& rDefinitions( getDefinitions() );
71 OSL_ENSURE( rDefinitions.find(_rName) != rDefinitions.end(), "OCommandContainer::createObject: Invalid entry in map!" );
73 const TContentPtr& pElementContent( rDefinitions.find( _rName )->second );
74 if ( m_bTables )
75 return new OComponentDefinition( *this, _rName, m_aContext, pElementContent, m_bTables );
76 else
77 return static_cast< css::sdb::XQueryDefinition * > ( new OCommandDefinition( *this, _rName, m_aContext, pElementContent ) );
80 Reference< XInterface > SAL_CALL OCommandContainer::createInstanceWithArguments(const Sequence< Any >& /*aArguments*/ )
82 return createInstance( );
85 Reference< XInterface > SAL_CALL OCommandContainer::createInstance( )
87 if(m_bTables)
88 return css::sdb::TableDefinition::createDefault( m_aContext );
89 else
90 return css::sdb::CommandDefinition::create( m_aContext );
93 OUString OCommandContainer::determineContentType() const
95 return "application/vnd.org.openoffice.DatabaseCommandDefinitionContainer";
98 } // namespace dbaccess
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */