TypeComboBox.hpp
1 #pragma once
2 #include <State/Value.hpp>
3 
4 #include <QComboBox>
5 
6 #include <score_lib_state_export.h>
7 
8 #include <verdigris>
9 
10 namespace State
11 {
12 class SCORE_LIB_STATE_EXPORT TypeComboBox final : public QComboBox
13 {
14  W_OBJECT(TypeComboBox)
15 public:
16  TypeComboBox(QWidget* parent);
17  virtual ~TypeComboBox();
18 
19  ossia::val_type get() const;
20  void set(ossia::val_type t);
21 
22 public:
23  void changed(ossia::val_type arg_1) E_SIGNAL(SCORE_LIB_STATE_EXPORT, changed, arg_1)
24 };
25 }
Definition: TypeComboBox.hpp:13
Utilities for OSSIA data structures.
Definition: DeviceInterface.hpp:33