QElectroTech 0.100.0-dev
Loading...
Searching...
No Matches
aboutqetdialog.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 ABOUTQETDIALOG_H
19#define ABOUTQETDIALOG_H
20
21#include <QDialog>
22
23class QLabel;
24
25namespace Ui {
26 class AboutQETDialog;
27}
28
32class AboutQETDialog : public QDialog
33{
34 Q_OBJECT
35
36 public:
37 explicit AboutQETDialog(QWidget *parent = nullptr);
39
40 private:
41 Ui::AboutQETDialog *ui;
42 void setAbout();
43 void setAuthors();
44 void setTranslators();
45 void setContributors();
46 void setVersion();
47 void setAnnexProject();
48 void setLibraries();
49 void setLicence();
50 void setLoginfo();
51 void addAuthor(
52 QLabel *label,
53 const QString &name,
54 const QString &email,
55 const QString &work);
56 void addLibrary(QLabel *label,
57 const QString &name,
58 const QString &link);
59
60private slots:
61 void on_m_log_comboBox_currentTextChanged(const QString &arg1);
62};
63
64#endif // ABOUTQETDIALOG_H
The AboutQETDialog class.
Definition aboutqetdialog.h:33
~AboutQETDialog()
AboutQETDialog::~AboutQETDialog.
Definition aboutqetdialog.cpp:51
void setAbout()
AboutQETDialog::setAbout.
Definition aboutqetdialog.cpp:59
void setTranslators()
AboutQETDialog::setTranslators.
Definition aboutqetdialog.cpp:104
void addLibrary(QLabel *label, const QString &name, const QString &link)
AboutQETDialog::addLibrary.
Definition aboutqetdialog.cpp:248
void setLibraries()
AboutQETDialog::setLibraries.
Definition aboutqetdialog.cpp:190
void setVersion()
AboutQETDialog::setVersion.
Definition aboutqetdialog.cpp:166
void on_m_log_comboBox_currentTextChanged(const QString &arg1)
Definition aboutqetdialog.cpp:259
void setContributors()
AboutQETDialog::setContributors.
Definition aboutqetdialog.cpp:141
Ui::AboutQETDialog * ui
Definition aboutqetdialog.h:41
void setLoginfo()
AboutQETDialog::setLoginfo fills the m_log_comboBox with log files.
Definition aboutqetdialog.cpp:209
void setAuthors()
AboutQETDialog::setAuthors.
Definition aboutqetdialog.cpp:85
void setLicence()
AboutQETDialog::setLicence.
Definition aboutqetdialog.cpp:200
void setAnnexProject()
Definition aboutqetdialog.cpp:174
void addAuthor(QLabel *label, const QString &name, const QString &email, const QString &work)
AboutQETDialog::addAuthor Adds a person to the list of authors.
Definition aboutqetdialog.cpp:231
Definition autonumberingdockwidget.h:26