##// END OF EJS Templates
Adds plugin column to variable widget...
Adds plugin column to variable widget To retrieve the "plugin" field, we add to the metadata of the variable the name of the data source root item

File last commit:

r533:aa387fab3c40
r551:b0a7e1650d9f
Show More
SqpSettingsDefs.h
22 lines | 661 B | text/x-c | CLexer
Alexandre Leroux
Settings binding (1)...
r466 #ifndef SCIQLOP_SQPSETTINGSDEFS_H
#define SCIQLOP_SQPSETTINGSDEFS_H
#include "CoreGlobal.h"
#include <QString>
// //////////////// //
// General settings //
// //////////////// //
Add toleranceValue method in the SqpSettingsDef class
r533
struct SCIQLOP_CORE_EXPORT SqpSettings {
static double toleranceValue(const QString &key, double defaultValue) noexcept;
};
Alexandre Leroux
Settings binding (1)...
r466 extern SCIQLOP_CORE_EXPORT const QString GENERAL_TOLERANCE_AT_INIT_KEY;
extern SCIQLOP_CORE_EXPORT const double GENERAL_TOLERANCE_AT_INIT_DEFAULT_VALUE;
extern SCIQLOP_CORE_EXPORT const QString GENERAL_TOLERANCE_AT_UPDATE_KEY;
extern SCIQLOP_CORE_EXPORT const double GENERAL_TOLERANCE_AT_UPDATE_DEFAULT_VALUE;
#endif // SCIQLOP_SQPSETTINGSDEFS_H