Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / svx / source / fmcomp / gridcols.cxx
blob02b11a909522f55376fe7d25cd2c6e91e672b02f
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 "gridcols.hxx"
21 #include <tools/debug.hxx>
22 #include <comphelper/types.hxx>
23 #include "fmservs.hxx"
24 #include "svx/fmtools.hxx"
25 using namespace ::com::sun::star::uno;
28 const ::comphelper::StringSequence& getColumnTypes()
30 static ::comphelper::StringSequence aColumnTypes(10);
31 if (aColumnTypes.getConstArray()[0].isEmpty())
33 OUString* pNames = aColumnTypes.getArray();
34 pNames[TYPE_CHECKBOX] = FM_COL_CHECKBOX;
35 pNames[TYPE_COMBOBOX] = FM_COL_COMBOBOX;
36 pNames[TYPE_CURRENCYFIELD] = FM_COL_CURRENCYFIELD;
37 pNames[TYPE_DATEFIELD] = FM_COL_DATEFIELD;
38 pNames[TYPE_FORMATTEDFIELD] = FM_COL_FORMATTEDFIELD;
39 pNames[TYPE_LISTBOX] = FM_COL_LISTBOX;
40 pNames[TYPE_NUMERICFIELD] = FM_COL_NUMERICFIELD;
41 pNames[TYPE_PATTERNFIELD] = FM_COL_PATTERNFIELD;
42 pNames[TYPE_TEXTFIELD] = FM_COL_TEXTFIELD;
43 pNames[TYPE_TIMEFIELD] = FM_COL_TIMEFIELD;
45 return aColumnTypes;
49 // Vergleichen von PropertyInfo
50 extern "C" int SAL_CALL NameCompare(const void* pFirst, const void* pSecond)
52 return ((OUString*)pFirst)->compareTo(*(OUString*)pSecond);
55 namespace
58 sal_Int32 lcl_findPos(const OUString& aStr, const Sequence< OUString>& rList)
60 const OUString* pStrList = rList.getConstArray();
61 OUString* pResult = (OUString*) bsearch(&aStr, (void*)pStrList, rList.getLength(), sizeof(OUString),
62 &NameCompare);
64 if (pResult)
65 return (pResult - pStrList);
66 else
67 return -1;
72 sal_Int32 getColumnTypeByModelName(const OUString& aModelName)
74 const OUString aModelPrefix("com.sun.star.form.component.");
75 const OUString aCompatibleModelPrefix("stardiv.one.form.component.");
77 sal_Int32 nTypeId = -1;
78 if (aModelName == FM_COMPONENT_EDIT)
79 nTypeId = TYPE_TEXTFIELD;
80 else
82 sal_Int32 nPrefixPos = aModelName.indexOf(aModelPrefix);
83 #ifdef DBG_UTIL
84 sal_Int32 nCompatiblePrefixPos = aModelName.indexOf(aCompatibleModelPrefix);
85 DBG_ASSERT( (nPrefixPos != -1) || (nCompatiblePrefixPos != -1), "::getColumnTypeByModelName() : wrong servivce !");
86 #endif
88 OUString aColumnType = (nPrefixPos != -1)
89 ? aModelName.copy(aModelPrefix.getLength())
90 : aModelName.copy(aCompatibleModelPrefix.getLength());
92 const ::comphelper::StringSequence& rColumnTypes = getColumnTypes();
93 nTypeId = lcl_findPos(aColumnType, rColumnTypes);
95 return nTypeId;
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */