-
Notifications
You must be signed in to change notification settings - Fork 6
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
5 changed files
with
78 additions
and
0 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,60 @@ | ||
//******************************************************************************* | ||
// ZX Tape Reviver | ||
//----------------- | ||
// | ||
// Author: Leonid Golouz | ||
// E-mail: [email protected] | ||
// YouTube channel: https://www.youtube.com/channel/UCz_ktTqWVekT0P4zVW8Xgcg | ||
// YouTube channel e-mail: [email protected] | ||
// | ||
// Code modification and distribution of any kind is not allowed without direct | ||
// permission of the Author. | ||
//******************************************************************************* | ||
|
||
import QtQuick 2.3 | ||
import QtQuick.Controls 1.3 | ||
import QtQuick.Dialogs 1.3 | ||
import QtQuick.Layouts 1.15 | ||
|
||
Dialog { | ||
id: aboutDialog | ||
|
||
visible: false | ||
title: "About..." | ||
standardButtons: StandardButton.Ok | ||
modality: Qt.WindowModal | ||
width: 300 | ||
height: 140 | ||
|
||
Text { | ||
id: zxTapeReviverText | ||
text: 'ZX Tape Reviver (c) 2020-2021 <a href="mailto:[email protected]">Leonid Golouz</a>' | ||
onLinkActivated: Qt.openUrlExternally(link) | ||
} | ||
Text { | ||
id: skipText | ||
anchors.top: zxTapeReviverText.bottom | ||
text: "" | ||
} | ||
Text { | ||
id: emailText | ||
anchors.top: skipText.bottom | ||
text: 'E-mail: <a href="mailto:[email protected]">[email protected]</a>' | ||
onLinkActivated: Qt.openUrlExternally(link) | ||
} | ||
Text { | ||
id: youtubeText | ||
anchors.top: emailText.bottom | ||
text: 'YouTube channel: <a href="https://www.youtube.com/channel/UCz_ktTqWVekT0P4zVW8Xgcg">Советы компьютерного энтузиаста</a> - <a href="https://www.youtube.com/channel/UCz_ktTqWVekT0P4zVW8Xgcg">Computer Enthusiast Tips</a>' | ||
onLinkActivated: Qt.openUrlExternally(link) | ||
} | ||
Text { | ||
id: skip2Text | ||
anchors.top: youtubeText.bottom | ||
text: "" | ||
} | ||
Text { | ||
anchors.top: skip2Text.bottom | ||
text: "Please click the highlighted links to open" | ||
} | ||
} |
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