CurvePointInspectorFactory.hpp
1 #pragma once
2 #include <Inspector/InspectorWidgetFactoryInterface.hpp>
3 
4 namespace Automation
5 {
7 {
8  SCORE_CONCRETE("c2fc4c5b-641f-41e3-8734-5caf77b27de8")
9 public:
11  : InspectorWidgetFactory{}
12  {
13  }
14 
15  QWidget* make(
16  const InspectedObjects& sourceElements, const score::DocumentContext& doc,
17  QWidget* parent) const override;
18 
19  bool matches(const InspectedObjects& objects) const override;
20 };
21 }
Definition: CurvePointInspectorFactory.hpp:7
QWidget * make(const InspectedObjects &sourceElements, const score::DocumentContext &doc, QWidget *parent) const override
makeWidget Makes a widget for the inspector from an object
Definition: CurvePointInspectorFactory.cpp:13
The InspectorWidgetFactoryInterface class.
Definition: InspectorWidgetFactoryInterface.hpp:32
Namespace related to the Automation process.
Definition: AutomationColors.cpp:8
Definition: ObjectMatches.hpp:6
Definition: DocumentContext.hpp:18