mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
from PyQt5.QtGui import QIcon
|
|
from PyQt5.QtWidgets import QDialog, QVBoxLayout, QFormLayout, QGroupBox, \
|
|
QLineEdit, QLabel
|
|
|
|
|
|
class InfoDialog(QDialog):
|
|
|
|
def __init__(self, app: dict, app_icon: QIcon, locale_keys: dict):
|
|
super(InfoDialog, self).__init__()
|
|
self.setWindowTitle(app['name'])
|
|
self.setWindowIcon(app_icon)
|
|
layout = QVBoxLayout()
|
|
self.setLayout(layout)
|
|
|
|
gbox_info_layout = QFormLayout()
|
|
gbox_info = QGroupBox()
|
|
gbox_info.setLayout(gbox_info_layout)
|
|
layout.addWidget(gbox_info)
|
|
|
|
for attr in sorted(app.keys()):
|
|
|
|
if attr != 'name':
|
|
text = QLineEdit()
|
|
text.setText(app[attr])
|
|
text.setStyleSheet("width: 400px")
|
|
text.setReadOnly(True)
|
|
text.setCursorPosition(0)
|
|
|
|
label = QLabel("{}: ".format(locale_keys.get('flatpak.info.' + attr, attr)).capitalize())
|
|
label.setStyleSheet("font-weight: bold")
|
|
|
|
gbox_info_layout.addRow(label, text)
|
|
|
|
self.adjustSize()
|