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_NORMS_H
21 #define LIBREPCB_NORMS_H
22 
23 /*******************************************************************************
24  *  Includes
25  ******************************************************************************/
26 #include <QtCore>
27 
28 /*******************************************************************************
29  *  Namespace / Forward Declarations
30  ******************************************************************************/
31 namespace librepcb {
32 
33 /*******************************************************************************
34  *  List of norms
35  ******************************************************************************/
36 
37 /**
38  * @brief Get a list of available "built-in" norms
39  *
40  * These norms are used e.g. in the library editor and workspace/project
41  * settings dialogs.
42  *
43  * @return List of norms
44  */
getAvailableNorms()45 inline QStringList getAvailableNorms() noexcept {
46   return QStringList{"IEC 60617", "IEEE 315"};
47 }
48 
getNormIcon(const QString & norm)49 inline QIcon getNormIcon(const QString& norm) noexcept {
50   return QIcon(
51       QString(":/img/norm/%1.png").arg(norm.toLower().replace(" ", "_")));
52 }
53 
54 /*******************************************************************************
55  *  End of File
56  ******************************************************************************/
57 
58 }  // namespace librepcb
59 
60 #endif  // LIBREPCB_NORMS_H
61