You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
4.2 KiB
117 lines
4.2 KiB
//Copyright 2020 Siemens Digital Industries Software
|
|
//==================================================
|
|
//Copyright $2020.
|
|
//Siemens Product Lifecycle Management Software Inc.
|
|
//All Rights Reserved.
|
|
//==================================================
|
|
//Copyright 2020 Siemens Digital Industries Software
|
|
|
|
/*==================================================================================================
|
|
File description:
|
|
This file contains the declaration for the Business Object, Fnd0UserSettingsLovDelegate
|
|
Filename: Fnd0UserSettingsLovDelegate.hxx
|
|
Module: lov
|
|
@BMIDE autogenerated
|
|
==================================================================================================*/
|
|
|
|
#ifndef TEAMCENTER__FND0USERSETTINGSLOVDELEGATE_HXX
|
|
#define TEAMCENTER__FND0USERSETTINGSLOVDELEGATE_HXX
|
|
|
|
#include <common/tc_deprecation_macros.h>
|
|
#include <lov/Fnd0UserSettingsLov.hxx>
|
|
|
|
#include <lov/liblov_exports.h>
|
|
|
|
namespace Teamcenter
|
|
{
|
|
class Fnd0UserSettingsLovDelegate;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class Fnd0UserSettingsLovImpl;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class Fnd0UserSettingsLov;
|
|
}
|
|
namespace Teamcenter
|
|
{
|
|
class Fnd0UserSettingsLovGenImpl;
|
|
}
|
|
|
|
namespace Teamcenter_alias = ::Teamcenter;
|
|
|
|
|
|
class LOV_API Teamcenter_alias::Fnd0UserSettingsLovDelegate
|
|
{
|
|
public:
|
|
// Method to initialize this Class
|
|
static int initializeClass();
|
|
|
|
// Method to get the Fnd0UserSettingsLovDelegate instance
|
|
static Fnd0UserSettingsLovDelegate& getInstance();
|
|
|
|
// Method to create the Fnd0UserSettingsLovImpl pointer
|
|
static Fnd0UserSettingsLovImpl* createImpl( Fnd0UserSettingsLov& ifObj );
|
|
|
|
// Method to delete the Fnd0UserSettingsLovImpl pointer
|
|
static void deleteImpl( Fnd0UserSettingsLovImpl* impl );
|
|
|
|
|
|
///
|
|
/// Returns List Of Values based on Dynamic LOV definition and user search criteria.
|
|
/// @version Teamcenter 10
|
|
/// @param operationInputTag - Operation Input containing the modified values.
|
|
/// @param propertyName - Name of the selected property.
|
|
/// @param searchString - User entered search string.
|
|
/// @param sortByProp - Property to use for sorting.
|
|
/// @param sortOrder - order for sorting (0=Ascending, 1=Descending).
|
|
/// @param nResults - Number of returned results.
|
|
/// @param results - Returned Values for LOV.
|
|
/// @return - Zero (0) if everything is alright otherwise the error code.
|
|
///
|
|
int fnd0askLOVValuesBase(const Fnd0UserSettingsLov &ifObj, const tag_t operationInputTag, const std::string *propertyName, const std::string *searchString, const char *sortByProp, const int sortOrder, int *nResults, tag_t **results ) const;
|
|
|
|
|
|
///
|
|
/// Returns true if the input value is valid for the Dynamic LOV.
|
|
/// @version Teamcenter 10
|
|
/// @param operationInputTag - Operation Input containing the modified values.
|
|
/// @param propertyName - Name of the selected property.
|
|
/// @param value - Value to validate.
|
|
/// @param verdict - true if value is valid.
|
|
/// @return - Zero (0) if everything is alright otherwise the error code.
|
|
///
|
|
int fnd0isValueValidBase(const Fnd0UserSettingsLov &ifObj, const tag_t operationInputTag, const std::string *propertyName, const std::string *value, bool *verdict ) const;
|
|
|
|
|
|
///
|
|
/// Returns true if the input value is valid for the Dynamic LOV.
|
|
/// @version Teamcenter 10
|
|
/// @param operationInput - Operation Input containing the modified values.
|
|
/// @param propertyName - Name of the selected property.
|
|
/// @param value - Value to validate.
|
|
/// @param verdict - true if value is valid.
|
|
/// @return - Zero (0) if everything is alright otherwise the error code.
|
|
///
|
|
int fnd0isValueValidBase(const Fnd0UserSettingsLov &ifObj, const tag_t operationInput, const std::string *propertyName, const tag_t value, bool *verdict ) const;
|
|
|
|
|
|
|
|
protected:
|
|
// Pointer to the instance
|
|
static Fnd0UserSettingsLovDelegate* m_pInstance;
|
|
|
|
Fnd0UserSettingsLovDelegate();
|
|
virtual ~Fnd0UserSettingsLovDelegate();
|
|
static void setInstance( Fnd0UserSettingsLovDelegate* instance );
|
|
|
|
|
|
private:
|
|
friend class ::Teamcenter::Fnd0UserSettingsLovGenImpl;
|
|
|
|
};
|
|
|
|
#include <lov/liblov_undef.h>
|
|
#endif // TEAMCENTER__FND0USERSETTINGSLOVDELEGATE_HXX
|