NDEVR
API Documentation
PolylineSliceEditor.h
1/*--------------------------------------------------------------------------------------------
2Copyright (c) 2019, NDEVR LLC
3tyler.parke@ndevr.org
4 __ __ ____ _____ __ __ _______
5 | \ | | | __ \ | ___|\ \ / / | __ \
6 | \ | | | | \ \ | |___ \ \ / / | |__) |
7 | . \| | | |__/ / | |___ \ V / | _ /
8 | |\ |_|_____/__|_____|___\_/____| | \ \
9 |__| \__________________________________| \__\
10
11Subject to the terms of the Enterprise+ Agreement, NDEVR hereby grants
12Licensee a limited, non-exclusive, non-transferable, royalty-free license
13(without the right to sublicense) to use the API solely for the purpose of
14Licensee's internal development efforts to develop applications for which
15the API was provided.
16
17The above copyright notice and this permission notice shall be included in all
18copies or substantial portions of the Software.
19
20THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
21INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
22PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
23FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25DEALINGS IN THE SOFTWARE.
26
27Library: NDEVR
28File: BTHoleDetailsDialog
29Included in API: True
30Author(s): Tyler Parke
31 *-----------------------------------------------------------------------------------------**/
32#pragma once
33#include <NDEVR/Editor.h>
34#include <NDEVR/QTDesignObject.h>
35#include <QWidget>
36
37namespace NDEVR
38{
39 class NDEVRChart;
43 class PolylineSliceEditor : public Editor
44 {
45 public:
46 PolylineSliceEditor(const DynamicPointer<QTDesignObject>& deployment, QWidget* parent = nullptr);
47 ~PolylineSliceEditor();
48 void setSlice(const DynamicPointer<QTDesignObject>& slice);
49 void resizeEvent(QResizeEvent* event) override;
50 QSize sizeHint() const override;
51 void updateValues() override;
52 EditorShowMode showMode() const override;
54 Buffer<QWidget*> printableWidgetOptions() override { return {}; }
55 void updateLayout();
56 private slots:
57 void UpdateShownData();
58 void DataModified();
59 void updateChartTools();
60 private:
61 fltp04 getDefaultMarkerSize() const;
62 fltp04 getDefaultLineSize() const;
63 private:
65 NDEVRChart* m_front_chart;
66 };
67}
The equivelent of std::vector but with a bit more control.
Definition Buffer.hpp:58
Provides a modifiable pointer that has shared ownership of a dynamically allocated object.
Definition Pointer.hpp:356
Editor(QWidget *parent=nullptr)
Constructs an Editor with no design object target.
Default base chart for 2D line or scatter plots within the NDEVR API.
Definition NDEVRChart.h:17
EditorShowMode showMode() const override
Returns the preferred display mode for this editor.
void updateValues() override
Updates the displayed values to reflect the current state of the target object.
Buffer< QWidget * > printableWidgets() override
Returns the widgets that can be printed from this editor.
Buffer< QWidget * > printableWidgetOptions() override
Returns option widgets to configure printing for this editor.
The primary namespace for the NDEVR SDK.
float fltp04
Defines an alias representing a 4 byte floating-point number Bit layout is as follows: -Sign: 1 bit a...
EditorShowMode
Describes how an Editor should be displayed within the application UI.
Definition Editor.h:48