mirror of
https://github.com/LorenEteval/Furious.git
synced 2026-09-26 16:58:17 +03:00
87 lines
2.5 KiB
Python
87 lines
2.5 KiB
Python
# Copyright (C) 2024–present Loren Eteval & contributors <loren.eteval@proton.me>
|
||
#
|
||
# This file is part of Furious.
|
||
#
|
||
# This program is free software: you can redistribute it and/or modify
|
||
# it under the terms of the GNU General Public License as published by
|
||
# the Free Software Foundation, either version 3 of the License, or
|
||
# (at your option) any later version.
|
||
#
|
||
# This program is distributed in the hope that it will be useful,
|
||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
# GNU General Public License for more details.
|
||
#
|
||
# You should have received a copy of the GNU General Public License
|
||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
|
||
from __future__ import annotations
|
||
|
||
from Furious.Interface import *
|
||
from Furious.PyFramework import *
|
||
from Furious.QtFramework import *
|
||
from Furious.QtFramework import gettext as _
|
||
from Furious.Utility import *
|
||
|
||
from PySide6 import QtCore
|
||
from PySide6.QtGui import *
|
||
from PySide6.QtWidgets import *
|
||
|
||
import io
|
||
import pyqrcode
|
||
|
||
__all__ = ['QRCodeWindow']
|
||
|
||
|
||
class QRCodeWindow(AppQMainWindow):
|
||
def __init__(self, *args, **kwargs):
|
||
super().__init__(*args, **kwargs)
|
||
|
||
self.setWindowTitle(_(APPLICATION_NAME))
|
||
self.setFixedSize(640, 640)
|
||
|
||
self.tabWidget = QTabWidget(self)
|
||
self.tabWidget.setTabsClosable(True)
|
||
self.tabWidget.tabCloseRequested.connect(self.handleTabCloseRequested)
|
||
|
||
self.setCentralWidget(self.tabWidget)
|
||
|
||
def tabCount(self) -> int:
|
||
return self.tabWidget.count()
|
||
|
||
def initTabByIndex(self, indexes):
|
||
self.tabWidget.clear()
|
||
|
||
for index in indexes:
|
||
qrdata = io.BytesIO()
|
||
|
||
config = AS_UserServers()[index]
|
||
|
||
try:
|
||
uri = config.toURI()
|
||
except Exception:
|
||
# Any non-exit exceptions
|
||
|
||
uri = ''
|
||
|
||
if uri:
|
||
qrcode = pyqrcode.create(uri)
|
||
qrcode.png(qrdata, scale=5)
|
||
|
||
pixmap = QPixmap()
|
||
pixmap.loadFromData(qrdata.getvalue(), 'PNG')
|
||
|
||
widget = QLabel(parent=self.tabWidget)
|
||
widget.setPixmap(pixmap)
|
||
|
||
self.tabWidget.addTab(
|
||
widget, f'{index + 1} - ' + config.getExtras('remark')
|
||
)
|
||
|
||
@QtCore.Slot(int)
|
||
def handleTabCloseRequested(self, index):
|
||
self.tabWidget.removeTab(index)
|
||
|
||
if self.tabWidget.count() == 0:
|
||
self.close()
|