321 lines
10 KiB
C++
321 lines
10 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* 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 .
|
|
*/
|
|
|
|
#include "gridcolumn.hxx"
|
|
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|
#include <comphelper/sequence.hxx>
|
|
#include <cppuhelper/supportsservice.hxx>
|
|
#include <cppuhelper/typeprovider.hxx>
|
|
|
|
namespace toolkit
|
|
{
|
|
using namespace ::com::sun::star;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::awt;
|
|
using namespace ::com::sun::star::awt::grid;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star::util;
|
|
using namespace ::com::sun::star::style;
|
|
|
|
|
|
//= DefaultGridColumnModel
|
|
|
|
|
|
GridColumn::GridColumn()
|
|
:GridColumn_Base( m_aMutex )
|
|
,m_aIdentifier()
|
|
,m_nIndex(-1)
|
|
,m_nDataColumnIndex(-1)
|
|
,m_nColumnWidth(4)
|
|
,m_nMaxWidth(0)
|
|
,m_nMinWidth(0)
|
|
,m_nFlexibility(1)
|
|
,m_bResizeable(true)
|
|
,m_eHorizontalAlign( HorizontalAlignment_LEFT )
|
|
{
|
|
}
|
|
|
|
|
|
GridColumn::GridColumn( GridColumn const & i_copySource )
|
|
:cppu::BaseMutex()
|
|
,GridColumn_Base( m_aMutex )
|
|
,m_aIdentifier( i_copySource.m_aIdentifier )
|
|
,m_nIndex( -1 )
|
|
,m_nDataColumnIndex( i_copySource.m_nDataColumnIndex )
|
|
,m_nColumnWidth( i_copySource.m_nColumnWidth )
|
|
,m_nMaxWidth( i_copySource.m_nMaxWidth )
|
|
,m_nMinWidth( i_copySource.m_nMinWidth )
|
|
,m_nFlexibility( i_copySource.m_nFlexibility )
|
|
,m_bResizeable( i_copySource.m_bResizeable )
|
|
,m_sTitle( i_copySource.m_sTitle )
|
|
,m_sHelpText( i_copySource.m_sHelpText )
|
|
,m_eHorizontalAlign( i_copySource.m_eHorizontalAlign )
|
|
{
|
|
}
|
|
|
|
|
|
GridColumn::~GridColumn()
|
|
{
|
|
}
|
|
|
|
|
|
void GridColumn::broadcast_changed( sal_Char const * const i_asciiAttributeName, const Any& i_oldValue, const Any& i_newValue,
|
|
::comphelper::ComponentGuard& i_Guard )
|
|
{
|
|
Reference< XInterface > const xSource( static_cast< ::cppu::OWeakObject* >( this ) );
|
|
GridColumnEvent const aEvent(
|
|
xSource, OUString::createFromAscii( i_asciiAttributeName ),
|
|
i_oldValue, i_newValue, m_nIndex
|
|
);
|
|
|
|
::cppu::OInterfaceContainerHelper* pIter = rBHelper.getContainer( cppu::UnoType<XGridColumnListener>::get() );
|
|
|
|
i_Guard.clear();
|
|
if( pIter )
|
|
pIter->notifyEach( &XGridColumnListener::columnChanged, aEvent );
|
|
}
|
|
|
|
|
|
css::uno::Any SAL_CALL GridColumn::getIdentifier() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_aIdentifier;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setIdentifier(const css::uno::Any & value) throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
m_aIdentifier = value;
|
|
}
|
|
|
|
|
|
::sal_Int32 SAL_CALL GridColumn::getColumnWidth() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_nColumnWidth;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setColumnWidth(::sal_Int32 value) throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
impl_set( m_nColumnWidth, value, "ColumnWidth" );
|
|
}
|
|
|
|
|
|
::sal_Int32 SAL_CALL GridColumn::getMaxWidth() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_nMaxWidth;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setMaxWidth(::sal_Int32 value) throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
impl_set( m_nMaxWidth, value, "MaxWidth" );
|
|
}
|
|
|
|
|
|
::sal_Int32 SAL_CALL GridColumn::getMinWidth() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_nMinWidth;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setMinWidth(::sal_Int32 value) throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
impl_set( m_nMinWidth, value, "MinWidth" );
|
|
}
|
|
|
|
|
|
OUString SAL_CALL GridColumn::getTitle() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_sTitle;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setTitle(const OUString & value) throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
impl_set( m_sTitle, value, "Title" );
|
|
}
|
|
|
|
|
|
OUString SAL_CALL GridColumn::getHelpText() throw (RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_sHelpText;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setHelpText( const OUString & value ) throw (RuntimeException, std::exception)
|
|
{
|
|
impl_set( m_sHelpText, value, "HelpText" );
|
|
}
|
|
|
|
|
|
sal_Bool SAL_CALL GridColumn::getResizeable() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_bResizeable;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setResizeable(sal_Bool value) throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
impl_set( m_bResizeable, bool(value), "Resizeable" );
|
|
}
|
|
|
|
|
|
::sal_Int32 SAL_CALL GridColumn::getFlexibility() throw (RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_nFlexibility;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setFlexibility( ::sal_Int32 i_value ) throw (IllegalArgumentException, RuntimeException, std::exception)
|
|
{
|
|
if ( i_value < 0 )
|
|
throw IllegalArgumentException( OUString(), *this, 1 );
|
|
impl_set( m_nFlexibility, i_value, "Flexibility" );
|
|
}
|
|
|
|
|
|
HorizontalAlignment SAL_CALL GridColumn::getHorizontalAlign() throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_eHorizontalAlign;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setHorizontalAlign(HorizontalAlignment align) throw (css::uno::RuntimeException, std::exception)
|
|
{
|
|
impl_set( m_eHorizontalAlign, align, "HorizontalAlign" );
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::addGridColumnListener( const Reference< XGridColumnListener >& xListener ) throw (RuntimeException, std::exception)
|
|
{
|
|
rBHelper.addListener( cppu::UnoType<XGridColumnListener>::get(), xListener );
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::removeGridColumnListener( const Reference< XGridColumnListener >& xListener ) throw (RuntimeException, std::exception)
|
|
{
|
|
rBHelper.removeListener( cppu::UnoType<XGridColumnListener>::get(), xListener );
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::disposing()
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
m_aIdentifier.clear();
|
|
m_sTitle.clear();
|
|
m_sHelpText.clear();
|
|
}
|
|
|
|
|
|
::sal_Int32 SAL_CALL GridColumn::getIndex() throw (RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_nIndex;
|
|
}
|
|
|
|
|
|
void GridColumn::setIndex( sal_Int32 const i_index )
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
m_nIndex = i_index;
|
|
}
|
|
|
|
|
|
::sal_Int32 SAL_CALL GridColumn::getDataColumnIndex() throw(RuntimeException, std::exception)
|
|
{
|
|
::comphelper::ComponentGuard aGuard( *this, rBHelper );
|
|
return m_nDataColumnIndex;
|
|
}
|
|
|
|
|
|
void SAL_CALL GridColumn::setDataColumnIndex( ::sal_Int32 i_dataColumnIndex ) throw(RuntimeException, std::exception)
|
|
{
|
|
impl_set( m_nDataColumnIndex, i_dataColumnIndex, "DataColumnIndex" );
|
|
}
|
|
|
|
|
|
OUString SAL_CALL GridColumn::getImplementationName( ) throw (RuntimeException, std::exception)
|
|
{
|
|
return OUString( "org.openoffice.comp.toolkit.GridColumn" );
|
|
}
|
|
|
|
sal_Bool SAL_CALL GridColumn::supportsService( const OUString& i_serviceName ) throw (RuntimeException, std::exception)
|
|
{
|
|
return cppu::supportsService(this, i_serviceName);
|
|
}
|
|
|
|
css::uno::Sequence< OUString > SAL_CALL GridColumn::getSupportedServiceNames( ) throw (RuntimeException, std::exception)
|
|
{
|
|
const OUString aServiceName("com.sun.star.awt.grid.GridColumn");
|
|
const Sequence< OUString > aSeq( &aServiceName, 1 );
|
|
return aSeq;
|
|
}
|
|
|
|
|
|
Reference< XCloneable > SAL_CALL GridColumn::createClone( ) throw (RuntimeException, std::exception)
|
|
{
|
|
return new GridColumn( *this );
|
|
}
|
|
|
|
|
|
sal_Int64 SAL_CALL GridColumn::getSomething( const Sequence< sal_Int8 >& i_identifier ) throw(RuntimeException, std::exception)
|
|
{
|
|
if ( ( i_identifier.getLength() == 16 ) && ( i_identifier == getUnoTunnelId() ) )
|
|
return ::sal::static_int_cast< sal_Int64 >( reinterpret_cast< sal_IntPtr >( this ) );
|
|
return 0;
|
|
}
|
|
|
|
|
|
Sequence< sal_Int8 > GridColumn::getUnoTunnelId() throw()
|
|
{
|
|
static ::cppu::OImplementationId const aId;
|
|
return aId.getImplementationId();
|
|
}
|
|
|
|
|
|
GridColumn* GridColumn::getImplementation( const Reference< XInterface >& i_component )
|
|
{
|
|
Reference< XUnoTunnel > const xTunnel( i_component, UNO_QUERY );
|
|
if ( xTunnel.is() )
|
|
return reinterpret_cast< GridColumn* >( ::sal::static_int_cast< sal_IntPtr >( xTunnel->getSomething( getUnoTunnelId() ) ) );
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
|
|
org_openoffice_comp_toolkit_GridColumn_get_implementation(
|
|
css::uno::XComponentContext *,
|
|
css::uno::Sequence<css::uno::Any> const &)
|
|
{
|
|
return cppu::acquire(new toolkit::GridColumn());
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|