mirror of
https://github.com/onionshare/onionshare.git
synced 2025-08-11 07:40:26 -04:00
Port from PyQt5 to PySide2
This commit is contained in:
parent
5eb2bb6353
commit
decf703cd9
33 changed files with 86 additions and 106 deletions
|
@ -1 +0,0 @@
|
|||
from .__main__ import *
|
|
@ -27,7 +27,7 @@ import signal
|
|||
import json
|
||||
import psutil
|
||||
import getpass
|
||||
from PyQt5 import QtCore, QtWidgets
|
||||
from PySide2 import QtCore, QtWidgets
|
||||
|
||||
from onionshare_cli.common import Common
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.web import Web
|
||||
|
||||
|
|
BIN
desktop/src/onionshare/resources/onionshare-128.png
Normal file
BIN
desktop/src/onionshare/resources/onionshare-128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
desktop/src/onionshare/resources/onionshare-16.png
Normal file
BIN
desktop/src/onionshare/resources/onionshare-16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
BIN
desktop/src/onionshare/resources/onionshare-256.png
Normal file
BIN
desktop/src/onionshare/resources/onionshare-256.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
BIN
desktop/src/onionshare/resources/onionshare-32.png
Normal file
BIN
desktop/src/onionshare/resources/onionshare-32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4 KiB |
BIN
desktop/src/onionshare/resources/onionshare-512.png
Normal file
BIN
desktop/src/onionshare/resources/onionshare-512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
BIN
desktop/src/onionshare/resources/onionshare-64.png
Normal file
BIN
desktop/src/onionshare/resources/onionshare-64.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
import sys
|
||||
import platform
|
||||
import datetime
|
||||
|
@ -41,7 +41,7 @@ class SettingsDialog(QtWidgets.QDialog):
|
|||
Settings dialog.
|
||||
"""
|
||||
|
||||
settings_saved = QtCore.pyqtSignal()
|
||||
settings_saved = QtCore.Signal()
|
||||
|
||||
def __init__(self, common):
|
||||
super(SettingsDialog, self).__init__()
|
||||
|
|
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.common import AutoStopTimer
|
||||
|
||||
|
@ -36,14 +36,14 @@ class Mode(QtWidgets.QWidget):
|
|||
The class that all modes inherit from
|
||||
"""
|
||||
|
||||
start_server_finished = QtCore.pyqtSignal()
|
||||
stop_server_finished = QtCore.pyqtSignal()
|
||||
starting_server_step2 = QtCore.pyqtSignal()
|
||||
starting_server_step3 = QtCore.pyqtSignal()
|
||||
starting_server_error = QtCore.pyqtSignal(str)
|
||||
starting_server_early = QtCore.pyqtSignal()
|
||||
set_server_active = QtCore.pyqtSignal(bool)
|
||||
change_persistent = QtCore.pyqtSignal(int, bool)
|
||||
start_server_finished = QtCore.Signal()
|
||||
stop_server_finished = QtCore.Signal()
|
||||
starting_server_step2 = QtCore.Signal()
|
||||
starting_server_step3 = QtCore.Signal()
|
||||
starting_server_error = QtCore.Signal(str)
|
||||
starting_server_early = QtCore.Signal()
|
||||
set_server_active = QtCore.Signal(bool)
|
||||
change_persistent = QtCore.Signal(int, bool)
|
||||
|
||||
def __init__(self, tab):
|
||||
super(Mode, self).__init__()
|
||||
|
|
|
@ -22,7 +22,7 @@ import os
|
|||
import random
|
||||
import string
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.onion import *
|
||||
from onionshare_cli.common import Common
|
||||
|
@ -39,8 +39,8 @@ class ChatMode(Mode):
|
|||
Parts of the main window UI for sharing files.
|
||||
"""
|
||||
|
||||
success = QtCore.pyqtSignal()
|
||||
error = QtCore.pyqtSignal(str)
|
||||
success = QtCore.Signal()
|
||||
error = QtCore.Signal(str)
|
||||
|
||||
def init(self):
|
||||
"""
|
||||
|
|
|
@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
"""
|
||||
|
||||
import os
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from ... import strings
|
||||
from ...widgets import Alert, AddFileDialog
|
||||
|
@ -104,8 +104,8 @@ class FileList(QtWidgets.QListWidget):
|
|||
The list of files and folders in the GUI.
|
||||
"""
|
||||
|
||||
files_dropped = QtCore.pyqtSignal()
|
||||
files_updated = QtCore.pyqtSignal()
|
||||
files_dropped = QtCore.Signal()
|
||||
files_updated = QtCore.Signal()
|
||||
|
||||
def __init__(self, common, background_image_filename, header_text, parent=None):
|
||||
super(FileList, self).__init__(parent)
|
||||
|
|
|
@ -22,7 +22,7 @@ import time
|
|||
import subprocess
|
||||
import os
|
||||
from datetime import datetime
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from ... import strings
|
||||
from ...widgets import Alert
|
||||
|
|
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets
|
||||
from PySide2 import QtCore, QtWidgets
|
||||
|
||||
from ... import strings
|
||||
|
||||
|
@ -28,7 +28,7 @@ class ModeSettingsWidget(QtWidgets.QWidget):
|
|||
All of the common settings for each mode are in this widget
|
||||
"""
|
||||
|
||||
change_persistent = QtCore.pyqtSignal(int, bool)
|
||||
change_persistent = QtCore.Signal(int, bool)
|
||||
|
||||
def __init__(self, common, tab, mode_settings):
|
||||
super(ModeSettingsWidget, self).__init__()
|
||||
|
|
|
@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
"""
|
||||
|
||||
import os
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.web import Web
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
"""
|
||||
|
||||
import os
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.onion import *
|
||||
from onionshare_cli.common import Common
|
||||
|
@ -427,7 +427,7 @@ class ShareMode(Mode):
|
|||
|
||||
|
||||
class ZipProgressBar(QtWidgets.QProgressBar):
|
||||
update_processed_size_signal = QtCore.pyqtSignal(int)
|
||||
update_processed_size_signal = QtCore.Signal(int)
|
||||
|
||||
def __init__(self, common, total_files_size):
|
||||
super(ZipProgressBar, self).__init__()
|
||||
|
|
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore
|
||||
from PySide2 import QtCore
|
||||
|
||||
|
||||
class CompressThread(QtCore.QThread):
|
||||
|
@ -26,8 +26,8 @@ class CompressThread(QtCore.QThread):
|
|||
Compresses files to be shared
|
||||
"""
|
||||
|
||||
success = QtCore.pyqtSignal()
|
||||
error = QtCore.pyqtSignal(str)
|
||||
success = QtCore.Signal()
|
||||
error = QtCore.Signal(str)
|
||||
|
||||
def __init__(self, mode):
|
||||
super(CompressThread, self).__init__()
|
||||
|
|
|
@ -22,7 +22,7 @@ import os
|
|||
import random
|
||||
import string
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.onion import *
|
||||
from onionshare_cli.common import Common
|
||||
|
@ -41,8 +41,8 @@ class WebsiteMode(Mode):
|
|||
Parts of the main window UI for sharing files.
|
||||
"""
|
||||
|
||||
success = QtCore.pyqtSignal()
|
||||
error = QtCore.pyqtSignal(str)
|
||||
success = QtCore.Signal()
|
||||
error = QtCore.Signal(str)
|
||||
|
||||
def init(self):
|
||||
"""
|
||||
|
|
|
@ -20,8 +20,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
import platform
|
||||
import textwrap
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PyQt5.QtCore import Qt
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
from PySide2.QtCore import Qt
|
||||
|
||||
from .. import strings
|
||||
from ..widgets import Alert
|
||||
|
@ -34,13 +34,13 @@ class ServerStatus(QtWidgets.QWidget):
|
|||
The server status chunk of the GUI.
|
||||
"""
|
||||
|
||||
server_started = QtCore.pyqtSignal()
|
||||
server_started_finished = QtCore.pyqtSignal()
|
||||
server_stopped = QtCore.pyqtSignal()
|
||||
server_canceled = QtCore.pyqtSignal()
|
||||
button_clicked = QtCore.pyqtSignal()
|
||||
url_copied = QtCore.pyqtSignal()
|
||||
hidservauth_copied = QtCore.pyqtSignal()
|
||||
server_started = QtCore.Signal()
|
||||
server_started_finished = QtCore.Signal()
|
||||
server_stopped = QtCore.Signal()
|
||||
server_canceled = QtCore.Signal()
|
||||
button_clicked = QtCore.Signal()
|
||||
url_copied = QtCore.Signal()
|
||||
hidservauth_copied = QtCore.Signal()
|
||||
|
||||
STATUS_STOPPED = 0
|
||||
STATUS_WORKING = 1
|
||||
|
|
|
@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
"""
|
||||
|
||||
import queue
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.onionshare import OnionShare
|
||||
from onionshare_cli.web import Web
|
||||
|
@ -80,9 +80,9 @@ class Tab(QtWidgets.QWidget):
|
|||
A GUI tab, you know, sort of like in a web browser
|
||||
"""
|
||||
|
||||
change_title = QtCore.pyqtSignal(int, str)
|
||||
change_icon = QtCore.pyqtSignal(int, str)
|
||||
change_persistent = QtCore.pyqtSignal(int, bool)
|
||||
change_title = QtCore.Signal(int, str)
|
||||
change_icon = QtCore.Signal(int, str)
|
||||
change_persistent = QtCore.Signal(int, bool)
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
|
|
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.mode_settings import ModeSettings
|
||||
|
||||
|
@ -33,7 +33,7 @@ class TabWidget(QtWidgets.QTabWidget):
|
|||
A custom tab widget, that has a "+" button for adding new tabs
|
||||
"""
|
||||
|
||||
bring_to_front = QtCore.pyqtSignal()
|
||||
bring_to_front = QtCore.Signal()
|
||||
|
||||
def __init__(self, common, system_tray, status_bar):
|
||||
super(TabWidget, self).__init__()
|
||||
|
@ -259,7 +259,7 @@ class TabBar(QtWidgets.QTabBar):
|
|||
A custom tab bar
|
||||
"""
|
||||
|
||||
move_new_tab_button = QtCore.pyqtSignal()
|
||||
move_new_tab_button = QtCore.Signal()
|
||||
|
||||
def __init__(self):
|
||||
super(TabBar, self).__init__()
|
||||
|
|
|
@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
import time
|
||||
import json
|
||||
import os
|
||||
from PyQt5 import QtCore
|
||||
from PySide2 import QtCore
|
||||
|
||||
from onionshare_cli.onion import (
|
||||
TorTooOld,
|
||||
|
@ -44,9 +44,9 @@ class OnionThread(QtCore.QThread):
|
|||
Starts the onion service, and waits for it to finish
|
||||
"""
|
||||
|
||||
success = QtCore.pyqtSignal()
|
||||
success_early = QtCore.pyqtSignal()
|
||||
error = QtCore.pyqtSignal(str)
|
||||
success = QtCore.Signal()
|
||||
success_early = QtCore.Signal()
|
||||
error = QtCore.Signal(str)
|
||||
|
||||
def __init__(self, mode):
|
||||
super(OnionThread, self).__init__()
|
||||
|
@ -114,8 +114,8 @@ class WebThread(QtCore.QThread):
|
|||
Starts the web service
|
||||
"""
|
||||
|
||||
success = QtCore.pyqtSignal()
|
||||
error = QtCore.pyqtSignal(str)
|
||||
success = QtCore.Signal()
|
||||
error = QtCore.Signal(str)
|
||||
|
||||
def __init__(self, mode):
|
||||
super(WebThread, self).__init__()
|
||||
|
@ -133,8 +133,8 @@ class AutoStartTimer(QtCore.QThread):
|
|||
Waits for a prescribed time before allowing a share to start
|
||||
"""
|
||||
|
||||
success = QtCore.pyqtSignal()
|
||||
error = QtCore.pyqtSignal(str)
|
||||
success = QtCore.Signal()
|
||||
error = QtCore.Signal(str)
|
||||
|
||||
def __init__(self, mode, canceled=False):
|
||||
super(AutoStartTimer, self).__init__()
|
||||
|
@ -180,8 +180,8 @@ class EventHandlerThread(QtCore.QThread):
|
|||
{"type": "new_share_tab", "filenames": ["file1", "file2"]}
|
||||
"""
|
||||
|
||||
new_tab = QtCore.pyqtSignal()
|
||||
new_share_tab = QtCore.pyqtSignal(list)
|
||||
new_tab = QtCore.Signal()
|
||||
new_share_tab = QtCore.Signal(list)
|
||||
|
||||
def __init__(self, common):
|
||||
super(EventHandlerThread, self).__init__()
|
||||
|
|
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
|
||||
from onionshare_cli.onion import *
|
||||
|
||||
|
@ -32,7 +32,7 @@ class TorConnectionDialog(QtWidgets.QProgressDialog):
|
|||
Connecting to Tor dialog.
|
||||
"""
|
||||
|
||||
open_settings = QtCore.pyqtSignal()
|
||||
open_settings = QtCore.Signal()
|
||||
|
||||
def __init__(self, common, custom_settings=False):
|
||||
super(TorConnectionDialog, self).__init__(None)
|
||||
|
@ -123,10 +123,10 @@ class TorConnectionDialog(QtWidgets.QProgressDialog):
|
|||
|
||||
|
||||
class TorConnectionThread(QtCore.QThread):
|
||||
tor_status_update = QtCore.pyqtSignal(str, str)
|
||||
connected_to_tor = QtCore.pyqtSignal()
|
||||
canceled_connecting_to_tor = QtCore.pyqtSignal()
|
||||
error_connecting_to_tor = QtCore.pyqtSignal(str)
|
||||
tor_status_update = QtCore.Signal(str, str)
|
||||
connected_to_tor = QtCore.Signal()
|
||||
canceled_connecting_to_tor = QtCore.Signal()
|
||||
error_connecting_to_tor = QtCore.Signal(str)
|
||||
|
||||
def __init__(self, common, settings, dialog):
|
||||
super(TorConnectionThread, self).__init__()
|
||||
|
|
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore
|
||||
from PySide2 import QtCore
|
||||
import datetime, time, socket, re, platform
|
||||
import socks
|
||||
from distutils.version import LooseVersion as Version
|
||||
|
@ -57,10 +57,10 @@ class UpdateChecker(QtCore.QObject):
|
|||
Only check at most once per day, unless force is True.
|
||||
"""
|
||||
|
||||
update_available = QtCore.pyqtSignal(str, str, str)
|
||||
update_not_available = QtCore.pyqtSignal()
|
||||
update_error = QtCore.pyqtSignal()
|
||||
update_invalid_version = QtCore.pyqtSignal(str)
|
||||
update_available = QtCore.Signal(str, str, str)
|
||||
update_not_available = QtCore.Signal()
|
||||
update_error = QtCore.Signal()
|
||||
update_invalid_version = QtCore.Signal(str)
|
||||
|
||||
def __init__(self, common, onion):
|
||||
super(UpdateChecker, self).__init__()
|
||||
|
@ -183,10 +183,10 @@ class UpdateChecker(QtCore.QObject):
|
|||
|
||||
|
||||
class UpdateThread(QtCore.QThread):
|
||||
update_available = QtCore.pyqtSignal(str, str, str)
|
||||
update_not_available = QtCore.pyqtSignal()
|
||||
update_error = QtCore.pyqtSignal()
|
||||
update_invalid_version = QtCore.pyqtSignal(str)
|
||||
update_available = QtCore.Signal(str, str, str)
|
||||
update_not_available = QtCore.Signal()
|
||||
update_error = QtCore.Signal()
|
||||
update_invalid_version = QtCore.Signal(str)
|
||||
|
||||
def __init__(self, common, onion, force=False):
|
||||
super(UpdateThread, self).__init__()
|
||||
|
|
|
@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
from PyQt5 import QtCore, QtWidgets, QtGui
|
||||
from PySide2 import QtCore, QtWidgets, QtGui
|
||||
import qrcode
|
||||
|
||||
from . import strings
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue