-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathintro.py
32 lines (28 loc) · 1.17 KB
/
intro.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
__copyright__ = '2018, BookFusion <[email protected]>'
__license__ = 'GPL v3'
from PyQt5.Qt import QWidget, QVBoxLayout, QLabel
class IntroWidget(QWidget):
def __init__(self, gui):
QWidget.__init__(self, gui)
self.l = QVBoxLayout()
self.l.setContentsMargins(0, 0, 0, 0)
self.l.addWidget(QLabel('''
<h2 style="text-align: center">
Your Own eBooks in the Cloud and on Your Devices<br>
Anytime, Anywhere & on Any Device
</h2>
<p>
BookFusion is an eBook platform that allows you to manage, upload, read,<br>
share, organization bookmarks, and sync all your books.
</p>
<ul>
<li>Organize your eBook library</li>
<li>Sync reading progress, bookmarks, highlights and notes<br>across all devices</li>
<li>Read both offline and online</li>
<li>Supports popular eBook formats</li>
<li>Web and Native Android & iOS apps</li>
<li>Many more features</li>
</ul>
<p></p>
'''))
self.setLayout(self.l)