-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
511 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#include "aboutbox.h" | ||
#include "ui_aboutbox.h" | ||
|
||
AboutBox::AboutBox(QWidget *parent) : | ||
QDialog(parent), | ||
ui(new Ui::AboutBox) | ||
{ | ||
ui->setupUi(this); | ||
} | ||
|
||
AboutBox::~AboutBox() | ||
{ | ||
delete ui; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef ABOUTBOX_H | ||
#define ABOUTBOX_H | ||
|
||
#include <QDialog> | ||
|
||
namespace Ui { | ||
class AboutBox; | ||
} | ||
|
||
class AboutBox : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit AboutBox(QWidget *parent = 0); | ||
~AboutBox(); | ||
|
||
private: | ||
Ui::AboutBox *ui; | ||
}; | ||
|
||
#endif // ABOUTBOX_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>AboutBox</class> | ||
<widget class="QDialog" name="AboutBox"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>459</width> | ||
<height>349</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>About ...</string> | ||
</property> | ||
<layout class="QGridLayout" name="gridLayout" rowstretch="0,1,0" columnstretch="0,1"> | ||
<item row="0" column="0"> | ||
<widget class="QLabel" name="label_3"> | ||
<property name="text"> | ||
<string/> | ||
</property> | ||
<property name="pixmap"> | ||
<pixmap resource="slitscangenerator.qrc">:/icons/icons/info.png</pixmap> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="0" column="1"> | ||
<widget class="QLabel" name="label_2"> | ||
<property name="font"> | ||
<font> | ||
<pointsize>28</pointsize> | ||
<weight>75</weight> | ||
<bold>true</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>SlitScanGenerator</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="2" column="0" colspan="2"> | ||
<widget class="QDialogButtonBox" name="buttonBox"> | ||
<property name="orientation"> | ||
<enum>Qt::Horizontal</enum> | ||
</property> | ||
<property name="standardButtons"> | ||
<set>QDialogButtonBox::Close</set> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="1" column="0" colspan="2"> | ||
<widget class="QLabel" name="label"> | ||
<property name="text"> | ||
<string><html><head/><body><p>This softwrae generates SlitScan photography images from videos, i.e. XT/YT-slices.</p><p><span style=" font-weight:600;">(c) 2016 by Jan W. Krieger (jan@jkrieger.de)</span></p><p><span style=" font-weight:600;">It is licensed under the terms of the </span><a href="https://www.gnu.org/licenses/gpl-3.0.html"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">GPL 3.0</span></a><span style=" font-weight:600;">, or above.</span></p><p>The source code if this application is available from:</p><p align="center"><a href="https://github.com/jkriege2/SlitScanGenerator"><span style=" text-decoration: underline; color:#0000ff;">https://github.com/jkriege2/SlitScanGenerator</span></a></p><p>It uses these libraries for its GUI, image processing and reading videos:</p><p align="center">Qt (<a href="https://www.qt.io/"><span style=" text-decoration: underline; color:#0000ff;">https://www.qt.io/</span></a>) -- CImg (<a href="http://cimg.eu/"><span style=" text-decoration: underline; color:#0000ff;">http://cimg.eu/</span></a>) -- FFMPEG (<a href="https://ffmpeg.org/"><span style=" text-decoration: underline; color:#0000ff;">https://ffmpeg.org/</span></a>)</p><p align="center"><br/></p></body></html></string> | ||
</property> | ||
<property name="textInteractionFlags"> | ||
<set>Qt::TextBrowserInteraction</set> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources> | ||
<include location="slitscangenerator.qrc"/> | ||
</resources> | ||
<connections> | ||
<connection> | ||
<sender>buttonBox</sender> | ||
<signal>accepted()</signal> | ||
<receiver>AboutBox</receiver> | ||
<slot>accept()</slot> | ||
<hints> | ||
<hint type="sourcelabel"> | ||
<x>227</x> | ||
<y>365</y> | ||
</hint> | ||
<hint type="destinationlabel"> | ||
<x>157</x> | ||
<y>274</y> | ||
</hint> | ||
</hints> | ||
</connection> | ||
<connection> | ||
<sender>buttonBox</sender> | ||
<signal>rejected()</signal> | ||
<receiver>AboutBox</receiver> | ||
<slot>reject()</slot> | ||
<hints> | ||
<hint type="sourcelabel"> | ||
<x>295</x> | ||
<y>371</y> | ||
</hint> | ||
<hint type="destinationlabel"> | ||
<x>286</x> | ||
<y>274</y> | ||
</hint> | ||
</hints> | ||
</connection> | ||
</connections> | ||
</ui> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.