LibrePCB Developers Documentation
board3doutputjobwidget.h
Go to the documentation of this file.
1/*
2 * LibrePCB - Professional EDA for everyone!
3 * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4 * https://librepcb.org/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBREPCB_EDITOR_BOARD3DOUTPUTJOBWIDGET_H
21#define LIBREPCB_EDITOR_BOARD3DOUTPUTJOBWIDGET_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
26#include <QtCore>
27#include <QtWidgets>
28
29#include <memory>
30
31/*******************************************************************************
32 * Namespace / Forward Declarations
33 ******************************************************************************/
34namespace librepcb {
35
36class Board3DOutputJob;
37class Project;
38
39namespace editor {
40
41namespace Ui {
42class Board3DOutputJobWidget;
43}
44
45/*******************************************************************************
46 * Class Board3DOutputJobWidget
47 ******************************************************************************/
48
52class Board3DOutputJobWidget final : public QWidget {
53 Q_OBJECT
54
55public:
56 // Constructors / Destructor
59 explicit Board3DOutputJobWidget(Project& project,
60 std::shared_ptr<Board3DOutputJob> job,
61 QWidget* parent = nullptr) noexcept;
62 ~Board3DOutputJobWidget() noexcept;
63
64 // Operator Overloads
65 Board3DOutputJobWidget& operator=(const Board3DOutputJobWidget& rhs) = delete;
66
67private: // Methods
68 void applyBoards(bool checked = true) noexcept;
69 void applyVariants(bool checked = true) noexcept;
70
71private: // Data
73 std::shared_ptr<Board3DOutputJob> mJob;
74 QScopedPointer<Ui::Board3DOutputJobWidget> mUi;
75};
76
77/*******************************************************************************
78 * End of File
79 ******************************************************************************/
80
81} // namespace editor
82} // namespace librepcb
83
84#endif
3D board model output job
Definition: board3doutputjob.h:43
The Project class represents a whole (opened) project with all its content.
Definition: project.h:71
The Board3DOutputJobWidget class.
Definition: board3doutputjobwidget.h:52
std::shared_ptr< Board3DOutputJob > mJob
Definition: board3doutputjobwidget.h:73
Project & mProject
Definition: board3doutputjobwidget.h:72
void applyBoards(bool checked=true) noexcept
Definition: board3doutputjobwidget.cpp:154
void applyVariants(bool checked=true) noexcept
Definition: board3doutputjobwidget.cpp:180
QScopedPointer< Ui::Board3DOutputJobWidget > mUi
Definition: board3doutputjobwidget.h:74
Board3DOutputJobWidget(const Board3DOutputJobWidget &other)=delete
Definition: occmodel.cpp:77