2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:09:59 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:09:59 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:09:59 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:09:59 -05:00
|
|
|
* $RCSfile: addincol.hxx,v $
|
|
|
|
* $Revision: 1.12 $
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:09:59 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:09:59 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:09:59 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 12:09:59 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SC_ADDINCOL_HXX
|
|
|
|
#define SC_ADDINCOL_HXX
|
|
|
|
|
2007-09-27 07:50:56 -05:00
|
|
|
#include "global.hxx"
|
2000-09-18 11:07:07 -05:00
|
|
|
#include <com/sun/star/sheet/XVolatileResult.hpp>
|
|
|
|
#include <com/sun/star/sheet/XAddIn.hpp>
|
|
|
|
#include <com/sun/star/sheet/XResultListener.hpp>
|
|
|
|
#include <com/sun/star/sheet/ResultEvent.hpp>
|
|
|
|
#include <com/sun/star/container/XNameAccess.hpp>
|
2004-03-08 04:39:55 -06:00
|
|
|
#include <com/sun/star/reflection/XIdlMethod.hpp>
|
|
|
|
#include <com/sun/star/sheet/LocalizedName.hpp>
|
2004-06-04 04:00:27 -05:00
|
|
|
#include <tools/string.hxx>
|
2006-04-07 10:21:31 -05:00
|
|
|
#include <i18npool/lang.h>
|
2002-11-19 15:08:22 -06:00
|
|
|
#include <rtl/ustring.h>
|
|
|
|
|
2008-01-10 06:07:16 -06:00
|
|
|
#ifndef SC_SCMATRIX_HXX
|
|
|
|
#include "scmatrix.hxx"
|
|
|
|
#endif
|
|
|
|
|
2002-11-19 15:08:22 -06:00
|
|
|
#include <hash_map>
|
|
|
|
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
class String;
|
|
|
|
class SfxObjectShell;
|
|
|
|
class ScUnoAddInFuncData;
|
|
|
|
class ScMatrix;
|
|
|
|
class ScFuncDesc;
|
|
|
|
|
|
|
|
|
2007-09-27 07:50:56 -05:00
|
|
|
typedef ::std::hash_map< String, const ScUnoAddInFuncData*, ScStringHashCode, ::std::equal_to< String > > ScAddInHashMap;
|
2002-11-19 15:08:22 -06:00
|
|
|
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
enum ScAddInArgumentType
|
|
|
|
{
|
|
|
|
SC_ADDINARG_NONE, // -
|
|
|
|
SC_ADDINARG_INTEGER, // long
|
|
|
|
SC_ADDINARG_DOUBLE, // double
|
|
|
|
SC_ADDINARG_STRING, // string
|
|
|
|
SC_ADDINARG_INTEGER_ARRAY, // sequence<sequence<long>>
|
|
|
|
SC_ADDINARG_DOUBLE_ARRAY, // sequence<sequence<double>>
|
|
|
|
SC_ADDINARG_STRING_ARRAY, // sequence<sequence<string>>
|
|
|
|
SC_ADDINARG_MIXED_ARRAY, // sequence<sequence<any>>
|
|
|
|
SC_ADDINARG_VALUE_OR_ARRAY, // any
|
|
|
|
SC_ADDINARG_CELLRANGE, // XCellRange
|
|
|
|
SC_ADDINARG_CALLER, // XPropertySet
|
|
|
|
SC_ADDINARG_VARARGS // sequence<any>
|
|
|
|
};
|
|
|
|
|
2004-03-08 04:39:55 -06:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct ScAddInArgDesc
|
|
|
|
{
|
2006-08-04 06:10:52 -05:00
|
|
|
String aInternalName; // used to match configuration and reflection information
|
2004-03-08 04:39:55 -06:00
|
|
|
String aName;
|
|
|
|
String aDescription;
|
|
|
|
ScAddInArgumentType eType;
|
|
|
|
BOOL bOptional;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ScUnoAddInFuncData
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
String aOriginalName; // kept in formula
|
|
|
|
String aLocalName; // for display
|
|
|
|
String aUpperName; // for entering formulas
|
|
|
|
String aUpperLocal; // for entering formulas
|
|
|
|
String aDescription;
|
|
|
|
com::sun::star::uno::Reference< com::sun::star::reflection::XIdlMethod> xFunction;
|
|
|
|
com::sun::star::uno::Any aObject;
|
|
|
|
long nArgCount;
|
|
|
|
ScAddInArgDesc* pArgDescs;
|
|
|
|
long nCallerPos;
|
|
|
|
USHORT nCategory;
|
|
|
|
USHORT nHelpId;
|
|
|
|
mutable com::sun::star::uno::Sequence< com::sun::star::sheet::LocalizedName> aCompNames;
|
|
|
|
mutable BOOL bCompInitialized;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScUnoAddInFuncData( const String& rNam, const String& rLoc,
|
|
|
|
const String& rDesc,
|
|
|
|
USHORT nCat, USHORT nHelp,
|
|
|
|
const com::sun::star::uno::Reference<
|
|
|
|
com::sun::star::reflection::XIdlMethod>& rFunc,
|
|
|
|
const com::sun::star::uno::Any& rO,
|
|
|
|
long nAC, const ScAddInArgDesc* pAD,
|
|
|
|
long nCP );
|
|
|
|
~ScUnoAddInFuncData();
|
|
|
|
|
|
|
|
const String& GetOriginalName() const { return aOriginalName; }
|
|
|
|
const String& GetLocalName() const { return aLocalName; }
|
|
|
|
const String& GetUpperName() const { return aUpperName; }
|
|
|
|
const String& GetUpperLocal() const { return aUpperLocal; }
|
|
|
|
const com::sun::star::uno::Reference< com::sun::star::reflection::XIdlMethod>& GetFunction() const
|
|
|
|
{ return xFunction; }
|
|
|
|
const com::sun::star::uno::Any& GetObject() const { return aObject; }
|
|
|
|
long GetArgumentCount() const { return nArgCount; }
|
|
|
|
const ScAddInArgDesc* GetArguments() const { return pArgDescs; }
|
|
|
|
long GetCallerPos() const { return nCallerPos; }
|
|
|
|
const String& GetDescription() const { return aDescription; }
|
|
|
|
USHORT GetCategory() const { return nCategory; }
|
|
|
|
USHORT GetHelpId() const { return nHelpId; }
|
|
|
|
|
|
|
|
const com::sun::star::uno::Sequence< com::sun::star::sheet::LocalizedName>& GetCompNames() const;
|
2008-01-10 06:07:16 -06:00
|
|
|
BOOL GetExcelName( LanguageType eDestLang, String& rRetExcelName ) const;
|
2006-08-04 06:10:52 -05:00
|
|
|
|
|
|
|
void SetFunction( const com::sun::star::uno::Reference< com::sun::star::reflection::XIdlMethod>& rNewFunc,
|
|
|
|
const com::sun::star::uno::Any& rNewObj );
|
|
|
|
void SetArguments( long nNewCount, const ScAddInArgDesc* pNewDescs );
|
|
|
|
void SetCallerPos( long nNewPos );
|
|
|
|
void SetCompNames( const com::sun::star::uno::Sequence< com::sun::star::sheet::LocalizedName>& rNew );
|
2004-03-08 04:39:55 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
class ScUnoAddInCollection
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
long nFuncCount;
|
|
|
|
ScUnoAddInFuncData** ppFuncData;
|
2002-11-19 15:08:22 -06:00
|
|
|
ScAddInHashMap* pExactHashMap; // exact internal name
|
|
|
|
ScAddInHashMap* pNameHashMap; // internal name upper
|
|
|
|
ScAddInHashMap* pLocalHashMap; // localized name upper
|
2000-09-18 11:07:07 -05:00
|
|
|
BOOL bInitialized;
|
|
|
|
|
|
|
|
void Initialize();
|
2006-08-04 06:10:52 -05:00
|
|
|
void ReadConfiguration();
|
2000-09-18 11:07:07 -05:00
|
|
|
void ReadFromAddIn( const com::sun::star::uno::Reference<
|
|
|
|
com::sun::star::uno::XInterface>& xInterface );
|
2006-08-04 06:10:52 -05:00
|
|
|
void UpdateFromAddIn( const com::sun::star::uno::Reference<
|
|
|
|
com::sun::star::uno::XInterface>& xInterface,
|
|
|
|
const String& rServiceName );
|
|
|
|
void LoadComponent( const ScUnoAddInFuncData& rFuncData );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
ScUnoAddInCollection();
|
|
|
|
~ScUnoAddInCollection();
|
|
|
|
|
2002-11-21 09:17:20 -06:00
|
|
|
/// User enetered name. rUpperName MUST already be upper case!
|
|
|
|
String FindFunction( const String& rUpperName, BOOL bLocalFirst );
|
2006-08-04 06:10:52 -05:00
|
|
|
|
|
|
|
// rName is the exact Name.
|
|
|
|
// Only if bComplete is set, the function reference and argument types
|
|
|
|
// are initialized (component may have to be loaded).
|
|
|
|
const ScUnoAddInFuncData* GetFuncData( const String& rName, bool bComplete = false );
|
|
|
|
|
2008-01-10 06:07:16 -06:00
|
|
|
/** For enumeration in ScCompiler::OpCodeMap::getAvailableMappings().
|
|
|
|
@param nIndex
|
|
|
|
0 <= nIndex < GetFuncCount()
|
|
|
|
*/
|
|
|
|
const ScUnoAddInFuncData* GetFuncData( long nIndex );
|
|
|
|
|
2006-08-04 06:10:52 -05:00
|
|
|
void Clear();
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
void LocalizeString( String& rName ); // modify rName - input: exact name
|
|
|
|
|
|
|
|
long GetFuncCount();
|
|
|
|
BOOL FillFunctionDesc( long nFunc, ScFuncDesc& rDesc );
|
2001-02-13 07:38:15 -06:00
|
|
|
|
2006-08-04 06:10:52 -05:00
|
|
|
static BOOL FillFunctionDescFromData( const ScUnoAddInFuncData& rFuncData, ScFuncDesc& rDesc );
|
|
|
|
|
2001-02-13 07:38:15 -06:00
|
|
|
BOOL GetExcelName( const String& rCalcName, LanguageType eDestLang, String& rRetExcelName );
|
|
|
|
BOOL GetCalcName( const String& rExcelName, String& rRetCalcName );
|
|
|
|
// both leave rRet... unchanged, if no matching name is found
|
2000-09-18 11:07:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ScUnoAddInCall
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
const ScUnoAddInFuncData* pFuncData;
|
|
|
|
com::sun::star::uno::Sequence<com::sun::star::uno::Any> aArgs;
|
|
|
|
com::sun::star::uno::Sequence<com::sun::star::uno::Any> aVarArg;
|
|
|
|
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> xCaller;
|
|
|
|
BOOL bValidCount;
|
|
|
|
// result:
|
|
|
|
USHORT nErrCode;
|
|
|
|
BOOL bHasString;
|
|
|
|
double fValue;
|
|
|
|
String aString;
|
2008-01-10 06:07:16 -06:00
|
|
|
ScMatrixRef xMatrix;
|
2000-09-18 11:07:07 -05:00
|
|
|
com::sun::star::uno::Reference<com::sun::star::sheet::XVolatileResult> xVarRes;
|
|
|
|
|
|
|
|
void ExecuteCallWithArgs(
|
|
|
|
com::sun::star::uno::Sequence<com::sun::star::uno::Any>& rCallArgs);
|
|
|
|
|
|
|
|
public:
|
|
|
|
// exact name
|
|
|
|
ScUnoAddInCall( ScUnoAddInCollection& rColl, const String& rName,
|
|
|
|
long nParamCount );
|
|
|
|
~ScUnoAddInCall();
|
|
|
|
|
|
|
|
BOOL NeedsCaller() const;
|
|
|
|
void SetCaller( const com::sun::star::uno::Reference<
|
|
|
|
com::sun::star::uno::XInterface>& rInterface );
|
|
|
|
void SetCallerFromObjectShell( SfxObjectShell* pSh );
|
|
|
|
|
|
|
|
BOOL ValidParamCount();
|
|
|
|
ScAddInArgumentType GetArgType( long nPos );
|
|
|
|
void SetParam( long nPos, const com::sun::star::uno::Any& rValue );
|
|
|
|
|
|
|
|
void ExecuteCall();
|
|
|
|
|
|
|
|
void SetResult( const com::sun::star::uno::Any& rNewRes );
|
|
|
|
|
|
|
|
USHORT GetErrCode() const { return nErrCode; }
|
|
|
|
BOOL HasString() const { return bHasString; }
|
2008-01-10 06:07:16 -06:00
|
|
|
BOOL HasMatrix() const { return ( xMatrix.Is() ); }
|
2000-09-18 11:07:07 -05:00
|
|
|
BOOL HasVarRes() const { return ( xVarRes.is() ); }
|
|
|
|
double GetValue() const { return fValue; }
|
|
|
|
const String& GetString() const { return aString; }
|
2008-01-10 06:07:16 -06:00
|
|
|
ScMatrixRef GetMatrix() const { return xMatrix; }
|
2000-09-18 11:07:07 -05:00
|
|
|
com::sun::star::uno::Reference<com::sun::star::sheet::XVolatileResult>
|
|
|
|
GetVarRes() const { return xVarRes; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|