From 6dc652c0d8db40a670fd00ec5737dfbe8b528f1a Mon Sep 17 00:00:00 2001 From: Michael Flaxman Date: Wed, 18 Nov 2020 17:32:29 -0600 Subject: [PATCH] missing file --- multiwallet_gui/about.py | 61 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 multiwallet_gui/about.py 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 = """ +

+ Welcome to Multiwallet +

+

+ 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)