mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-14 20:33:05 +02:00
124 lines
3.4 KiB
C++
124 lines
3.4 KiB
C++
/*
|
|
Copyright 2006-2021 The QElectroTech Team
|
|
This file is part of QElectroTech.
|
|
|
|
QElectroTech 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
QElectroTech 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 QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef CONFIG_PAGES_H
|
|
#define CONFIG_PAGES_H
|
|
#include "configpage.h"
|
|
#include "../projectpropertiesdialog.h"
|
|
#include "../titleblockpropertieswidget.h"
|
|
|
|
#include <QDialog>
|
|
#include <QtWidgets>
|
|
class BorderPropertiesWidget;
|
|
class ConductorPropertiesWidget;
|
|
class TitleBlockPropertiesWidget;
|
|
class ExportPropertiesWidget;
|
|
class ReportPropertieWidget;
|
|
class XRefPropertiesWidget;
|
|
class QETProject;
|
|
class TitleBlockProperties;
|
|
|
|
/**
|
|
@brief The NewDiagramPage class
|
|
This configuration page enables users to define the properties of new
|
|
diagrams to come.
|
|
*/
|
|
class NewDiagramPage : public ConfigPage {
|
|
Q_OBJECT
|
|
// constructors, destructor
|
|
public:
|
|
NewDiagramPage(QETProject *project = nullptr,
|
|
QWidget * = nullptr,
|
|
ProjectPropertiesDialog *teste = nullptr);
|
|
~NewDiagramPage() override;
|
|
private:
|
|
NewDiagramPage(const NewDiagramPage &);
|
|
public slots:
|
|
void changeToAutoFolioTab();
|
|
void setFolioAutonum(QString);
|
|
void saveCurrentTbp();
|
|
void loadSavedTbp();
|
|
|
|
|
|
// methods
|
|
public:
|
|
void applyConf() override;
|
|
QString title() const override;
|
|
QIcon icon() const override;
|
|
|
|
// attributes
|
|
private:
|
|
ProjectPropertiesDialog *ppd_;
|
|
QETProject *m_project; ///< Project to edit propertie
|
|
BorderPropertiesWidget *bpw; ///< Widget to edit default diagram dimensions
|
|
TitleBlockPropertiesWidget *ipw; ///< Widget to edit default title block properties
|
|
ConductorPropertiesWidget *m_cpw; ///< Widget to edit default conductor properties
|
|
ReportPropertieWidget *rpw; ///< Widget to edit default report label
|
|
XRefPropertiesWidget *xrefpw; ///< Widget to edit default xref properties
|
|
TitleBlockProperties savedTbp; ///< Used to save current TBP and retrieve later
|
|
|
|
};
|
|
|
|
/**
|
|
@brief The ExportConfigPage class
|
|
This configuration page enables users to set default export options.
|
|
*/
|
|
class ExportConfigPage : public ConfigPage {
|
|
Q_OBJECT
|
|
// constructors, destructor
|
|
public:
|
|
ExportConfigPage(QWidget * = nullptr);
|
|
~ExportConfigPage() override;
|
|
private:
|
|
ExportConfigPage(const ExportConfigPage &);
|
|
|
|
// methods
|
|
public:
|
|
void applyConf() override;
|
|
QString title() const override;
|
|
QIcon icon() const override;
|
|
|
|
// attributes
|
|
public:
|
|
ExportPropertiesWidget *epw;
|
|
};
|
|
|
|
/**
|
|
@brief The PrintConfigPage class
|
|
This configuration page enables users to set default printing options.
|
|
*/
|
|
class PrintConfigPage : public ConfigPage {
|
|
Q_OBJECT
|
|
// constructors, destructor
|
|
public:
|
|
PrintConfigPage(QWidget * = nullptr);
|
|
~PrintConfigPage() override;
|
|
private:
|
|
PrintConfigPage(const PrintConfigPage &);
|
|
|
|
// methods
|
|
public:
|
|
void applyConf() override;
|
|
QString title() const override;
|
|
QIcon icon() const override;
|
|
|
|
// attributes
|
|
public:
|
|
ExportPropertiesWidget *epw;
|
|
};
|
|
#endif
|