LibreOffice Module sc (master) 1
callform.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <rtl/ustring.hxx>
23
24#include <memory>
25#include <map>
26
27#define MAXFUNCPARAM 16
28#define MAXARRSIZE 0xfffe
29
30#ifndef _WIN32
31#define CALLTYPE
32#else
33#define CALLTYPE __cdecl
34#endif
35
36extern "C" {
37typedef void (CALLTYPE* AdvData)( double& nHandle, void* pData );
38}
39
40enum class ParamType
41{
47 NONE
48};
49
50class ModuleData;
51
53{
55
57 OUString aInternalName;
58 OUString aFuncName;
59 sal_uInt16 nNumber;
60 sal_uInt16 nParamCount;
63public:
64 LegacyFuncData(const ModuleData*pModule,
65 OUString aIName,
66 OUString aFName,
67 sal_uInt16 nNo,
68 sal_uInt16 nCount,
69 const ParamType* peType,
70 ParamType eType);
71 LegacyFuncData(const LegacyFuncData& rData);
72
73 const OUString& GetModuleName() const;
74 const OUString& GetInternalName() const { return aInternalName; }
75 sal_uInt16 GetParamCount() const { return nParamCount; }
76 ParamType GetParamType(sal_uInt16 nIndex) const { return eParamType[nIndex]; }
77 ParamType GetAsyncType() const { return eAsyncType; }
78 void Call(void** ppParam) const;
79 void Unadvice(double nHandle);
80
84 void getParamDesc( OUString& aName, OUString& aDesc, sal_uInt16 nParam ) const;
85};
86
88{
89 typedef std::map<OUString, std::unique_ptr<LegacyFuncData>> MapType;
91
92public:
93 typedef MapType::const_iterator const_iterator;
94
97
98 const LegacyFuncData* findByName(const OUString& rName) const;
99 LegacyFuncData* findByName(const OUString& rName);
100 void insert(LegacyFuncData* pNew);
101
102 const_iterator begin() const;
103 const_iterator end() const;
104};
105
106bool InitExternalFunc(const OUString& rModuleName);
107void ExitExternalFunc();
108
109/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define MAXFUNCPARAM
Definition: callform.hxx:27
ParamType
Definition: callform.hxx:41
#define CALLTYPE
Definition: callform.hxx:31
bool InitExternalFunc(const OUString &rModuleName)
Definition: callform.cxx:161
void ExitExternalFunc()
Definition: callform.cxx:240
void(CALLTYPE * AdvData)(double &nHandle, void *pData)
Definition: callform.hxx:37
const_iterator begin() const
Definition: callform.cxx:402
std::map< OUString, std::unique_ptr< LegacyFuncData > > MapType
Definition: callform.hxx:89
const LegacyFuncData * findByName(const OUString &rName) const
Definition: callform.cxx:384
void insert(LegacyFuncData *pNew)
Definition: callform.cxx:396
const_iterator end() const
Definition: callform.cxx:407
MapType::const_iterator const_iterator
Definition: callform.hxx:93
OUString aInternalName
Definition: callform.hxx:57
LegacyFuncData(const ModuleData *pModule, OUString aIName, OUString aFName, sal_uInt16 nNo, sal_uInt16 nCount, const ParamType *peType, ParamType eType)
Definition: callform.cxx:93
void getParamDesc(OUString &aName, OUString &aDesc, sal_uInt16 nParam) const
name and description of parameter nParam.
Definition: callform.cxx:343
ParamType GetParamType(sal_uInt16 nIndex) const
Definition: callform.hxx:76
ParamType GetAsyncType() const
Definition: callform.hxx:77
OUString aFuncName
Definition: callform.hxx:58
sal_uInt16 GetParamCount() const
Definition: callform.hxx:75
ParamType eAsyncType
Definition: callform.hxx:61
void Call(void **ppParam) const
Definition: callform.cxx:245
ParamType eParamType[MAXFUNCPARAM]
Definition: callform.hxx:62
const OUString & GetInternalName() const
Definition: callform.hxx:74
sal_uInt16 nNumber
Definition: callform.hxx:59
void Unadvice(double nHandle)
Definition: callform.cxx:324
const OUString & GetModuleName() const
Definition: callform.cxx:338
const ModuleData * pModuleData
Definition: callform.hxx:56
sal_uInt16 nParamCount
Definition: callform.hxx:60
sal_Int32 nIndex
std::unique_ptr< sal_Int32[]> pData
NONE
sal_Int32 nHandle