valentina/src/libs/vmisc/testvapplication.h

93 lines
3 KiB
C
Raw Normal View History

/************************************************************************
**
** @file
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 30 9, 2017
**
** @brief
** @copyright
** This source code is part of the Valentina project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2017 Valentina project
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
**
** Valentina is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** Valentina is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#ifndef TESTVAPPLICATION_H
#define TESTVAPPLICATION_H
#include "../vmisc/compatibility.h"
2023-06-08 12:20:20 +02:00
#include "../vmisc/vcommonsettings.h"
#include "projectversion.h"
#include "vabstractvalapplication.h"
class VTestSettings : public VCommonSettings
{
2022-08-12 17:50:13 +02:00
Q_OBJECT // NOLINT
2023-06-08 12:20:20 +02:00
public:
VTestSettings(Format format, Scope scope, const QString &organization, const QString &application = QString(),
QObject *parent = nullptr)
2023-06-08 12:20:20 +02:00
: VCommonSettings(format, scope, organization, application, parent)
{
REGISTER_META_TYPE_STREAM_OPERATORS(QMarginsF);
}
};
class TestVApplication final : public VAbstractValApplication
{
2022-08-12 17:50:13 +02:00
Q_OBJECT // NOLINT
2023-06-08 12:20:20 +02:00
public:
2023-06-08 12:20:20 +02:00
TestVApplication(int &argc, char **argv)
: VAbstractValApplication(argc, argv),
m_trVars(nullptr)
{
setApplicationName("ValentinaTest");
setOrganizationName(VER_COMPANYNAME_STR);
TestVApplication::OpenSettings();
}
2022-08-22 15:36:01 +02:00
virtual ~TestVApplication() = default;
2023-05-03 13:07:02 +02:00
virtual auto TrVars() -> const VTranslateVars * override { return m_trVars; }
virtual void OpenSettings() override
{
settings = new VTestSettings(QSettings::IniFormat, QSettings::UserScope, QCoreApplication::organizationName(),
QCoreApplication::applicationName(), this);
2023-06-22 17:30:43 +02:00
connect(settings, &VTestSettings::SVGFontsPathChanged, this, &TestVApplication::SVGFontsPathChanged);
}
2023-05-03 13:07:02 +02:00
virtual auto IsAppInGUIMode() const -> bool override { return false; }
2023-06-08 12:20:20 +02:00
virtual void InitTrVars() override {}
2023-06-08 12:20:20 +02:00
void SetTrVars(VTranslateVars *trVars) { m_trVars = trVars; }
2023-05-03 13:07:02 +02:00
static auto VApp() -> TestVApplication * { return static_cast<TestVApplication *>(QCoreApplication::instance()); }
2021-02-06 14:52:21 +01:00
protected slots:
2023-06-08 12:20:20 +02:00
virtual void AboutToQuit() override {}
private:
2022-08-12 17:50:13 +02:00
Q_DISABLE_COPY_MOVE(TestVApplication) // NOLINT
VTranslateVars *m_trVars;
};
#endif // TESTVAPPLICATION_H