LibrePCB Developers Documentation
archiveoutputjobwidget.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_ARCHIVEOUTPUTJOBWIDGET_H
21#define LIBREPCB_EDITOR_ARCHIVEOUTPUTJOBWIDGET_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
27
28#include <QtCore>
29#include <QtWidgets>
30
31#include <memory>
32
33/*******************************************************************************
34 * Namespace / Forward Declarations
35 ******************************************************************************/
36namespace librepcb {
37
38class ArchiveOutputJob;
39class Project;
40
41namespace editor {
42
43namespace Ui {
44class ArchiveOutputJobWidget;
45}
46
47/*******************************************************************************
48 * Class ArchiveOutputJobWidget
49 ******************************************************************************/
50
54class ArchiveOutputJobWidget final : public QWidget {
55 Q_OBJECT
56
57public:
58 // Constructors / Destructor
61 explicit ArchiveOutputJobWidget(Project& project,
62 const OutputJobList& allJobs,
63 std::shared_ptr<ArchiveOutputJob> job,
64 QWidget* parent = nullptr) noexcept;
65 ~ArchiveOutputJobWidget() noexcept;
66
67 // Operator Overloads
68 ArchiveOutputJobWidget& operator=(const ArchiveOutputJobWidget& rhs) = delete;
69
70private: // Methods
71 void applyInputJobs() noexcept;
72
73private: // Data
76 std::shared_ptr<ArchiveOutputJob> mJob;
77 QScopedPointer<Ui::ArchiveOutputJobWidget> mUi;
78};
79
80/*******************************************************************************
81 * End of File
82 ******************************************************************************/
83
84} // namespace editor
85} // namespace librepcb
86
87#endif
File archiving (e.g. to ZIP) output job.
Definition: archiveoutputjob.h:45
The Project class represents a whole (opened) project with all its content.
Definition: project.h:71
The ArchiveOutputJobWidget class.
Definition: archiveoutputjobwidget.h:54
ArchiveOutputJobWidget(const ArchiveOutputJobWidget &other)=delete
std::shared_ptr< ArchiveOutputJob > mJob
Definition: archiveoutputjobwidget.h:76
Project & mProject
Definition: archiveoutputjobwidget.h:74
void applyInputJobs() noexcept
Definition: archiveoutputjobwidget.cpp:119
QScopedPointer< Ui::ArchiveOutputJobWidget > mUi
Definition: archiveoutputjobwidget.h:77
const OutputJobList & mAllJobs
Definition: archiveoutputjobwidget.h:75
Definition: occmodel.cpp:77