/************************************************************************ ** ** @file mapplication.h ** @author Roman Telezhynskyi ** @date 8 7, 2015 ** ** @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) 2015 Valentina project ** 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 . ** *************************************************************************/ #ifndef MAPPLICATION_H #define MAPPLICATION_H #include "../vpatterndb/vtranslatevars.h" #include "vtapesettings.h" #include "../vmisc/vabstractapplication.h" #include "dialogs/dialogmdatabase.h" class TMainWindow; class QLocalServer; class QCommandLineParser; enum class SocketConnection : bool {Client = false, Server = true}; class MApplication : public VAbstractApplication { Q_OBJECT // NOLINT public: MApplication(int &argc, char **argv); ~MApplication() override; auto notify(QObject * receiver, QEvent * event) -> bool override; auto IsTestMode() const -> bool; auto IsAppInGUIMode() const -> bool override; auto MainWindow() -> TMainWindow *; auto MainWindows() -> QList; auto NewMainWindow() -> TMainWindow *; void InitOptions(); auto TrVars() -> const VTranslateVars * override; void OpenSettings() override; auto TapeSettings() -> VTapeSettings *; void ActivateDarkMode(); static auto diagramsPath() -> QString; void ShowDataBase(); void RetranslateGroups(); void RetranslateTables(); void ParseCommandLine(const SocketConnection &connection, const QStringList &arguments); static auto VApp() -> MApplication *; public slots: void ProcessCMD(); protected: void InitTrVars() override; auto event(QEvent *e) -> bool override; protected slots: void AboutToQuit() override; private slots: void NewLocalSocketConnection(); private: // cppcheck-suppress unknownMacro Q_DISABLE_COPY_MOVE(MApplication) // NOLINT QList > m_mainWindows{}; QLocalServer *m_localServer{nullptr}; VTranslateVars *m_trVars{nullptr}; QPointer m_dataBase{}; bool m_testMode{false}; void Clean(); static void InitParserOptions(QCommandLineParser &parser); void StartLocalServer(const QString &serverName); auto StartWithFiles(QCommandLineParser &parser) -> bool; auto SingleStart(QCommandLineParser &parser) -> bool; static void ParseDimensionAOption(QCommandLineParser &parser, int &dimensionAValue, bool &flagDimensionA); static void ParseDimensionBOption(QCommandLineParser &parser, int &dimensionBValue, bool &flagDimensionB); static void ParseDimensionCOption(QCommandLineParser &parser, int &dimensionCValue, bool &flagDimensionC); static void ParseUnitsOption(QCommandLineParser &parser, Unit &unit , bool &flagUnits); }; //--------------------------------------------------------------------------------------------------------------------- inline auto MApplication::TrVars() -> const VTranslateVars * { return m_trVars; } #endif // MAPPLICATION_H