/************************************************************************ ** ** @file tablewindow.h ** @author Roman Telezhynskyi ** @date November 15, 2013 ** ** @brief ** @copyright ** This source code is part of the Valentine project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2013-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 TABLEWINDOW_H #define TABLEWINDOW_H #include #include #include "../../libs/vlayout/vlayoutdetail.h" #include "../../libs/vlayout/vbank.h" namespace Ui { class TableWindow; } class QGraphicsScene; class QGraphicsRectItem; class QPrinter; /** * @brief TableWindow class layout window. */ class TableWindow : public QMainWindow { Q_OBJECT public: explicit TableWindow(QWidget *parent = nullptr); ~TableWindow(); public slots: void ModelChosen(QVector listDetails, const QString &fileName, const QString &description); void Layout(); void StopTable(); void SaveLayout(); void ShowPaper(int index); void PrintPreview(); void Print (QPrinter *printer); void LayoutPrint(); void PrintToPdf(); signals: /** @brief closed emit if window is closing. */ void closed(); protected: void closeEvent(QCloseEvent *event); void moveToCenter(); void showEvent ( QShowEvent * event ); private: Q_DISABLE_COPY(TableWindow) /** @brief ui keeps information about user interface */ Ui::TableWindow* ui; /** @brief listDetails list of details. */ QVector listDetails; QList papers; QList shadows; QList scenes; QList > details; /** @brief fileName keep name of pattern file. */ QString fileName; /** @brief description pattern description */ QString description; QGraphicsScene* tempScene; void SvgFile(const QString &name, int i)const; void PngFile(const QString &name, int i)const; void PdfFile(const QString &name, int i)const; void EpsFile(const QString &name, int i)const; void PsFile(const QString &name, int i)const; void PdfToPs(const QStringList ¶ms)const; void ObjFile(const QString &name, int i)const; QVector AllSheets(); void ClearLayout(); void CreateShadows(); void CreateScenes(); void PrepareSceneList(); QIcon ScenePreview(int i) const; QMap InitFormates() const; void EnableActions(bool enable); void ToolBarStyle(QToolBar *bar); void ReadSettings(); void ToolBarStyles(); }; #endif // TABLEWINDOW_H