QElectroTech 0.100.0-dev
Loading...
Searching...
No Matches
configsaveloaderwidget.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 CONFIGSAVELOADERWIDGET_H
19#define CONFIGSAVELOADERWIDGET_H
20
21#include <QGroupBox>
22
23namespace Ui {
25}
26
35class ConfigSaveLoaderWidget : public QGroupBox
36{
37 Q_OBJECT
38
39 public:
40 explicit ConfigSaveLoaderWidget(QWidget *parent = nullptr);
42
43 QString selectedText() const;
44 QString text()const;
45 void addItem(QString text);
46
47 signals:
50
51 private slots:
54
55 private:
56 Ui::ConfigSaveLoaderWidget *ui;
57};
58
59#endif // CONFIGSAVELOADERWIDGET_H
The ConfigSaveLoaderWidget class This group box provide 4 widget: A combo box with the available conf...
Definition configsaveloaderwidget.h:36
void addItem(QString text)
Definition configsaveloaderwidget.cpp:43
void on_m_load_pb_clicked()
Definition configsaveloaderwidget.cpp:47
Ui::ConfigSaveLoaderWidget * ui
Definition configsaveloaderwidget.h:56
QString text() const
Definition configsaveloaderwidget.cpp:38
void on_m_save_pb_clicked()
Definition configsaveloaderwidget.cpp:52
~ConfigSaveLoaderWidget()
Definition configsaveloaderwidget.cpp:28
QString selectedText() const
Definition configsaveloaderwidget.cpp:33
Definition autonumberingdockwidget.h:26