valentina/src/libs/vwidgets/vabstractmainwindow.h

94 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 <qcompilerdetection.h>
#include <QMainWindow>
#include <QMetaObject>
#include <QObject>
#include <QString>
2022-08-12 17:50:13 +02:00
#include "../vmisc/defglobal.h"
2022-08-17 14:51:35 +02:00
#if QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
#include "../vmisc/diagnostic.h"
#endif // QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
2022-08-12 17:50:13 +02:00
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
public:
explicit VAbstractMainWindow(QWidget *parent = nullptr);
2022-08-22 15:36:01 +02:00
virtual ~VAbstractMainWindow() = 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;
enum { MaxRecentFiles = 5 };
QVector<QAction *> m_recentFileActs{QVector<QAction *>(MaxRecentFiles)};
QAction *m_separatorAct{nullptr};
bool ContinueFormatRewrite(const QString &currentFormatVersion, const QString &maxFormatVersion);
2020-10-25 14:25:57 +01:00
virtual void ToolBarStyle(QToolBar *bar) const;
QString CSVFilePath();
virtual void ExportToCSVData(const QString &fileName, bool withHeader, int mib, const QChar &separator);
virtual QStringList RecentFileList() const =0;
void UpdateRecentFileActions();
2021-05-21 17:08:37 +02:00
static bool CheckFilePermissions(const QString &path, QWidget *messageBoxParent=nullptr);
bool IgnoreLocking(int error, const QString &path, bool guiMode);
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