show license information
This commit is contained in:
parent
5bb8402cc8
commit
b0423e5e6a
2 changed files with 31 additions and 12 deletions
|
@ -94,6 +94,27 @@ MainWindow::MainWindow()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
connect(ui_.licenseAction, &QAction::triggered, this, [=]() {
|
||||||
|
QString licenseText(
|
||||||
|
"Copyright © 2018 Martin Brodbeck\n\n"
|
||||||
|
"Hiermit wird unentgeltlich jeder Person, die eine Kopie der Software und der "
|
||||||
|
"zugehörigen Dokumentationen (die \"Software\") erhält, die Erlaubnis erteilt, "
|
||||||
|
"sie uneingeschränkt zu nutzen, inklusive und ohne Ausnahme mit dem Recht, "
|
||||||
|
"sie zu verwenden, zu kopieren, zu verändern, zusammenzufügen, zu "
|
||||||
|
"veröffentlichen, zu verbreiten, und Personen, denen diese Software überlassen "
|
||||||
|
"wird, diese Rechte zu verschaffen, unter den folgenden Bedingungen:\n\n"
|
||||||
|
"Der obige Urheberrechtsvermerk und dieser Erlaubnisvermerk sind in allen "
|
||||||
|
"Kopien oder Teilkopien der Software beizulegen.\n\n"
|
||||||
|
"DIE SOFTWARE WIRD OHNE JEDE AUSDRÜCKLICHE ODER IMPLIZIERTE "
|
||||||
|
"GARANTIE BEREITGESTELLT, EINSCHLIESSLICH DER GARANTIE ZUR BENUTZUNG "
|
||||||
|
"FÜR DEN VORGESEHENEN ODER EINEM BESTIMMTEN ZWECK SOWIE JEGLICHER "
|
||||||
|
"RECHTSVERLETZUNG, JEDOCH NICHT DARAUF BESCHRÄNKT. IN KEINEM FALL "
|
||||||
|
"SIND DIE AUTOREN ODER COPYRIGHTINHABER FÜR JEGLICHEN SCHADEN ODER "
|
||||||
|
"SONSTIGE ANSPRÜCHE HAFTBAR ZU MACHEN, OB INFOLGE DER ERFÜLLUNG "
|
||||||
|
"EINES VERTRAGES, EINES DELIKTES ODER ANDERS IM ZUSAMMENHANG MIT DER "
|
||||||
|
"SOFTWARE ODER SONSTIGER VERWENDUNG DER SOFTWARE ENTSTANDEN.");
|
||||||
|
QMessageBox::information(this, "Lizenzinformation", licenseText);
|
||||||
|
});
|
||||||
connect(ui_.reportAction, &QAction::triggered, this, [=]() { ReportDialog(this).exec(); });
|
connect(ui_.reportAction, &QAction::triggered, this, [=]() { ReportDialog(this).exec(); });
|
||||||
connect(ui_.configAction, &QAction::triggered, this, [=]() {
|
connect(ui_.configAction, &QAction::triggered, this, [=]() {
|
||||||
int result = SettingsDialog(this).exec();
|
int result = SettingsDialog(this).exec();
|
||||||
|
|
|
@ -92,16 +92,7 @@
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
<property name="leftMargin">
|
<property name="margin">
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="topMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="rightMargin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="bottomMargin">
|
|
||||||
<number>0</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
|
@ -388,7 +379,7 @@ drucken</string>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>817</width>
|
<width>817</width>
|
||||||
<height>24</height>
|
<height>29</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QMenu" name="menu_Datei">
|
<widget class="QMenu" name="menu_Datei">
|
||||||
|
@ -423,6 +414,7 @@ drucken</string>
|
||||||
<addaction name="aboutAction"/>
|
<addaction name="aboutAction"/>
|
||||||
<addaction name="aboutQtAction"/>
|
<addaction name="aboutQtAction"/>
|
||||||
<addaction name="openManualAction"/>
|
<addaction name="openManualAction"/>
|
||||||
|
<addaction name="licenseAction"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QMenu" name="menuSales">
|
<widget class="QMenu" name="menuSales">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
|
@ -441,7 +433,8 @@ drucken</string>
|
||||||
<action name="actionQuit">
|
<action name="actionQuit">
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
<iconset theme="application-exit">
|
<iconset theme="application-exit">
|
||||||
<normaloff>.</normaloff>.</iconset>
|
<normaloff/>
|
||||||
|
</iconset>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>&Beenden</string>
|
<string>&Beenden</string>
|
||||||
|
@ -507,6 +500,11 @@ drucken</string>
|
||||||
<string>Neu</string>
|
<string>Neu</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="licenseAction">
|
||||||
|
<property name="text">
|
||||||
|
<string>Lizenz</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources/>
|
||||||
<connections/>
|
<connections/>
|
||||||
|
|
Loading…
Reference in a new issue