LibrePCB Developers Documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
interactivehtmlbomoutputjobwidget.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_INTERACTIVEHTMLBOMOUTPUTJOBWIDGET_H
21#define LIBREPCB_EDITOR_INTERACTIVEHTMLBOMOUTPUTJOBWIDGET_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 InteractiveHtmlBomOutputJob;
37class Project;
38
39namespace editor {
40
41namespace Ui {
42class InteractiveHtmlBomOutputJobWidget;
43}
44
45/*******************************************************************************
46 * Class InteractiveHtmlBomOutputJobWidget
47 ******************************************************************************/
48
52class InteractiveHtmlBomOutputJobWidget final : public QWidget {
53 Q_OBJECT
54
55public:
56 // Constructors / Destructor
59 const InteractiveHtmlBomOutputJobWidget& other) = delete;
61 Project& project, std::shared_ptr<InteractiveHtmlBomOutputJob> job,
62 QWidget* parent = nullptr) noexcept;
64
65 // Operator Overloads
67 const InteractiveHtmlBomOutputJobWidget& rhs) = delete;
68
69private: // Methods
70 void applyBoards(bool checked = true) noexcept;
71 void applyVariants(bool checked = true) noexcept;
72
73private: // Data
77};
78
79/*******************************************************************************
80 * End of File
81 ******************************************************************************/
82
83} // namespace editor
84} // namespace librepcb
85
86#endif
Interactive HTML BOM output job.
Definition interactivehtmlbomoutputjob.h:46
The Project class represents a whole (opened) project with all its content.
Definition project.h:71
The InteractiveHtmlBomOutputJobWidget class.
Definition interactivehtmlbomoutputjobwidget.h:52
InteractiveHtmlBomOutputJobWidget(const InteractiveHtmlBomOutputJobWidget &other)=delete
Project & mProject
Definition interactivehtmlbomoutputjobwidget.h:74
QScopedPointer< Ui::InteractiveHtmlBomOutputJobWidget > mUi
Definition interactivehtmlbomoutputjobwidget.h:76
std::shared_ptr< InteractiveHtmlBomOutputJob > mJob
Definition interactivehtmlbomoutputjobwidget.h:75
void applyBoards(bool checked=true) noexcept
Definition interactivehtmlbomoutputjobwidget.cpp:159
void applyVariants(bool checked=true) noexcept
Definition interactivehtmlbomoutputjobwidget.cpp:185
Definition occmodel.cpp:77
Definition uuid.h:186