valentina/src/libs/vmisc/testvapplication.h

95 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
2020-12-24 12:04:56 +01:00
#include "vabstractvalapplication.h"
#include "projectversion.h"
#include "../vmisc/vcommonsettings.h"
#include "../vmisc/compatibility.h"
class VTestSettings : public VCommonSettings
{
2022-08-12 17:50:13 +02:00
Q_OBJECT // NOLINT
public:
VTestSettings(Format format, Scope scope, const QString &organization, const QString &application = QString(),
QObject *parent = nullptr)
: 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
public:
TestVApplication(int &argc, char ** argv)
2020-12-24 12:04:56 +01:00
: 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-05-03 13:07:02 +02:00
virtual auto IsAppInGUIMode() const -> bool override { return false; }
virtual void InitTrVars() override
{}
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:
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