25#include <QRegularExpression>
28#include "GlobalObject.h"
29#include "units/ByteSize.h"
58 static Librarian* create(QQmlEngine* , QJSEngine* )
177 [[nodiscard]] Q_INVOKABLE
static QString
import(
Librarian::Library library,
const QString& fileName) ;
229 QRegularExpression specialChars {QStringLiteral(
"[^a-zA-Z0-9]")};
230 QHash<QString, QString> simplifySpecialChars_cache;
static Q_INVOKABLE Librarian * librarian()
Pointer to appplication-wide static librarian instance.
QString simplifySpecialChars(const QString &string)
Simplifies string by transforming and removing special characters.
static Q_INVOKABLE QString directory(Librarian::Library library)
Name of the directory containing the given.
static Q_INVOKABLE QString getStringFromRessource(const QString &name)
Exposes string stored in QRessource to QML.
static Q_INVOKABLE QString fullPath(Librarian::Library library, const QString &baseName)
Full path of a library entry.
QStringList permissiveFilter(const QStringList &input, const QString &filter)
Filters a QStringList in a fuzzy way.
static Q_INVOKABLE void rename(Librarian::Library library, const QString &oldName, const QString &newName)
Renames an entry in a library.
static Q_INVOKABLE QObject * get(Librarian::Library library, const QString &baseName)
Constructs an object from library entry.
Librarian(QObject *parent=nullptr)
Default constructor.
static Q_INVOKABLE void remove(Librarian::Library library, const QString &baseName)
Removes an entry from a library.
Q_INVOKABLE QStringList entries(Librarian::Library library, const QString &filter=QString())
Lists all entries in the library whose name contains the string 'filter'.
@ Aircraft
Aircraft library.
@ Routes
Flight route library.
static Q_INVOKABLE Units::ByteSize getStringHashFromRessource(const QString &name)
Exposes the hash of string stored in QRessource to QML.
static Q_INVOKABLE bool exists(Librarian::Library library, const QString &baseName)
Check if an entry with the given name exists in the library.
Convenience class for size_t.