/* -*- 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 "TableFieldDescription.hxx" #include #include #include #include #include #include using namespace ::com::sun::star::sdbc; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; using namespace comphelper; using namespace dbaui; OTableFieldDesc::OTableFieldDesc() :m_pTabWindow(nullptr) ,m_eDataType(1000) ,m_eFunctionType( FKT_NONE ) ,m_eFieldType(TAB_NORMAL_FIELD) ,m_eOrderDir( ORDER_NONE ) ,m_nIndex(0) ,m_nColWidth(0) ,m_nColumnId((sal_uInt16)-1) ,m_bGroupBy(false) ,m_bVisible(false) { } OTableFieldDesc::OTableFieldDesc(const OTableFieldDesc& rRS) : ::salhelper::SimpleReferenceObject() , m_pTabWindow(nullptr) { *this = rRS; } OTableFieldDesc::OTableFieldDesc(const OUString& rT, const OUString& rF ) :m_pTabWindow(nullptr) ,m_eDataType(1000) ,m_eFunctionType( FKT_NONE ) ,m_eFieldType(TAB_NORMAL_FIELD) ,m_eOrderDir( ORDER_NONE ) ,m_nIndex(0) ,m_nColWidth(0) ,m_nColumnId((sal_uInt16)-1) ,m_bGroupBy(false) ,m_bVisible(false) { SetField( rF ); SetTable( rT ); } OTableFieldDesc::~OTableFieldDesc() { } OTableFieldDesc& OTableFieldDesc::operator=( const OTableFieldDesc& rRS ) { if (&rRS == this) return *this; m_aCriteria = rRS.GetCriteria(); m_aTableName = rRS.GetTable(); m_aAliasName = rRS.GetAlias(); // table range m_aFieldName = rRS.GetField(); // column m_aFieldAlias = rRS.GetFieldAlias(); // column alias m_aFunctionName = rRS.GetFunction(); // Funktionsname m_pTabWindow = rRS.GetTabWindow(); m_eDataType = rRS.GetDataType(); m_eFunctionType = rRS.GetFunctionType(); m_eFieldType = rRS.GetFieldType(); m_eOrderDir = rRS.GetOrderDir(); m_nIndex = rRS.GetFieldIndex(); m_nColWidth = rRS.GetColWidth(); m_nColumnId = rRS.m_nColumnId; m_bGroupBy = rRS.IsGroupBy(); m_bVisible = rRS.IsVisible(); return *this; } void OTableFieldDesc::SetCriteria( sal_uInt16 nIdx, const OUString& rCrit) { if (nIdx < m_aCriteria.size()) m_aCriteria[nIdx] = rCrit; else { for(sal_Int32 i=m_aCriteria.size();i { OUString operator()( const PropertyValue& i_rPropValue ) const { OUString sValue; OSL_VERIFY( i_rPropValue.Value >>= sValue ); return sValue; } }; } void OTableFieldDesc::Load( const css::beans::PropertyValue& i_rSettings, const bool i_bIncludingCriteria ) { ::comphelper::NamedValueCollection aFieldDesc( i_rSettings.Value ); m_aAliasName = aFieldDesc.getOrDefault( "AliasName", m_aAliasName ); m_aTableName = aFieldDesc.getOrDefault( "TableName", m_aTableName ); m_aFieldName = aFieldDesc.getOrDefault( "FieldName", m_aFieldName ); m_aFieldAlias = aFieldDesc.getOrDefault( "FieldAlias", m_aFieldAlias ); m_aFunctionName = aFieldDesc.getOrDefault( "FunctionName", m_aFunctionName ); m_eDataType = aFieldDesc.getOrDefault( "DataType", m_eDataType ); m_eFunctionType = aFieldDesc.getOrDefault( "FunctionType", m_eFunctionType ); m_nColWidth = aFieldDesc.getOrDefault( "ColWidth", m_nColWidth ); m_bGroupBy = aFieldDesc.getOrDefault( "GroupBy", m_bGroupBy ); m_bVisible = aFieldDesc.getOrDefault( "Visible", m_bVisible ); m_eFieldType = static_cast< ETableFieldType >( aFieldDesc.getOrDefault( "FieldType", static_cast< sal_Int32 >( m_eFieldType ) ) ); m_eOrderDir = static_cast< EOrderDir >( aFieldDesc.getOrDefault( "OrderDir", static_cast< sal_Int32 >( m_eOrderDir ) ) ); if ( i_bIncludingCriteria ) { const Sequence< PropertyValue > aCriteria( aFieldDesc.getOrDefault( "Criteria", Sequence< PropertyValue >() ) ); m_aCriteria.resize( aCriteria.getLength() ); ::std::transform( aCriteria.getConstArray(), aCriteria.getConstArray() + aCriteria.getLength(), m_aCriteria.begin(), SelectPropertyValueAsString() ); } } void OTableFieldDesc::Save( ::comphelper::NamedValueCollection& o_rSettings, const bool i_bIncludingCriteria ) { o_rSettings.put( "AliasName", m_aAliasName ); o_rSettings.put( "TableName", m_aTableName ); o_rSettings.put( "FieldName", m_aFieldName ); o_rSettings.put( "FieldAlias", m_aFieldAlias ); o_rSettings.put( "FunctionName", m_aFunctionName ); o_rSettings.put( "DataType", m_eDataType ); o_rSettings.put( "FunctionType", (sal_Int32)m_eFunctionType ); o_rSettings.put( "FieldType", (sal_Int32)m_eFieldType ); o_rSettings.put( "OrderDir", (sal_Int32)m_eOrderDir ); o_rSettings.put( "ColWidth", m_nColWidth ); o_rSettings.put( "GroupBy", m_bGroupBy ); o_rSettings.put( "Visible", m_bVisible ); if ( i_bIncludingCriteria ) { if ( !m_aCriteria.empty() ) { sal_Int32 c = 0; Sequence< PropertyValue > aCriteria( m_aCriteria.size() ); for ( ::std::vector< OUString >::const_iterator crit = m_aCriteria.begin(); crit != m_aCriteria.end(); ++crit, ++c ) { aCriteria[c].Name = "Criterion_" + OUString::number( c ); aCriteria[c].Value <<= *crit; } o_rSettings.put( "Criteria", aCriteria ); } } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -6-4+backports'>distro/lhm/libreoffice-6-4+backports LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-06-20Convert PART to scoped enumNoel Grandin
Change-Id: If4c2849beb207593d3d450ae3846ed24eaf66ca4 Reviewed-on: https://gerrit.libreoffice.org/26173 Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de> Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-06-08Convert ButtonValue to scoped enumNoel Grandin
Change-Id: Ia882914fb99844f21ce89d7218321933ef084b22 Reviewed-on: https://gerrit.libreoffice.org/26036 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-05-31Convert ControlType to scoped enumNoel Grandin
Change-Id: Iaa13c3e7030296a97bab144103745867d43b4b19 Reviewed-on: https://gerrit.libreoffice.org/25554 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2016-04-13remove dead stuff from Windows SalDataNoel Grandin
- drop mbInTimerProc field - drop mnSageStatus,mpSageEnableProc fields i.e. SAGE.DLL (System Agent) workaround, which died out with Win95/98 - convert some TRUE/FALSE constants to true/false where the field is a bool - drop maDwmLib, mpDwmIsCompositionEnabled fields Change-Id: I7b773f915dbc329eb0262bc8fee2ea7c72d25c66 Reviewed-on: https://gerrit.libreoffice.org/24047 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2016-03-19Remove commented-out codeGurkaran
Follow-up to 2f7815ab6b3f93f7f9712d403846f1874b8e3a2b Change-Id: Ifd2dca4105caf5693a8ae17d26f950a3aef418bd
2016-03-19tdf#97973 - cleanup spinbuttons theming logic.Gurkaran
vcl/unx/kde4/KDESalGraphics.cxx had a special case to build the widgetRect for spin-buttons which is cleaned up. vcl/unx/gtk/salnativewidgets-gtk.cxx had a wrong comment and special case regarding CTRL_SPINBUTTONS which is cleaned up. vcl/win/gdi/salnativewidgets-luna.cxx had a wrong comment regarding spinbutton which is cleaned up. Change-Id: I3c2797800221e150be165666bf71b65302724444 Signed-off-by: Gurkaran Singh <gurkran@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/23345 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
2016-02-17tdf#95618 - opengl - mend control regions and caching for tab headers.Michael Meeks
Some tab headers in some themes unhelpfully enlarge the control region in some states - so query the region size in advance. Sadly the control region querying is something of a train-wreck too - so only use that for CTRL_TAB_ITEMs for now. Also fix Rectangle constructor ordering. Change-Id: I5e66ec541193f5b66a656dd45d5fba67a771e132
2016-02-13vcl: include vcl headers via triangular brackets instead of quotesChris Sherlock
Change-Id: I311f7db622ce341527fe12a92b516f800b602f92
2015-12-02Get rid of a superfluous directory levelTor Lillqvist
Change-Id: I79e065f0c68b149d2ef69f428d31e36e97a6098b