blob: bb1ff0c3e1ada84a2bef928848420df40d71ef5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <QObject>
#include "qmt/infrastructure/qmt_global.h"
#include <utils/filepath.h>
#include <QString>
#include <QStringList>
namespace qmt {
class QMT_EXPORT NameController : public QObject
{
private:
explicit NameController(QObject *parent = nullptr);
~NameController() override;
public:
static QString convertFileNameToElementName(const Utils::FilePath &fileName);
static QString convertElementNameToBaseFileName(const QString &elementName);
static Utils::FilePath calcRelativePath(const Utils::FilePath &absoluteFileName,
const Utils::FilePath &anchorPath);
static QString calcElementNameSearchId(const QString &elementName);
static QStringList buildElementsPath(const Utils::FilePath &filePath, bool ignoreLastFilePathPart);
static bool parseClassName(const QString &fullClassName, QString *umlNamespace,
QString *className, QStringList *templateParameters);
};
} // namespace qmt
|