/************************************************************************ ** ** @file dialoglayoutsettings.h ** @author Roman Telezhynskyi ** @date 13 1, 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) 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 DIALOGLAYOUTSETTINGS_H #define DIALOGLAYOUTSETTINGS_H #include #include #include "vabstractlayoutdialog.h" #include "../vlayout/vbank.h" #include "../ifc/ifcdef.h" namespace Ui { class DialogLayoutSettings; } class VLayoutGenerator; class DialogLayoutSettings : public VAbstractLayoutDialog { Q_OBJECT public: explicit DialogLayoutSettings(VLayoutGenerator *generator, QWidget *parent = nullptr, bool disableSettings = false); virtual ~DialogLayoutSettings(); qreal GetPaperHeight() const; void SetPaperHeight(qreal value); qreal GetPaperWidth() const; void SetPaperWidth(qreal value); int GetNestingTime() const; void SetNestingTime(int value); qreal GetEfficiencyCoefficient() const; void SetEfficiencyCoefficient(qreal ration); qreal GetLayoutWidth() const; void SetLayoutWidth(qreal value); QMarginsF GetFields() const; void SetFields(const QMarginsF &value); Cases GetGroup() const; void SetGroup(const Cases &value); bool GetFollowGrainline() const; void SetFollowGrainline(bool state); bool GetAutoCrop() const; void SetAutoCrop(bool autoCrop); bool IsSaveLength() const; void SetSaveLength(bool save); bool IsUnitePages() const; void SetUnitePages(bool save); bool IsStripOptimization() const; void SetStripOptimization(bool save); quint8 GetMultiplier() const; void SetMultiplier(const quint8 &value); bool IsIgnoreAllFields() const; void SetIgnoreAllFields(bool value); bool IsTextAsPaths() const; void SetTextAsPaths(bool value); QString SelectedPrinter() const; void EnableLandscapeOrientation(); //support functions for the command line parser which uses invisible dialog to properly build layout generator bool SelectTemplate(const PaperSizeTemplate& id); static QString MakeHelpTemplateList(); static QString MakeHelpTiledPdfTemplateList(); bool SelectPaperUnit(const QString& units); bool SelectLayoutUnit(const QString& units); qreal LayoutToPixels(qreal value) const; qreal PageToPixels(qreal value) const; static QString MakeGroupsHelp(); protected: virtual void showEvent(QShowEvent *event) override; QSizeF GetTemplateSize(const PaperSizeTemplate &tmpl, const Unit &unit) const; public slots: void DialogAccepted(); private slots: void ConvertPaperSize(); void ConvertLayoutSize(); void TemplateSelected(); void FindTemplate(); void PaperSizeChanged(); void Swap(bool checked); void RestoreDefaults(); void PrinterMargins(); void CorrectMaxFileds(); void IgnoreAllFields(int state); private: Q_DISABLE_COPY(DialogLayoutSettings) bool disableSettings; Ui::DialogLayoutSettings *ui; Unit oldPaperUnit; Unit oldLayoutUnit; VLayoutGenerator *generator; bool isInitialized; void InitPaperUnits(); void InitLayoutUnits(); void InitPrinter(); QSizeF Template(); QMarginsF MinPrinterFields() const; QMarginsF GetDefPrinterFields() const; Unit PaperUnit() const; Unit LayoutUnit() const; void CorrectPaperDecimals(); void CorrectLayoutDecimals(); void MinimumPaperSize(); void MinimumLayoutSize(); void ReadSettings(); void WriteSettings() const; void SheetSize(const QSizeF &size); void SetAdditionalOptions(bool value); }; #endif // DIALOGLAYOUTSETTINGS_H