LibrePCB Developers Documentation
eaglelibraryimportwizard.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_EAGLELIBRARYIMPORTWIZARD_H
21#define LIBREPCB_EDITOR_EAGLELIBRARYIMPORTWIZARD_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 FilePath;
37class Workspace;
38
39namespace editor {
40
41class EagleLibraryImportWizardContext;
42
43namespace Ui {
44class EagleLibraryImportWizard;
45}
46
47/*******************************************************************************
48 * Class EagleLibraryImportWizard
49 ******************************************************************************/
50
54class EagleLibraryImportWizard final : public QWizard {
55 Q_OBJECT
56
57public:
58 // Constructors / Destructor
60 EagleLibraryImportWizard(Workspace& workspace, const FilePath& dstLibFp,
61 QWidget* parent = nullptr) noexcept;
62 ~EagleLibraryImportWizard() noexcept;
63
64 // General Methods
65 void reject() noexcept override;
66
67 // Operator Overloadings
69 delete;
70
71private: // Data
72 QScopedPointer<Ui::EagleLibraryImportWizard> mUi;
74};
75
76/*******************************************************************************
77 * End of File
78 ******************************************************************************/
79
80} // namespace editor
81} // namespace librepcb
82
83#endif
This class represents absolute, well-formatted paths to files or directories.
Definition: filepath.h:129
The Workspace class represents a workspace with all its data (library, projects, settings,...
Definition: workspace.h:54
The EagleLibraryImportWizardContext class.
Definition: eaglelibraryimportwizardcontext.h:52
The EagleLibraryImportWizard class.
Definition: eaglelibraryimportwizard.h:54
std::shared_ptr< EagleLibraryImportWizardContext > mContext
Definition: eaglelibraryimportwizard.h:73
QScopedPointer< Ui::EagleLibraryImportWizard > mUi
Definition: eaglelibraryimportwizard.h:72
EagleLibraryImportWizard(const EagleLibraryImportWizard &other)=delete
void reject() noexcept override
Definition: eaglelibraryimportwizard.cpp:98
Definition: occmodel.cpp:77