12#include "../MetaInstruments/Laser.h"
24 class LaserControlData;
34 bool AllowResize() const noexcept override final {
return false; }
36 const auto GetUI() const noexcept {
return ui.get(); }
42 std::unique_ptr<Ui::LaserControl>
ui;
94 virtual const char*
GetParamClassTag() const noexcept
override {
return "LaserControlParams"; }
123 constexpr static auto Name() noexcept {
return "Laser Control"; }
124 constexpr static auto Category() noexcept {
return "I/O"; }
133 std::chrono::milliseconds
GetMainLoopDelay() const override final {
return std::chrono::milliseconds(50); }
138 void ResetImpl(dispatch_tag<QModuleBase>)
override final;
140 std::unique_ptr<DynExp::QModuleWidget>
MakeUIWidget() override final;
144 void OnInit(
DynExp::ModuleInstance* Instance) const override final;
145 void OnExit(
DynExp::ModuleInstance* Instance) const override final;
Defines DynExp's core module as an interface between the UI and DynExp objects.
FrequencyUnitType
Supported laser frequency units.
LaserStateType
Possible laser states.
IntensityUnitType
Supported laser intensity units.
LaserControlConfigurator()=default
virtual ~LaserControlConfigurator()=default
virtual DynExp::ParamsBasePtrType MakeParams(DynExp::ItemIDType ID, const DynExp::DynExpCore &Core) const override final
Override to make derived classes call DynExp::MakeParams with the correct configurator type derived f...
double HardwareMaxScanRange
double IntensityInLaserUnitToW(double Value) const
DynExpInstr::LaserData::IntensityUnitType IntensityUnit
double HardwareMinScanRange
bool IsUIInitialized() const noexcept
double HardwareMaxIntensity
double HardwareMinScanRate
void ResetImpl(dispatch_tag< QModuleDataBase >) override final
double FrequencyInLaserUnitToHz(double Value) const
double FrequencyInHzToLaserUnit(double Value) const
double IntensityInWToLaserUnit(double Value) const
void SetUIInitialized() noexcept
DynExpInstr::LaserData::FrequencyUnitType FrequencyUnit
double HardwareMaxFrequency
DynExpInstr::LaserData::LaserStateType LaserState
double HardwareModeHopFreeTuningRange
virtual ~LaserControlData()=default
virtual void ResetImpl(dispatch_tag< LaserControlData >)
double HardwareMinIntensity
double HardwareMaxScanRate
double HardwareMinFrequency
DynExp::LinkedObjectWrapperContainer< DynExpInstr::Laser > Laser
virtual const char * GetParamClassTag() const noexcept override
This function is intended to be overridden once in each derived class returning the name of the respe...
virtual ~LaserControlParams()=default
Param< DynExp::ObjectLink< DynExpInstr::Laser > > Laser
LaserControlParams(DynExp::ItemIDType ID, const DynExp::DynExpCore &Core)
void ConfigureParamsImpl(dispatch_tag< QModuleParamsBase >) override final
std::chrono::milliseconds GetMainLoopDelay() const override final
Specifies in which time intervals the module's event queue runs to handle pending events.
void OnScanToggled(DynExp::ModuleInstance *Instance, bool) const
static constexpr auto Name() noexcept
void OnWavelengthValueChanged(DynExp::ModuleInstance *Instance, double Wavelength) const
static constexpr auto Category() noexcept
void OnIntensityValueChanged(DynExp::ModuleInstance *Instance, double Intensity) const
std::unique_ptr< DynExp::QModuleWidget > MakeUIWidget() override final
Used by InitUI() as a factory function for the module's user interface widget. Create the widget here...
virtual std::string GetCategory() const override
Returns the category of this Object type.
void OnInit(DynExp::ModuleInstance *Instance) const override final
This event is triggered right before the module thread starts. Override it to lock instruments this m...
virtual ~LaserControl()=default
void UpdateUIChild(const ModuleBase::ModuleDataGetterType &ModuleDataGetter) override final
void OnScanRangeValueChanged(DynExp::ModuleInstance *Instance, double ScanRange) const
void OnScanRateValueChanged(DynExp::ModuleInstance *Instance, double ScanRate) const
LaserControl(const std::thread::id OwnerThreadID, DynExp::ParamsBasePtrType &&Params)
void OnExit(DynExp::ModuleInstance *Instance) const override final
This event is triggered right before the module thread terminates (not due to an exception,...
size_t NumFailedUpdateAttempts
virtual std::string GetName() const override
Returns the name of this Object type.
void ResetImpl(dispatch_tag< QModuleBase >) override final
Util::DynExpErrorCodes::DynExpErrorCodes ModuleMainLoop(DynExp::ModuleInstance &Instance) override final
Module main loop. The function is executed periodically by the module thread. Also refer to GetMainLo...
void OnFrequencyValueChanged(DynExp::ModuleInstance *Instance, double Frequency) const
void OnEnableToggled(DynExp::ModuleInstance *Instance, bool) const
DynExp's core class acts as the interface between the user interface and DynExp's internal data like ...
This class holds a pointer (LinkedObjectWrapperPointer) to a LinkedObjectWrapper. Intances of this cl...
Util::CallableMemberWrapper< ModuleBase, ModuleDataTypeSyncPtrType(ModuleBase::*)(const std::chrono::milliseconds)> ModuleDataGetterType
Invoking an instance of this alias is supposed to call ModuleBase::GetModuleData() of the instance th...
ModuleBase(const std::thread::id OwnerThreadID, ParamsBasePtrType &&Params)
Constructs a ModuleBase instance.
Refer to ParamsBase::dispatch_tag.
Defines data for a thread belonging to a ModuleBase instance. Refer to RunnableInstance.
const std::thread::id OwnerThreadID
Thread id of the thread which has constructed (and owns) this Object instance.
const ParamsBasePtrType Params
Pointer to the parameter class instance belonging to this Object instance.
const auto & GetCore() const noexcept
Returns a reference to DynExp's core.
const ItemIDType ID
ID of the Object this parameter class instance belongs to.
const DynExpCore & Core
Reference to DynExp's core.
Tag for function dispatching mechanism within this class used when derived classes are not intended t...
Base class for modules with a Qt-based user interface. Derive from this class to implement modules wi...
QModuleBase(const std::thread::id OwnerThreadID, DynExp::ParamsBasePtrType &&Params)
Constructs a QModuleBase instance.
Configurator class for QModuleBase.
Data class for QModuleBase.
Parameter class for QModuleBase.
QModuleParamsBase(ItemIDType ID, const DynExpCore &Core)
Constructs the parameters for a QModuleBase instance.
Pointer to lock a class derived from ISynchronizedPointerLockable for synchronizing between threads....
DynExp's module namespace contains the implementation of DynExp modules which extend DynExp's core fu...
constexpr auto Instrument
DynExp's main namespace contains the implementation of DynExp including classes to manage resources (...
std::unique_ptr< ParamsBase > ParamsBasePtrType
Alias for a pointer to the parameter system base class ParamsBase.
size_t ItemIDType
ID type of objects/items managed by DynExp.
DynExpErrorCodes
DynExp's error codes
Accumulates include statements to provide a precompiled header.