LibrePCB Developers Documentation
outputjoblistwidgetitem.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_OUTPUTJOBLISTWIDGETITEM_H
21#define LIBREPCB_EDITOR_OUTPUTJOBLISTWIDGETITEM_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 OutputJob;
37class Project;
38
39namespace editor {
40
41namespace Ui {
42class OutputJobListWidgetItem;
43}
44
45/*******************************************************************************
46 * Class OutputJobListWidgetItem
47 ******************************************************************************/
48
52class OutputJobListWidgetItem final : public QFrame {
53 Q_OBJECT
54
55public:
56 // Constructors / Destructor
59 explicit OutputJobListWidgetItem(std::shared_ptr<OutputJob> job,
60 QWidget* parent = nullptr) noexcept;
61 ~OutputJobListWidgetItem() noexcept;
62
63 // Getters
64 QString getTitle() const noexcept;
65 std::shared_ptr<OutputJob> getJob() noexcept { return mJob; }
66
67 // General Methods
68 void updateJobInfo() noexcept;
69 void setStatusColor(const QColor& color) noexcept;
70
71 // Operator Overloads
73 delete;
74
75signals:
77 void runTriggered(std::shared_ptr<OutputJob> job);
78
79private: // Data
80 std::shared_ptr<OutputJob> mJob;
81 QScopedPointer<Ui::OutputJobListWidgetItem> mUi;
82};
83
84/*******************************************************************************
85 * End of File
86 ******************************************************************************/
87
88} // namespace editor
89} // namespace librepcb
90
91#endif
Base class for all output job types.
Definition: outputjob.h:50
The OutputJobListWidgetItem class.
Definition: outputjoblistwidgetitem.h:52
OutputJobListWidgetItem(const OutputJobListWidgetItem &other)=delete
std::shared_ptr< OutputJob > mJob
Definition: outputjoblistwidgetitem.h:80
void runTriggered(std::shared_ptr< OutputJob > job)
void setStatusColor(const QColor &color) noexcept
Definition: outputjoblistwidgetitem.cpp:107
QScopedPointer< Ui::OutputJobListWidgetItem > mUi
Definition: outputjoblistwidgetitem.h:81
void updateJobInfo() noexcept
Definition: outputjoblistwidgetitem.cpp:92
std::shared_ptr< OutputJob > getJob() noexcept
Definition: outputjoblistwidgetitem.h:65
QString getTitle() const noexcept
Definition: outputjoblistwidgetitem.cpp:84
Definition: occmodel.cpp:77