QElectroTech 0.100.0-dev
Loading...
Searching...
No Matches
autonumberingmanagementw.h
Go to the documentation of this file.
1/*
2 Copyright 2006-2024 The QElectroTech Team
3 This file is part of QElectroTech.
4
5 QElectroTech is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 2 of the License, or
8 (at your option) any later version.
9
10 QElectroTech is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
17*/
18#ifndef AUTONUMBERINGMANAGEMENTW_H
19#define AUTONUMBERINGMANAGEMENTW_H
20
21#include <QWidget>
22
23class NumPartEditorW;
24class QAbstractButton;
25class QETProject;
26
27namespace Ui {
29}
30
31class AutoNumberingManagementW : public QWidget
32{
33 Q_OBJECT
34
35 //METHODS
36 public:
37 explicit AutoNumberingManagementW(QETProject *project, QWidget *parent = nullptr);
39 Ui::AutoNumberingManagementW *ui;
40 void setProjectContext ();
42 QString elementFormula();
43
44 //SIGNALS
45 signals:
47
48 //SLOTS
49 private slots:
55 void on_buttonBox_clicked(QAbstractButton *);
56 void applyEnable (bool = true);
57
58 //ATTRIBUTES
59 private:
61};
62
63#endif // AUTONUMBERINGMANAGEMENTW_H
Definition autonumberingmanagementw.h:32
void on_m_from_folios_cb_currentIndexChanged(int)
AutoNumberingManagementW::on_m_from_folios_cb_currentIndexChanged Set To Folios Combobox.
Definition autonumberingmanagementw.cpp:142
void on_m_apply_folios_rb_clicked()
AutoNumberingManagementW::on_m_apply_folios_rb_clicked Set From Folios Combobox.
Definition autonumberingmanagementw.cpp:112
void on_m_status_cb_currentIndexChanged(int)
AutoNumberingManagementW::on_m_status_cb_currentIndexChanged Load Default Status Options.
Definition autonumberingmanagementw.cpp:79
void applyEnable(bool=true)
AutoNumberingManagementW::applyEnable enable/disable the apply button.
Definition autonumberingmanagementw.cpp:234
QETProject * project_
Definition autonumberingmanagementw.h:60
void setProjectContext()
AutoNumberingManagementW::setProjectContext Add Default Project Status.
Definition autonumberingmanagementw.cpp:67
void on_m_to_folios_cb_currentIndexChanged(int)
AutoNumberingManagementW::on_m_to_folios_cb_currentIndexChanged Set selected folios Line Edit content...
Definition autonumberingmanagementw.cpp:174
void on_m_apply_project_rb_clicked()
AutoNumberingManagementW::on_m_apply_project_rb_clicked Disable folio widget.
Definition autonumberingmanagementw.cpp:190
Ui::AutoNumberingManagementW * ui
Definition autonumberingmanagementw.h:39
void on_buttonBox_clicked(QAbstractButton *)
AutoNumberingManagementW::on_buttonBox_clicked Action on buttonBox clicked.
Definition autonumberingmanagementw.cpp:202
~AutoNumberingManagementW() override
AutoNumberingManagementW::~AutoNumberingManagementW Destructor.
Definition autonumberingmanagementw.cpp:58
The NumPartEditorW class This class represent a single part num widget. By this widget,...
Definition numparteditorw.h:37
Definition qetproject.h:62
Definition autonumberingdockwidget.h:26