-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgtpy_pythonplotitem.h
More file actions
40 lines (33 loc) · 924 Bytes
/
gtpy_pythonplotitem.h
File metadata and controls
40 lines (33 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* GTlab - Gas Turbine laboratory
* Source File: gtpy_pythonplotitem.h
*
* SPDX-License-Identifier: Apache-2.0
* SPDX-FileCopyrightText: 2024 German Aerospace Center (DLR)
*
* Created on: 13.08.2019
* Author: Stanislaus Reitenbach (DLR AT-TWK)
*/
#ifndef GTPY_PYTHONPLOTITEM_H
#define GTPY_PYTHONPLOTITEM_H
#include "gt_abstractchartprovider.h"
/**
* @brief The GtpyPythonPlotItem class
*/
class GtpyPythonPlotItem : public GtPostTemplateItem
{
Q_OBJECT
public:
/**
* @brief Constructor.
*/
Q_INVOKABLE GtpyPythonPlotItem();
/**
* @brief Overloaded function to create user interface of post plot item.
* @param dm Post datamodel item.
* @param parent Parent widget.
* @return Post widget.
*/
GtAbstractPostWidget* createUI(GtPostTemplateItem* dm,
QWidget* parent) Q_DECL_OVERRIDE;
};
#endif // GTPY_PYTHONPLOTITEM_H