3#include "utils/enumclass.h"
9enum class ChannelMode {
33enum class TriggerMode {
42enum class Slope : uint8_t {
50enum InterpolationMode {
51 INTERPOLATION_OFF = 0,
57QString channelModeString(ChannelMode mode);
58QString graphFormatString(GraphFormat format);
59QString couplingString(Coupling coupling);
60QString triggerModeString(TriggerMode mode);
61QString slopeString(Slope slope);
62QString interpolationModeString(InterpolationMode interpolation);
65Q_DECLARE_METATYPE(Dso::TriggerMode)
66Q_DECLARE_METATYPE(Dso::Slope)
67Q_DECLARE_METATYPE(Dso::Coupling)
68Q_DECLARE_METATYPE(Dso::GraphFormat)
69Q_DECLARE_METATYPE(Dso::ChannelMode)
70Q_DECLARE_METATYPE(Dso::InterpolationMode)