diff --git a/multiwallet_gui/about.py b/multiwallet_gui/about.py new file mode 100644 index 0000000..7eb4f0f --- /dev/null +++ b/multiwallet_gui/about.py @@ -0,0 +1,61 @@ +#! /usr/bin/env bash + +from PyQt5.QtCore import Qt +from PyQt5.QtWidgets import ( + QLabel, + QVBoxLayout, + QWidget, +) + +ABOUT_COPY = """ +
+ Multiwallet generates seeds (wallets), validates receive addresses (before getting a payment), and signs transactions (to spend your bitcoin). + It is designed for use on an airgapped/eternally quarantined machine. +
++ Multiwallet is free open-source software with no warranty. + Use at your own risk. +
++ Good: +
+ Bad: +
+ Read more about Multiwallet on GitHub. + Our community Telegram group can be found at https://t.me/multiwallet. +
+""" + + +class AboutTab(QWidget): + TITLE = "About" + HOVER = "Info about Multiwallet GUI" + + def __init__(self): + super().__init__() + + vbox = QVBoxLayout(self) + + self.mainLabel = QLabel(ABOUT_COPY) + self.mainLabel.setWordWrap(True) + + vbox.addWidget(self.mainLabel) + vbox.setAlignment(Qt.AlignTop) + + self.setLayout(vbox)