de05786c53
- aggiunta gestione unità di misura di interfaccia (mm o inch) - aggiunta ExeGetLanguage e EgtGetLanguage (lua) per avere sigla della lingua utilizzata.
74 lines
2.9 KiB
C
74 lines
2.9 KiB
C
//----------------------------------------------------------------------------
|
|
// EgalTech 2014-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : LUA.h Data : 16.01.15 Versione : 1.6a3
|
|
// Contenuto : Dichiarazioni locali per moduli LUA.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 27.09.14 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EGnLuaMgr.h"
|
|
|
|
//-------------------------- General -----------------------------------------
|
|
bool LuaInstallGeneral( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- UiUnits -----------------------------------------
|
|
bool LuaInstallUiUnits( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeoBase -----------------------------------------
|
|
bool LuaInstallGeoBase( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeomDB ------------------------------------------
|
|
bool LuaInstallGeomDB( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbCreate ---------------------------------------
|
|
bool LuaInstallGdbCreate( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbCreateCurve ----------------------------------
|
|
bool LuaInstallGdbCreateCurve( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbCreateSurf -----------------------------------
|
|
bool LuaInstallGdbCreateSurf( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbModify ---------------------------------------
|
|
bool LuaInstallGdbModify( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbModifyCurve ----------------------------------
|
|
bool LuaInstallGdbModifyCurve( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbModifySurf -----------------------------------
|
|
bool LuaInstallGdbModifySurf( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbPartLayer ------------------------------------
|
|
bool LuaInstallGdbPartLayer( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbObjects --------------------------------------
|
|
bool LuaInstallGdbObjects( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbObjSelection ---------------------------------
|
|
bool LuaInstallGdbObjSelection( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GdbObjAttribs -----------------------------------
|
|
bool LuaInstallGdbObjAttribs( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeoSnap -----------------------------------------
|
|
bool LuaInstallGeoSnap( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- GeoTransform ------------------------------------
|
|
bool LuaInstallGeoTransform( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- MachMgr -----------------------------------------
|
|
bool LuaInstallMachMgr( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Scene -------------------------------------------
|
|
bool LuaInstallScene( LuaMgr& luaMgr) ;
|
|
|
|
//-------------------------- Exchange ----------------------------------------
|
|
bool LuaInstallExchange( LuaMgr& luaMgr) ;
|