1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 <fmservs.hxx>
23 #include <com/sun/star/uno/Sequence.hxx>
25 using namespace ::com::sun::star::uno
;
28 static const css::uno::Sequence
<OUString
>& getColumnTypes()
30 static css::uno::Sequence
<OUString
> aColumnTypes
= []()
32 css::uno::Sequence
<OUString
> tmp(10);
33 OUString
* pNames
= tmp
.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
;
52 // comparison of PropertyInfo
53 static int NameCompare(const void* pFirst
, const void* pSecond
)
55 return static_cast<OUString
const *>(pFirst
)->compareTo(*static_cast<OUString
const *>(pSecond
));
63 sal_Int32
lcl_findPos(const OUString
& aStr
, const Sequence
< OUString
>& rList
)
65 const OUString
* pStrList
= rList
.getConstArray();
66 OUString
* pResult
= static_cast<OUString
*>(bsearch(&aStr
, static_cast<void const *>(pStrList
), rList
.getLength(), sizeof(OUString
),
70 return (pResult
- pStrList
);
77 sal_Int32
getColumnTypeByModelName(const OUString
& aModelName
)
79 static constexpr OUString
aModelPrefix(u
"com.sun.star.form.component."_ustr
);
80 static constexpr OUString
aCompatibleModelPrefix(u
"stardiv.one.form.component."_ustr
);
82 sal_Int32 nTypeId
= -1;
83 if (aModelName
== FM_COMPONENT_EDIT
)
84 nTypeId
= TYPE_TEXTFIELD
;
87 sal_Int32 nPrefixPos
= aModelName
.indexOf(aModelPrefix
);
89 sal_Int32 nCompatiblePrefixPos
= aModelName
.indexOf(aCompatibleModelPrefix
);
90 DBG_ASSERT( (nPrefixPos
!= -1) || (nCompatiblePrefixPos
!= -1), "::getColumnTypeByModelName() : wrong service!");
93 OUString aColumnType
= (nPrefixPos
!= -1)
94 ? aModelName
.copy(aModelPrefix
.getLength())
95 : aModelName
.copy(aCompatibleModelPrefix
.getLength());
97 const css::uno::Sequence
<OUString
>& rColumnTypes
= getColumnTypes();
98 nTypeId
= lcl_findPos(aColumnType
, rColumnTypes
);
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */