valentina/src/libs/vwidgets/vabstractmainwindow.h

96 lines
3 KiB
C
Raw Normal View History

/************************************************************************
**
** @file
** @author Valentina Zhuravska <zhuravska19(at)gmail.com>
** @date 19 7, 2016
**
** @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) 2016 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 VABSTRACTMAINWINDOW_H
#define VABSTRACTMAINWINDOW_H
#include <QMainWindow>
#include <QMetaObject>
#include <QObject>
#include <QString>
2023-07-15 14:24:25 +02:00
#if QT_VERSION < QT_VERSION_CHECK(5, 13, 0)
#include "../vmisc/defglobal.h"
#endif
2017-09-28 20:20:32 +02:00
struct VFinalMeasurement;
2021-09-25 11:57:15 +02:00
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wsuggest-final-types")
2021-09-25 16:18:33 +02:00
QT_WARNING_DISABLE_GCC("-Wsuggest-final-methods")
2021-09-25 11:57:15 +02:00
class VAbstractMainWindow : public QMainWindow
{
2022-08-12 17:50:13 +02:00
Q_OBJECT // NOLINT
2023-07-13 16:49:20 +02:00
public:
explicit VAbstractMainWindow(QWidget *parent = nullptr);
2023-07-13 16:49:20 +02:00
~VAbstractMainWindow() override = default;
public slots:
virtual void ShowToolTip(const QString &toolTip);
virtual void UpdateVisibilityGroups();
virtual void UpdateDetailsList();
virtual void ZoomFitBestCurrent();
protected slots:
void WindowsLocale();
void ExportDataToCSV();
protected:
2021-09-14 18:47:41 +02:00
unsigned m_curFileFormatVersion;
QString m_curFileFormatVersionStr;
2023-07-13 16:49:20 +02:00
enum
{
MaxRecentFiles = 5
};
QVector<QAction *> m_recentFileActs{QVector<QAction *>(MaxRecentFiles)};
QAction *m_separatorAct{nullptr};
2023-05-03 13:07:02 +02:00
auto ContinueFormatRewrite(const QString &currentFormatVersion, const QString &maxFormatVersion) -> bool;
2020-10-25 14:25:57 +01:00
virtual void ToolBarStyle(QToolBar *bar) const;
2023-05-03 13:07:02 +02:00
auto CSVFilePath() -> QString;
virtual void ExportToCSVData(const QString &fileName, bool withHeader, int mib, const QChar &separator);
2023-05-03 13:07:02 +02:00
virtual auto RecentFileList() const -> QStringList = 0;
void UpdateRecentFileActions();
2023-05-03 13:07:02 +02:00
static auto CheckFilePermissions(const QString &path, QWidget *messageBoxParent = nullptr) -> bool;
2021-05-21 17:08:37 +02:00
2023-05-03 13:07:02 +02:00
auto IgnoreLocking(int error, const QString &path, bool guiMode) -> bool;
2021-05-21 16:17:22 +02:00
private:
2022-08-12 17:50:13 +02:00
Q_DISABLE_COPY_MOVE(VAbstractMainWindow) // NOLINT
};
2021-09-25 11:57:15 +02:00
QT_WARNING_POP
#endif // VABSTRACTMAINWINDOW_H