AutomationStateInspector.hpp
1 #pragma once
2 
3 #include <Inspector/InspectorWidgetBase.hpp>
4 
5 #include <QLabel>
6 
7 namespace Automation
8 {
9 class ProcessState;
10 // TODO this should not be some random widget but a
11 // ProcessStateInspectorDelegate
13 {
14 public:
15  explicit StateInspectorWidget(
16  const ProcessState& object, const score::DocumentContext& context,
17  QWidget* parent = nullptr);
18 
19 private:
20  void on_stateChanged();
21 
22  const ProcessState& m_state;
23  QLabel* m_label{};
24 };
25 }
Definition: AutomationState.hpp:20
Definition: AutomationStateInspector.hpp:13
The InspectorWidgetBase class Set the global structuration for an inspected element.
Definition: InspectorWidgetBase.hpp:37
Namespace related to the Automation process.
Definition: AutomationColors.cpp:8
Definition: DocumentContext.hpp:18