toxygen/toxygen/ui/menu.py

1042 lines
45 KiB
Python
Raw Normal View History

from PyQt5 import QtCore, QtGui, QtWidgets
from user_data.settings import *
from contacts.profile import Profile
from util.util import curr_directory, copy
from ui.widgets import CenteredWidget, DataLabel, LineEdit, RubberBandWindow
2016-04-24 12:45:11 +02:00
import pyaudio
from user_data import toxes
import updater.updater as updater
import util.ui as util_ui
2016-03-11 12:37:45 +01:00
class AddContact(CenteredWidget):
2016-02-19 17:04:01 +01:00
"""Add contact form"""
2016-02-19 16:04:53 +01:00
def __init__(self, contacts_manager, tox_id=''):
super().__init__()
self._contacts_manager = contacts_manager
self.initUI(tox_id)
2016-07-10 16:51:33 +02:00
self._adding = False
self.setAttribute(QtCore.Qt.WA_DeleteOnClose)
2016-02-19 16:04:53 +01:00
def initUI(self, tox_id):
2016-02-19 16:04:53 +01:00
self.setObjectName('AddContact')
self.resize(568, 306)
self.sendRequestButton = QtWidgets.QPushButton(self)
2016-02-19 16:04:53 +01:00
self.sendRequestButton.setGeometry(QtCore.QRect(50, 270, 471, 31))
self.sendRequestButton.setMinimumSize(QtCore.QSize(0, 0))
self.sendRequestButton.setBaseSize(QtCore.QSize(0, 0))
self.sendRequestButton.setObjectName("sendRequestButton")
2016-03-09 19:11:36 +01:00
self.sendRequestButton.clicked.connect(self.add_friend)
self.tox_id = LineEdit(self)
2016-03-09 19:11:36 +01:00
self.tox_id.setGeometry(QtCore.QRect(50, 40, 471, 27))
self.tox_id.setObjectName("lineEdit")
self.tox_id.setText(tox_id)
self.label = QtWidgets.QLabel(self)
self.label.setGeometry(QtCore.QRect(50, 10, 80, 20))
self.error_label = DataLabel(self)
self.error_label.setGeometry(QtCore.QRect(120, 10, 420, 20))
2016-02-19 16:04:53 +01:00
font = QtGui.QFont()
2016-08-05 14:58:25 +02:00
font.setFamily(Settings.get_instance()['font'])
font.setPointSize(10)
font.setWeight(30)
2016-03-09 19:11:36 +01:00
self.error_label.setFont(font)
self.error_label.setStyleSheet("QLabel { color: #BC1C1C; }")
2016-02-19 16:04:53 +01:00
self.label.setObjectName("label")
self.message_edit = QtWidgets.QTextEdit(self)
2016-03-09 19:11:36 +01:00
self.message_edit.setGeometry(QtCore.QRect(50, 110, 471, 151))
self.message_edit.setObjectName("textEdit")
self.message = QtWidgets.QLabel(self)
self.message.setGeometry(QtCore.QRect(50, 70, 101, 31))
2016-05-09 22:09:07 +02:00
self.message.setFont(font)
self.message.setObjectName("label_2")
2016-02-19 16:04:53 +01:00
self.retranslateUi()
self.message_edit.setText('Hello! Add me to your contact list please')
2016-05-09 22:09:07 +02:00
font.setPointSize(12)
font.setBold(True)
self.label.setFont(font)
self.message.setFont(font)
2016-02-19 16:04:53 +01:00
QtCore.QMetaObject.connectSlotsByName(self)
2016-03-09 19:11:36 +01:00
def add_friend(self):
2016-07-10 16:51:33 +02:00
if self._adding:
return
self._adding = True
tox_id = self.tox_id.text().strip()
if tox_id.startswith('tox:'):
tox_id = tox_id[4:]
send = self._contacts_manager.send_friend_request(tox_id, self.message_edit.toPlainText())
2016-07-10 16:51:33 +02:00
self._adding = False
2016-03-09 19:11:36 +01:00
if send is True:
# request was successful
self.close()
else: # print error data
self.error_label.setText(send)
2016-02-19 16:04:53 +01:00
def retranslateUi(self):
self.setWindowTitle(util_ui.tr('Add contact'))
self.sendRequestButton.setText(util_ui.tr('Send request'))
self.label.setText(util_ui.tr('TOX ID:'))
self.message.setText(util_ui.tr('Message:'))
self.tox_id.setPlaceholderText(util_ui.tr('TOX ID or public key of contact'))
2016-02-19 16:04:53 +01:00
2016-02-19 17:04:01 +01:00
2016-03-11 12:37:45 +01:00
class ProfileSettings(CenteredWidget):
2016-02-19 17:04:01 +01:00
"""Form with profile settings such as name, status, TOX ID"""
def __init__(self, profile):
super().__init__()
self._profile = profile
2016-02-19 17:04:01 +01:00
self.initUI()
2016-05-18 23:38:21 +02:00
self.center()
2016-02-19 17:04:01 +01:00
def initUI(self):
self.setObjectName("ProfileSettingsForm")
2016-06-18 21:32:14 +02:00
self.setMinimumSize(QtCore.QSize(700, 600))
self.setMaximumSize(QtCore.QSize(700, 600))
self.nick = LineEdit(self)
2016-04-04 11:20:32 +02:00
self.nick.setGeometry(QtCore.QRect(30, 60, 350, 27))
self.nick.setText(self._profile.name)
self.status = QtWidgets.QComboBox(self)
2016-06-18 21:32:14 +02:00
self.status.setGeometry(QtCore.QRect(400, 60, 200, 27))
self.status_message = LineEdit(self)
self.status_message.setGeometry(QtCore.QRect(30, 130, 350, 27))
self.status_message.setText(self._profile.status_message)
self.label = QtWidgets.QLabel(self)
2016-05-09 22:09:07 +02:00
self.label.setGeometry(QtCore.QRect(40, 30, 91, 25))
2016-02-19 17:04:01 +01:00
font = QtGui.QFont()
2016-08-05 14:58:25 +02:00
font.setFamily(Settings.get_instance()['font'])
2016-02-19 17:04:01 +01:00
font.setPointSize(18)
font.setWeight(75)
font.setBold(True)
self.label.setFont(font)
self.label_2 = QtWidgets.QLabel(self)
2016-05-09 22:09:07 +02:00
self.label_2.setGeometry(QtCore.QRect(40, 100, 100, 25))
2016-02-19 17:04:01 +01:00
self.label_2.setFont(font)
self.label_3 = QtWidgets.QLabel(self)
2016-05-09 22:09:07 +02:00
self.label_3.setGeometry(QtCore.QRect(40, 180, 100, 25))
2016-02-19 17:04:01 +01:00
self.label_3.setFont(font)
self.tox_id = QtWidgets.QLabel(self)
2016-06-20 19:39:10 +02:00
self.tox_id.setGeometry(QtCore.QRect(15, 210, 685, 21))
font.setPointSize(10)
2016-02-19 17:04:01 +01:00
self.tox_id.setFont(font)
s = profile.tox_id
2016-02-25 09:32:40 +01:00
self.tox_id.setText(s)
self.copyId = QtWidgets.QPushButton(self)
2016-06-18 21:32:14 +02:00
self.copyId.setGeometry(QtCore.QRect(40, 250, 180, 30))
2016-02-25 09:32:40 +01:00
self.copyId.clicked.connect(self.copy)
self.export = QtWidgets.QPushButton(self)
2016-06-18 21:32:14 +02:00
self.export.setGeometry(QtCore.QRect(230, 250, 180, 30))
self.export.clicked.connect(self.export_profile)
self.new_nospam = QtWidgets.QPushButton(self)
2016-06-18 21:32:14 +02:00
self.new_nospam.setGeometry(QtCore.QRect(420, 250, 180, 30))
2016-05-03 21:02:56 +02:00
self.new_nospam.clicked.connect(self.new_no_spam)
self.copy_pk = QtWidgets.QPushButton(self)
2016-07-04 23:24:44 +02:00
self.copy_pk.setGeometry(QtCore.QRect(40, 300, 180, 30))
self.copy_pk.clicked.connect(self.copy_public_key)
self.new_avatar = QtWidgets.QPushButton(self)
2016-07-04 23:24:44 +02:00
self.new_avatar.setGeometry(QtCore.QRect(230, 300, 180, 30))
self.delete_avatar = QtWidgets.QPushButton(self)
2016-07-04 23:24:44 +02:00
self.delete_avatar.setGeometry(QtCore.QRect(420, 300, 180, 30))
2016-03-11 12:37:45 +01:00
self.delete_avatar.clicked.connect(self.reset_avatar)
self.new_avatar.clicked.connect(self.set_avatar)
self.profilepass = QtWidgets.QLabel(self)
2016-07-06 15:25:04 +02:00
self.profilepass.setGeometry(QtCore.QRect(40, 340, 300, 30))
2016-05-15 15:06:41 +02:00
font.setPointSize(18)
2016-07-06 15:25:04 +02:00
self.profilepass.setFont(font)
self.password = LineEdit(self)
2016-06-18 21:32:14 +02:00
self.password.setGeometry(QtCore.QRect(40, 380, 300, 30))
self.password.setEchoMode(QtWidgets.QLineEdit.Password)
self.leave_blank = QtWidgets.QLabel(self)
2016-06-18 21:32:14 +02:00
self.leave_blank.setGeometry(QtCore.QRect(350, 380, 300, 30))
self.confirm_password = LineEdit(self)
2016-06-18 21:32:14 +02:00
self.confirm_password.setGeometry(QtCore.QRect(40, 420, 300, 30))
self.confirm_password.setEchoMode(QtWidgets.QLineEdit.Password)
self.set_password = QtWidgets.QPushButton(self)
2016-06-18 21:32:14 +02:00
self.set_password.setGeometry(QtCore.QRect(40, 470, 300, 30))
2016-05-15 15:06:41 +02:00
self.set_password.clicked.connect(self.new_password)
self.not_match = QtWidgets.QLabel(self)
self.not_match.setGeometry(QtCore.QRect(350, 420, 300, 30))
2016-05-15 15:06:41 +02:00
self.not_match.setVisible(False)
self.not_match.setStyleSheet('QLabel { color: #BC1C1C; }')
self.warning = QtWidgets.QLabel(self)
2016-06-18 21:32:14 +02:00
self.warning.setGeometry(QtCore.QRect(40, 510, 500, 30))
self.warning.setStyleSheet('QLabel { color: #BC1C1C; }')
self.default = QtWidgets.QPushButton(self)
2016-06-20 19:39:10 +02:00
self.default.setGeometry(QtCore.QRect(40, 550, 620, 30))
2016-06-18 21:32:14 +02:00
path, name = Settings.get_auto_profile()
self.auto = path + name == ProfileManager.get_path() + Settings.get_instance().name
2016-06-18 21:32:14 +02:00
self.default.clicked.connect(self.auto_profile)
2016-02-19 17:04:01 +01:00
self.retranslateUi()
if self._profile.status is not None:
self.status.setCurrentIndex(self._profile.status)
2016-06-18 21:32:14 +02:00
else:
self.status.setVisible(False)
2016-02-19 17:04:01 +01:00
QtCore.QMetaObject.connectSlotsByName(self)
def retranslateUi(self):
self.export.setText(util_ui.tr("Export profile"))
self.setWindowTitle(util_ui.tr("Profile settings"))
self.label.setText(util_ui.tr("Name:"))
self.label_2.setText(util_ui.tr("Status:"))
self.label_3.setText(util_ui.tr("TOX ID:"))
self.copyId.setText(util_ui.tr("Copy TOX ID"))
self.new_avatar.setText(util_ui.tr("New avatar"))
self.delete_avatar.setText(util_ui.tr("Reset avatar"))
self.new_nospam.setText(util_ui.tr("New NoSpam"))
self.profilepass.setText(util_ui.tr("Profile password"))
self.password.setPlaceholderText(util_ui.tr("Password (at least 8 symbols)"))
self.confirm_password.setPlaceholderText(util_ui.tr("Confirm password"))
self.set_password.setText(util_ui.tr("Set password"))
self.not_match.setText(util_ui.tr("Passwords do not match"))
self.leave_blank.setText(util_ui.tr("Leaving blank will reset current password"))
self.warning.setText(util_ui.tr("There is no way to recover lost passwords"))
self.status.addItem(util_ui.tr("Online"))
self.status.addItem(util_ui.tr("Away"))
self.status.addItem(util_ui.tr("Busy"))
self.copy_pk.setText(util_ui.tr("Copy public key"))
2016-06-18 21:32:14 +02:00
if self.auto:
self.default.setText(util_ui.tr("Mark as not default profile"))
2016-06-18 21:32:14 +02:00
else:
self.default.setText(util_ui.tr("Mark as default profile"))
2016-06-18 21:32:14 +02:00
def auto_profile(self):
if self.auto:
Settings.reset_auto_profile()
else:
Settings.set_auto_profile(ProfileManager.get_path(), Settings.get_instance().name)
2016-06-18 21:32:14 +02:00
self.auto = not self.auto
if self.auto:
self.default.setText(util_ui.tr("Mark as not default profile"))
2016-06-18 21:32:14 +02:00
else:
self.default.setText(
util_ui.tr("Mark as default profile"))
2016-05-15 15:06:41 +02:00
def new_password(self):
if self.password.text() == self.confirm_password.text():
2016-05-16 14:25:51 +02:00
if not len(self.password.text()) or len(self.password.text()) >= 8:
2017-02-11 18:07:28 +01:00
e = toxes.ToxES.get_instance()
2016-05-16 14:25:51 +02:00
e.set_password(self.password.text())
self.close()
else:
self.not_match.setText(
util_ui.tr("Password must be at least 8 symbols"))
2016-05-16 14:25:51 +02:00
self.not_match.setVisible(True)
2016-05-15 15:06:41 +02:00
else:
self.not_match.setText(util_ui.tr("Passwords do not match"))
2016-05-15 15:06:41 +02:00
self.not_match.setVisible(True)
2016-02-19 17:04:01 +01:00
2016-02-25 09:32:40 +01:00
def copy(self):
clipboard = QtWidgets.QApplication.clipboard()
clipboard.setText(self._profile.tox_id)
2016-05-09 22:09:07 +02:00
pixmap = QtGui.QPixmap(curr_directory() + '/images/accept.png')
icon = QtGui.QIcon(pixmap)
self.copyId.setIcon(icon)
self.copyId.setIconSize(QtCore.QSize(10, 10))
2016-02-25 09:32:40 +01:00
2016-07-04 23:24:44 +02:00
def copy_public_key(self):
clipboard = QtWidgets.QApplication.clipboard()
clipboard.setText(self._profile.tox_id[:64])
2016-07-04 23:24:44 +02:00
pixmap = QtGui.QPixmap(curr_directory() + '/images/accept.png')
icon = QtGui.QIcon(pixmap)
self.copy_pk.setIcon(icon)
self.copy_pk.setIconSize(QtCore.QSize(10, 10))
2016-05-03 21:02:56 +02:00
def new_no_spam(self):
self.tox_id.setText(Profile.get_instance().new_nospam())
2016-03-11 12:37:45 +01:00
def reset_avatar(self):
self._profile.reset_avatar()
2016-03-11 12:37:45 +01:00
def set_avatar(self):
choose = util_ui.tr("Choose avatar")
name = util_ui.file_dialog(choose, 'Images (*.png)')
2016-03-11 12:37:45 +01:00
if name[0]:
2016-06-04 14:19:15 +02:00
bitmap = QtGui.QPixmap(name[0])
2017-07-09 16:22:37 +02:00
bitmap.scaled(QtCore.QSize(128, 128), aspectRatioMode=QtCore.Qt.KeepAspectRatio,
transformMode=QtCore.Qt.SmoothTransformation)
2016-06-04 14:19:15 +02:00
byte_array = QtCore.QByteArray()
buffer = QtCore.QBuffer(byte_array)
buffer.open(QtCore.QIODevice.WriteOnly)
bitmap.save(buffer, 'PNG')
self._profile.set_avatar(bytes(byte_array.data()))
2016-03-11 12:37:45 +01:00
def export_profile(self):
directory = util_ui.directory_dialog() + '/'
2016-03-18 17:33:54 +01:00
if directory != '/':
reply = util_ui.question(util_ui.tr('Do you want to move your profile to this location?'),
util_ui.tr('Use new path'))
2016-03-18 17:33:54 +01:00
settings.export(directory)
self._profile.export_db(directory)
ProfileManager.get_instance().export_profile(directory, reply)
def closeEvent(self, event):
self._profile.set_name(self.nick.text())
self._profile.set_status_message(self.status_message.text().encode('utf-8'))
self._profile.set_status(self.status.currentIndex())
2016-02-19 17:04:01 +01:00
2016-03-11 12:37:45 +01:00
class NetworkSettings(CenteredWidget):
2016-02-19 17:04:01 +01:00
"""Network settings form: UDP, Ipv6 and proxy"""
def __init__(self, settings, reset):
super().__init__()
self._settings = settings
2016-03-15 18:05:19 +01:00
self.reset = reset
2016-02-19 17:04:01 +01:00
self.initUI()
2016-05-18 23:38:21 +02:00
self.center()
2016-02-19 17:04:01 +01:00
def initUI(self):
self.setObjectName("NetworkSettings")
self.resize(300, 400)
self.setMinimumSize(QtCore.QSize(300, 400))
self.setMaximumSize(QtCore.QSize(300, 400))
self.setBaseSize(QtCore.QSize(300, 400))
self.ipv = QtWidgets.QCheckBox(self)
2016-02-19 17:04:01 +01:00
self.ipv.setGeometry(QtCore.QRect(20, 10, 97, 22))
self.ipv.setObjectName("ipv")
self.udp = QtWidgets.QCheckBox(self)
2016-04-26 21:56:06 +02:00
self.udp.setGeometry(QtCore.QRect(150, 10, 97, 22))
2016-02-19 17:04:01 +01:00
self.udp.setObjectName("udp")
self.proxy = QtWidgets.QCheckBox(self)
2016-04-26 21:56:06 +02:00
self.proxy.setGeometry(QtCore.QRect(20, 40, 97, 22))
self.http = QtWidgets.QCheckBox(self)
2016-04-26 21:56:06 +02:00
self.http.setGeometry(QtCore.QRect(20, 70, 97, 22))
2016-02-19 17:04:01 +01:00
self.proxy.setObjectName("proxy")
self.proxyip = LineEdit(self)
2016-04-26 21:56:06 +02:00
self.proxyip.setGeometry(QtCore.QRect(40, 130, 231, 27))
2016-02-19 17:04:01 +01:00
self.proxyip.setObjectName("proxyip")
self.proxyport = LineEdit(self)
2016-04-26 21:56:06 +02:00
self.proxyport.setGeometry(QtCore.QRect(40, 190, 231, 27))
2016-02-19 17:04:01 +01:00
self.proxyport.setObjectName("proxyport")
self.label = QtWidgets.QLabel(self)
2016-04-26 21:56:06 +02:00
self.label.setGeometry(QtCore.QRect(40, 100, 66, 17))
self.label_2 = QtWidgets.QLabel(self)
2016-04-26 21:56:06 +02:00
self.label_2.setGeometry(QtCore.QRect(40, 165, 66, 17))
self.reconnect = QtWidgets.QPushButton(self)
2016-05-09 21:37:11 +02:00
self.reconnect.setGeometry(QtCore.QRect(40, 230, 231, 30))
self.reconnect.clicked.connect(self.restart_core)
self.ipv.setChecked(self._settings['ipv6_enabled'])
self.udp.setChecked(self._settings['udp_enabled'])
self.proxy.setChecked(self._settings['proxy_type'])
self.proxyip.setText(self._settings['proxy_host'])
self.proxyport.setText(str(self._settings['proxy_port']))
self.http.setChecked(self._settings['proxy_type'] == 1)
self.warning = QtWidgets.QLabel(self)
2016-05-28 21:43:51 +02:00
self.warning.setGeometry(QtCore.QRect(5, 270, 290, 60))
self.warning.setStyleSheet('QLabel { color: #BC1C1C; }')
self.nodes = QtWidgets.QCheckBox(self)
self.nodes.setGeometry(QtCore.QRect(20, 350, 270, 22))
self.nodes.setChecked(self._settings['download_nodes_list'])
2016-02-19 17:04:01 +01:00
self.retranslateUi()
2016-04-26 21:56:06 +02:00
self.proxy.stateChanged.connect(lambda x: self.activate())
self.activate()
2016-02-19 17:04:01 +01:00
QtCore.QMetaObject.connectSlotsByName(self)
def retranslateUi(self):
self.setWindowTitle(util_ui.tr("Network settings"))
self.ipv.setText(util_ui.tr("IPv6"))
self.udp.setText(util_ui.tr("UDP"))
self.proxy.setText(util_ui.tr("Proxy"))
self.label.setText(util_ui.tr("IP:"))
self.label_2.setText(util_ui.tr("Port:"))
self.reconnect.setText(util_ui.tr("Restart TOX core"))
self.http.setText(util_ui.tr("HTTP"))
self.nodes.setText(util_ui.tr("Download nodes list from tox.chat"))
self.warning.setText(util_ui.tr("WARNING:\nusing proxy with enabled UDP\ncan produce IP leak"))
2016-04-26 21:56:06 +02:00
def activate(self):
bl = self.proxy.isChecked()
self.proxyip.setEnabled(bl)
self.http.setEnabled(bl)
self.proxyport.setEnabled(bl)
2016-02-19 17:04:01 +01:00
def restart_core(self):
2016-05-09 21:37:11 +02:00
try:
self._settings['ipv6_enabled'] = self.ipv.isChecked()
self._settings['udp_enabled'] = self.udp.isChecked()
self._settings['proxy_type'] = 2 - int(self.http.isChecked()) if self.proxy.isChecked() else 0
self._settings['proxy_host'] = str(self.proxyip.text())
self._settings['proxy_port'] = int(self.proxyport.text())
self._settings['download_nodes_list'] = self.nodes.isChecked()
self._settings.save()
2016-05-09 21:37:11 +02:00
# recreate tox instance
self._profile.reset()
2016-05-09 21:37:11 +02:00
self.close()
2016-05-28 12:06:13 +02:00
except Exception as ex:
log('Exception in restart: ' + str(ex))
2016-02-19 17:04:01 +01:00
2016-03-11 12:37:45 +01:00
class PrivacySettings(CenteredWidget):
2016-02-20 21:50:10 +01:00
"""Privacy settings form: history, typing notifications"""
def __init__(self, contacts_manager, settings):
"""
:type contacts_manager: ContactsManager
"""
super().__init__()
self._contacts_manager = contacts_manager
self._settings = settings
2016-02-20 21:50:10 +01:00
self.initUI()
2016-05-18 23:38:21 +02:00
self.center()
2016-02-20 21:50:10 +01:00
def initUI(self):
self.setObjectName("privacySettings")
2016-06-29 14:39:44 +02:00
self.resize(370, 600)
self.setMinimumSize(QtCore.QSize(370, 600))
self.setMaximumSize(QtCore.QSize(370, 600))
self.saveHistory = QtWidgets.QCheckBox(self)
2016-06-29 14:39:44 +02:00
self.saveHistory.setGeometry(QtCore.QRect(10, 20, 350, 22))
self.saveUnsentOnly = QtWidgets.QCheckBox(self)
2016-06-29 14:39:44 +02:00
self.saveUnsentOnly.setGeometry(QtCore.QRect(10, 60, 350, 22))
self.fileautoaccept = QtWidgets.QCheckBox(self)
2016-06-29 14:39:44 +02:00
self.fileautoaccept.setGeometry(QtCore.QRect(10, 100, 350, 22))
self.typingNotifications = QtWidgets.QCheckBox(self)
self.typingNotifications.setGeometry(QtCore.QRect(10, 140, 350, 30))
self.inlines = QtWidgets.QCheckBox(self)
self.inlines.setGeometry(QtCore.QRect(10, 180, 350, 30))
self.auto_path = QtWidgets.QLabel(self)
self.auto_path.setGeometry(QtCore.QRect(10, 230, 350, 30))
self.path = QtWidgets.QPlainTextEdit(self)
2016-07-02 21:19:04 +02:00
self.path.setGeometry(QtCore.QRect(10, 265, 350, 45))
self.change_path = QtWidgets.QPushButton(self)
2016-06-29 14:39:44 +02:00
self.change_path.setGeometry(QtCore.QRect(10, 320, 350, 30))
self.typingNotifications.setChecked(self._settings['typing_notifications'])
self.fileautoaccept.setChecked(self._settings['allow_auto_accept'])
self.saveHistory.setChecked(self._settings['save_history'])
self.inlines.setChecked(self._settings['allow_inline'])
self.saveUnsentOnly.setChecked(self._settings['save_unsent_only'])
self.saveUnsentOnly.setEnabled(self._settings['save_history'])
self.saveHistory.stateChanged.connect(self.update)
self.path.setPlainText(self._settings['auto_accept_path'] or curr_directory())
2016-03-18 17:33:54 +01:00
self.change_path.clicked.connect(self.new_path)
self.block_user_label = QtWidgets.QLabel(self)
2016-06-29 14:39:44 +02:00
self.block_user_label.setGeometry(QtCore.QRect(10, 360, 350, 30))
self.block_id = QtWidgets.QPlainTextEdit(self)
2016-06-29 14:39:44 +02:00
self.block_id.setGeometry(QtCore.QRect(10, 390, 350, 30))
self.block = QtWidgets.QPushButton(self)
2016-06-29 14:39:44 +02:00
self.block.setGeometry(QtCore.QRect(10, 430, 350, 30))
self.block.clicked.connect(lambda: self._contacts_manager.block_user(self.block_id.toPlainText()) or self.close())
self.blocked_users_label = QtWidgets.QLabel(self)
2016-06-29 14:39:44 +02:00
self.blocked_users_label.setGeometry(QtCore.QRect(10, 470, 350, 30))
self.comboBox = QtWidgets.QComboBox(self)
2016-06-29 14:39:44 +02:00
self.comboBox.setGeometry(QtCore.QRect(10, 500, 350, 30))
self.comboBox.addItems(self._settings['blocked'])
self.unblock = QtWidgets.QPushButton(self)
2016-06-29 14:39:44 +02:00
self.unblock.setGeometry(QtCore.QRect(10, 540, 350, 30))
self.unblock.clicked.connect(lambda: self.unblock_user())
self.retranslateUi()
2016-02-20 21:50:10 +01:00
QtCore.QMetaObject.connectSlotsByName(self)
def retranslateUi(self):
self.setWindowTitle(util_ui.tr("Privacy settings"))
self.saveHistory.setText(util_ui.tr("Save chat history"))
self.fileautoaccept.setText(util_ui.tr("Allow file auto accept"))
self.typingNotifications.setText(util_ui.tr("Send typing notifications"))
self.auto_path.setText(util_ui.tr("Auto accept default path:"))
self.change_path.setText(util_ui.tr("Change"))
self.inlines.setText(util_ui.tr("Allow inlines"))
self.block_user_label.setText(util_ui.tr("Block by public key:"))
self.blocked_users_label.setText(util_ui.tr("Blocked users:"))
self.unblock.setText(util_ui.tr("Unblock"))
self.block.setText(util_ui.tr("Block user"))
self.saveUnsentOnly.setText(util_ui.tr("Save unsent messages only"))
def update(self, new_state):
self.saveUnsentOnly.setEnabled(new_state)
if not new_state:
self.saveUnsentOnly.setChecked(False)
def unblock_user(self):
if not self.comboBox.count():
return
title = util_ui.tr("Add to friend list")
info = util_ui.tr("Do you want to add this user to friend list?")
reply = util_ui.question(info, title)
self._contacts_manager.unblock_user(self.comboBox.currentText(), reply)
self.close()
2016-02-20 21:50:10 +01:00
def closeEvent(self, event):
self._settings['typing_notifications'] = self.typingNotifications.isChecked()
self._settings['allow_auto_accept'] = self.fileautoaccept.isChecked()
text = util_ui.tr('History will be cleaned! Continue?')
title = util_ui.tr('Chat history')
if self._settings['save_history'] and not self.saveHistory.isChecked(): # clear history
reply = util_ui.question(text, title)
if reply:
self._history_loader.clear_history()
self._settings['save_history'] = self.saveHistory.isChecked()
2016-04-14 10:29:59 +02:00
else:
self._settings['save_history'] = self.saveHistory.isChecked()
if self.saveUnsentOnly.isChecked() and not self._settings['save_unsent_only']:
reply = util_ui.question(text, title)
if reply:
self._history_loader.clear_history(None, True)
self._settings['save_unsent_only'] = self.saveUnsentOnly.isChecked()
else:
self._settings['save_unsent_only'] = self.saveUnsentOnly.isChecked()
self._settings['auto_accept_path'] = self.path.toPlainText()
self._settings['allow_inline'] = self.inlines.isChecked()
self._settings.save()
2016-03-18 17:33:54 +01:00
def new_path(self):
directory = util_ui.directory_dialog()
if directory:
2016-03-18 17:33:54 +01:00
self.path.setPlainText(directory)
2016-02-20 21:50:10 +01:00
2016-03-11 12:37:45 +01:00
class NotificationsSettings(CenteredWidget):
2016-02-20 21:50:10 +01:00
"""Notifications settings form"""
def __init__(self, setttings):
super().__init__()
self._settings = setttings
2016-02-20 21:50:10 +01:00
self.initUI()
2016-05-18 23:38:21 +02:00
self.center()
2016-02-20 21:50:10 +01:00
def initUI(self):
self.setObjectName("notificationsForm")
2017-07-18 20:36:14 +02:00
self.resize(350, 210)
self.setMinimumSize(QtCore.QSize(350, 210))
self.setMaximumSize(QtCore.QSize(350, 210))
self.enableNotifications = QtWidgets.QCheckBox(self)
self.enableNotifications.setGeometry(QtCore.QRect(10, 20, 340, 18))
self.callsSound = QtWidgets.QCheckBox(self)
2017-07-18 20:36:14 +02:00
self.callsSound.setGeometry(QtCore.QRect(10, 170, 340, 18))
self.soundNotifications = QtWidgets.QCheckBox(self)
self.soundNotifications.setGeometry(QtCore.QRect(10, 70, 340, 18))
2017-07-18 20:36:14 +02:00
self.groupNotifications = QtWidgets.QCheckBox(self)
self.groupNotifications.setGeometry(QtCore.QRect(10, 120, 340, 18))
2016-05-02 22:20:02 +02:00
font = QtGui.QFont()
font.setFamily(self._settings['font'])
2016-05-02 22:20:02 +02:00
font.setPointSize(12)
self.callsSound.setFont(font)
self.soundNotifications.setFont(font)
self.enableNotifications.setFont(font)
2017-07-18 20:36:14 +02:00
self.groupNotifications.setFont(font)
self.enableNotifications.setChecked(self._settings['notifications'])
self.soundNotifications.setChecked(self._settings['sound_notifications'])
self.groupNotifications.setChecked(self._settings['group_notifications'])
self.callsSound.setChecked(self._settings['calls_sound'])
2016-02-20 21:50:10 +01:00
self.retranslateUi()
QtCore.QMetaObject.connectSlotsByName(self)
def retranslateUi(self):
self.setWindowTitle(util_ui.tr("Notification settings"))
self.enableNotifications.setText(util_ui.tr("Enable notifications"))
self.groupNotifications.setText(util_ui.tr("Notify about all messages in groups"))
self.callsSound.setText(util_ui.tr("Enable call\'s sound"))
self.soundNotifications.setText(util_ui.tr("Enable sound notifications"))
2016-02-25 12:22:15 +01:00
def closeEvent(self, *args, **kwargs):
self._settings['notifications'] = self.enableNotifications.isChecked()
self._settings['sound_notifications'] = self.soundNotifications.isChecked()
self._settings['group_notifications'] = self.groupNotifications.isChecked()
self._settings['calls_sound'] = self.callsSound.isChecked()
self._settings.save()
2016-02-20 21:50:10 +01:00
2016-03-11 12:37:45 +01:00
class InterfaceSettings(CenteredWidget):
2016-02-20 21:50:10 +01:00
"""Interface settings form"""
def __init__(self, settings, smiley_loader):
super().__init__()
self._settings = settings
self._smiley_loader = smiley_loader
2016-02-20 21:50:10 +01:00
self.initUI()
2016-05-18 23:38:21 +02:00
self.center()
2016-02-20 21:50:10 +01:00
def initUI(self):
self.setObjectName("interfaceForm")
2016-08-05 14:58:25 +02:00
self.setMinimumSize(QtCore.QSize(400, 650))
self.setMaximumSize(QtCore.QSize(400, 650))
self.label = QtWidgets.QLabel(self)
self.label.setGeometry(QtCore.QRect(30, 10, 370, 20))
2016-02-20 21:50:10 +01:00
font = QtGui.QFont()
font.setPointSize(14)
2016-02-20 21:50:10 +01:00
font.setBold(True)
font.setFamily(self._settings['font'])
2016-02-20 21:50:10 +01:00
self.label.setFont(font)
self.themeSelect = QtWidgets.QComboBox(self)
self.themeSelect.setGeometry(QtCore.QRect(30, 40, 120, 30))
self.themeSelect.addItems(list(self._settings.built_in_themes().keys()))
theme = self._settings['theme']
if theme in self._settings.built_in_themes().keys():
index = list(self._settings.built_in_themes().keys()).index(theme)
2016-06-11 14:37:52 +02:00
else:
index = 0
self.themeSelect.setCurrentIndex(index)
self.lang_choose = QtWidgets.QComboBox(self)
self.lang_choose.setGeometry(QtCore.QRect(30, 110, 120, 30))
2016-07-02 21:19:04 +02:00
supported = sorted(Settings.supported_languages().keys(), reverse=True)
2016-06-18 22:50:12 +02:00
for key in supported:
self.lang_choose.insertItem(0, key)
if self._settings['language'] == key:
2016-06-18 22:50:12 +02:00
self.lang_choose.setCurrentIndex(0)
self.lang = QtWidgets.QLabel(self)
self.lang.setGeometry(QtCore.QRect(30, 80, 370, 20))
2016-04-04 11:20:32 +02:00
self.lang.setFont(font)
self.mirror_mode = QtWidgets.QCheckBox(self)
self.mirror_mode.setGeometry(QtCore.QRect(30, 160, 370, 20))
self.mirror_mode.setChecked(self._settings['mirror_mode'])
self.smileys = QtWidgets.QCheckBox(self)
2016-06-11 14:37:52 +02:00
self.smileys.setGeometry(QtCore.QRect(30, 190, 120, 20))
self.smileys.setChecked(self._settings['smileys'])
self.smiley_pack_label = QtWidgets.QLabel(self)
self.smiley_pack_label.setGeometry(QtCore.QRect(30, 230, 370, 20))
2016-06-11 14:37:52 +02:00
self.smiley_pack_label.setFont(font)
self.smiley_pack = QtWidgets.QComboBox(self)
2016-06-11 14:37:52 +02:00
self.smiley_pack.setGeometry(QtCore.QRect(30, 260, 160, 30))
self.smiley_pack.addItems(self._smiley_loader.get_packs_list())
2016-06-11 14:37:52 +02:00
try:
ind = self._smiley_loader.get_packs_list().index(self._settings['smiley_pack'])
2016-06-11 14:37:52 +02:00
except:
ind = self._smiley_loader.get_packs_list().index('default')
2016-06-11 14:37:52 +02:00
self.smiley_pack.setCurrentIndex(ind)
self.messages_font_size_label = QtWidgets.QLabel(self)
self.messages_font_size_label.setGeometry(QtCore.QRect(30, 300, 370, 20))
self.messages_font_size_label.setFont(font)
self.messages_font_size = QtWidgets.QComboBox(self)
self.messages_font_size.setGeometry(QtCore.QRect(30, 330, 160, 30))
2017-08-30 21:20:31 +02:00
self.messages_font_size.addItems([str(x) for x in range(10, 25)])
self.messages_font_size.setCurrentIndex(self._settings['message_font_size'] - 10)
self.unread = QtWidgets.QPushButton(self)
2016-08-05 14:58:25 +02:00
self.unread.setGeometry(QtCore.QRect(30, 470, 340, 30))
self.unread.clicked.connect(self.select_color)
self.compact_mode = QtWidgets.QCheckBox(self)
2016-07-10 21:32:35 +02:00
self.compact_mode.setGeometry(QtCore.QRect(30, 380, 370, 20))
self.compact_mode.setChecked(self._settings['compact_mode'])
2016-07-01 15:25:46 +02:00
self.close_to_tray = QtWidgets.QCheckBox(self)
2016-08-05 14:58:25 +02:00
self.close_to_tray.setGeometry(QtCore.QRect(30, 410, 370, 20))
self.close_to_tray.setChecked(self._settings['close_to_tray'])
2016-08-05 14:58:25 +02:00
self.show_avatars = QtWidgets.QCheckBox(self)
2016-08-05 14:58:25 +02:00
self.show_avatars.setGeometry(QtCore.QRect(30, 440, 370, 20))
self.show_avatars.setChecked(self._settings['show_avatars'])
2016-07-13 22:09:34 +02:00
self.choose_font = QtWidgets.QPushButton(self)
2016-08-05 14:58:25 +02:00
self.choose_font.setGeometry(QtCore.QRect(30, 510, 340, 30))
self.choose_font.clicked.connect(self.new_font)
self.import_smileys = QtWidgets.QPushButton(self)
2016-08-05 14:58:25 +02:00
self.import_smileys.setGeometry(QtCore.QRect(30, 550, 340, 30))
2016-07-10 21:32:35 +02:00
self.import_smileys.clicked.connect(self.import_sm)
self.import_stickers = QtWidgets.QPushButton(self)
2016-08-05 14:58:25 +02:00
self.import_stickers.setGeometry(QtCore.QRect(30, 590, 340, 30))
2016-07-10 21:32:35 +02:00
self.import_stickers.clicked.connect(self.import_st)
2016-02-20 21:50:10 +01:00
self.retranslateUi()
QtCore.QMetaObject.connectSlotsByName(self)
def retranslateUi(self):
self.show_avatars.setText(util_ui.tr("Show avatars in chat"))
self.setWindowTitle(util_ui.tr("Interface settings"))
self.label.setText(util_ui.tr("Theme:"))
self.lang.setText(util_ui.tr("Language:"))
self.smileys.setText(util_ui.tr("Smileys"))
self.smiley_pack_label.setText(util_ui.tr("Smiley pack:"))
self.mirror_mode.setText(util_ui.tr("Mirror mode"))
self.messages_font_size_label.setText(util_ui.tr("Messages font size:"))
self.unread.setText(util_ui.tr("Select unread messages notification color"))
self.compact_mode.setText(util_ui.tr("Compact contact list"))
self.import_smileys.setText(util_ui.tr("Import smiley pack"))
self.import_stickers.setText(util_ui.tr("Import sticker pack"))
self.close_to_tray.setText(util_ui.tr("Close to tray"))
self.choose_font.setText(util_ui.tr("Select font"))
2016-07-10 21:32:35 +02:00
def import_st(self):
directory = util_ui.directory_dialog(util_ui.tr('Choose folder with sticker pack'))
2016-07-10 21:32:35 +02:00
if directory:
src = directory + '/'
dest = curr_directory() + '/stickers/' + os.path.basename(directory) + '/'
copy(src, dest)
def import_sm(self):
directory = util_ui.directory_dialog(util_ui.tr('Choose folder with smiley pack'))
2016-07-10 21:32:35 +02:00
if directory:
src = directory + '/'
dest = curr_directory() + '/smileys/' + os.path.basename(directory) + '/'
copy(src, dest)
2016-08-05 14:58:25 +02:00
def new_font(self):
font, ok = QtWidgets.QFontDialog.getFont(QtGui.QFont(self._settings['font'], 10), self)
2016-08-05 14:58:25 +02:00
if ok:
self._settings['font'] = font.family()
self._settings.save()
msgBox = QtWidgets.QMessageBox()
text = util_ui.tr('Restart app to apply settings')
msgBox.setWindowTitle(util_ui.tr('Restart required'))
2016-08-05 14:58:25 +02:00
msgBox.setText(text)
msgBox.exec_()
def select_color(self):
2016-09-03 13:10:36 +02:00
settings = Settings.get_instance()
col = QtWidgets.QColorDialog.getColor(QtGui.QColor(settings['unread_color']))
if col.isValid():
name = col.name()
settings['unread_color'] = name
settings.save()
def closeEvent(self, event):
2016-03-03 20:19:09 +01:00
settings = Settings.get_instance()
2016-06-11 14:37:52 +02:00
settings['theme'] = str(self.themeSelect.currentText())
2017-05-02 01:59:24 +02:00
try:
theme = settings['theme']
2017-06-20 21:55:48 +02:00
app = QtWidgets.QApplication.instance()
2017-05-02 01:59:24 +02:00
with open(curr_directory() + settings.built_in_themes()[theme]) as fl:
style = fl.read()
app.setStyleSheet(style)
except IsADirectoryError:
app.setStyleSheet('') # for default style
2016-06-11 14:37:52 +02:00
settings['smileys'] = self.smileys.isChecked()
2016-07-01 15:25:46 +02:00
restart = False
if settings['mirror_mode'] != self.mirror_mode.isChecked():
settings['mirror_mode'] = self.mirror_mode.isChecked()
2016-07-01 15:25:46 +02:00
restart = True
if settings['compact_mode'] != self.compact_mode.isChecked():
settings['compact_mode'] = self.compact_mode.isChecked()
restart = True
2016-07-13 22:09:34 +02:00
if settings['show_avatars'] != self.show_avatars.isChecked():
settings['show_avatars'] = self.show_avatars.isChecked()
restart = True
2016-06-11 14:37:52 +02:00
settings['smiley_pack'] = self.smiley_pack.currentText()
2016-08-05 14:58:25 +02:00
settings['close_to_tray'] = self.close_to_tray.isChecked()
2016-06-11 14:37:52 +02:00
smileys.SmileyLoader.get_instance().load_pack()
2016-04-04 11:20:32 +02:00
language = self.lang_choose.currentText()
if settings['language'] != language:
settings['language'] = language
2016-06-18 22:50:12 +02:00
text = self.lang_choose.currentText()
path = Settings.supported_languages()[text]
app = QtWidgets.QApplication.instance()
2016-04-04 11:20:32 +02:00
app.removeTranslator(app.translator)
app.translator.load(curr_directory() + '/translations/' + path)
app.installTranslator(app.translator)
settings['message_font_size'] = self.messages_font_size.currentIndex() + 10
Profile.get_instance().update()
2016-04-04 11:20:32 +02:00
settings.save()
2016-07-01 15:25:46 +02:00
if restart:
util_ui.message_box(util_ui.tr('Restart app to apply settings'), util_ui.tr('Restart required'))
2016-04-04 11:20:32 +02:00
2016-04-24 12:45:11 +02:00
class AudioSettings(CenteredWidget):
2016-06-05 19:17:39 +02:00
"""
Audio calls settings form
"""
2016-04-24 12:45:11 +02:00
def __init__(self, settings):
super().__init__()
self._settings = settings
2016-04-24 12:45:11 +02:00
self.initUI()
self.retranslateUi()
2016-05-18 23:38:21 +02:00
self.center()
2016-04-24 12:45:11 +02:00
def initUI(self):
self.setObjectName("audioSettingsForm")
self.resize(400, 150)
self.setMinimumSize(QtCore.QSize(400, 150))
self.setMaximumSize(QtCore.QSize(400, 150))
self.in_label = QtWidgets.QLabel(self)
2016-04-24 12:45:11 +02:00
self.in_label.setGeometry(QtCore.QRect(25, 5, 350, 20))
self.out_label = QtWidgets.QLabel(self)
2016-04-24 12:45:11 +02:00
self.out_label.setGeometry(QtCore.QRect(25, 65, 350, 20))
font = QtGui.QFont()
font.setPointSize(16)
font.setBold(True)
font.setFamily(self._settings['font'])
2016-04-24 12:45:11 +02:00
self.in_label.setFont(font)
self.out_label.setFont(font)
self.input = QtWidgets.QComboBox(self)
2016-04-24 12:45:11 +02:00
self.input.setGeometry(QtCore.QRect(25, 30, 350, 30))
self.output = QtWidgets.QComboBox(self)
2016-04-24 12:45:11 +02:00
self.output.setGeometry(QtCore.QRect(25, 90, 350, 30))
p = pyaudio.PyAudio()
self.in_indexes, self.out_indexes = [], []
2016-06-21 13:58:11 +02:00
for i in range(p.get_device_count()):
2016-04-24 12:45:11 +02:00
device = p.get_device_info_by_index(i)
if device["maxInputChannels"]:
2016-06-21 13:58:11 +02:00
self.input.addItem(str(device["name"]))
2016-04-24 12:45:11 +02:00
self.in_indexes.append(i)
if device["maxOutputChannels"]:
2016-06-21 13:58:11 +02:00
self.output.addItem(str(device["name"]))
2016-04-24 12:45:11 +02:00
self.out_indexes.append(i)
self.input.setCurrentIndex(self.in_indexes.index(self._settings.audio['input']))
self.output.setCurrentIndex(self.out_indexes.index(self._settings.audio['output']))
2016-04-24 12:45:11 +02:00
QtCore.QMetaObject.connectSlotsByName(self)
def retranslateUi(self):
self.setWindowTitle(util_ui.tr("Audio settings"))
self.in_label.setText(util_ui.tr("Input device:"))
self.out_label.setText(util_ui.tr("Output device:"))
2016-04-24 12:45:11 +02:00
def closeEvent(self, event):
self._settings.audio['input'] = self.in_indexes[self.input.currentIndex()]
self._settings.audio['output'] = self.out_indexes[self.output.currentIndex()]
self._settings.save()
2016-05-28 12:06:13 +02:00
2017-07-13 20:02:42 +02:00
class DesktopAreaSelectionWindow(RubberBandWindow):
def mouseReleaseEvent(self, event):
if self.rubberband.isVisible():
self.rubberband.hide()
rect = self.rubberband.geometry()
width, height = rect.width(), rect.height()
if width >= 8 and height >= 8:
2017-10-07 23:39:08 +02:00
self.parent.save(rect.x(), rect.y(), width - (width % 4), height - (height % 4))
2017-07-13 20:02:42 +02:00
self.close()
2017-06-13 21:32:32 +02:00
class VideoSettings(CenteredWidget):
"""
Audio calls settings form
"""
def __init__(self, settings):
2017-06-13 21:32:32 +02:00
super().__init__()
self._settings = settings
2017-06-13 21:32:32 +02:00
self.initUI()
self.retranslateUi()
self.center()
2017-07-13 20:02:42 +02:00
self.desktopAreaSelection = None
2017-06-13 21:32:32 +02:00
def initUI(self):
self.setObjectName("videoSettingsForm")
2017-06-17 23:50:42 +02:00
self.resize(400, 120)
self.setMinimumSize(QtCore.QSize(400, 120))
self.setMaximumSize(QtCore.QSize(400, 120))
2017-06-13 21:32:32 +02:00
self.in_label = QtWidgets.QLabel(self)
self.in_label.setGeometry(QtCore.QRect(25, 5, 350, 20))
font = QtGui.QFont()
font.setPointSize(16)
font.setBold(True)
font.setFamily(self._settings['font'])
2017-06-13 21:32:32 +02:00
self.in_label.setFont(font)
2017-06-17 23:50:42 +02:00
self.video_size = QtWidgets.QComboBox(self)
self.video_size.setGeometry(QtCore.QRect(25, 70, 350, 30))
2017-06-13 21:32:32 +02:00
self.input = QtWidgets.QComboBox(self)
self.input.setGeometry(QtCore.QRect(25, 30, 350, 30))
2017-06-17 23:50:42 +02:00
self.input.currentIndexChanged.connect(self.selectionChanged)
2017-07-13 20:02:42 +02:00
self.button = QtWidgets.QPushButton(self)
self.button.clicked.connect(self.button_clicked)
self.button.setGeometry(QtCore.QRect(25, 70, 350, 30))
2017-06-13 21:32:32 +02:00
import cv2
2017-07-12 20:18:21 +02:00
self.devices = [-1]
screen = QtWidgets.QApplication.primaryScreen()
size = screen.size()
self.frame_max_sizes = [(size.width(), size.height())]
desktop = util_ui.tr("Desktop")
2017-07-12 20:18:21 +02:00
self.input.addItem(desktop)
2017-06-13 21:42:05 +02:00
for i in range(10):
2017-06-13 21:32:32 +02:00
v = cv2.VideoCapture(i)
if v.isOpened():
2017-06-17 23:30:08 +02:00
v.set(cv2.CAP_PROP_FRAME_WIDTH, 10000)
v.set(cv2.CAP_PROP_FRAME_HEIGHT, 10000)
width = int(v.get(cv2.CAP_PROP_FRAME_WIDTH))
height = int(v.get(cv2.CAP_PROP_FRAME_HEIGHT))
2017-06-13 21:32:32 +02:00
del v
self.devices.append(i)
2017-06-17 23:30:08 +02:00
self.frame_max_sizes.append((width, height))
2017-06-13 21:32:32 +02:00
self.input.addItem('Device #' + str(i))
2017-06-20 21:55:48 +02:00
try:
index = self.devices.index(self._settings.video['device'])
2017-06-17 23:30:08 +02:00
self.input.setCurrentIndex(index)
2017-06-20 21:55:48 +02:00
except:
print('Video devices error!')
2017-06-13 21:32:32 +02:00
def retranslateUi(self):
self.setWindowTitle(util_ui.tr("Video settings"))
self.in_label.setText(util_ui.tr("Device:"))
self.button.setText(util_ui.tr("Select region"))
2017-07-13 20:02:42 +02:00
def button_clicked(self):
self.desktopAreaSelection = DesktopAreaSelectionWindow(self)
2017-06-13 21:32:32 +02:00
def closeEvent(self, event):
2017-07-15 22:11:49 +02:00
if self.input.currentIndex() == 0:
return
2017-07-06 20:39:15 +02:00
try:
self._settings.video['device'] = self.devices[self.input.currentIndex()]
2017-07-06 20:39:15 +02:00
text = self.video_size.currentText()
self._settings.video['width'] = int(text.split(' ')[0])
self._settings.video['height'] = int(text.split(' ')[-1])
self._settings.save()
2017-07-06 20:39:15 +02:00
except Exception as ex:
print('Saving video settings error: ' + str(ex))
2017-06-13 21:32:32 +02:00
2017-07-14 20:37:50 +02:00
def save(self, x, y, width, height):
2017-07-13 20:02:42 +02:00
self.desktopAreaSelection = None
self._settings.video['device'] = -1
self._settings.video['width'] = width
self._settings.video['height'] = height
self._settings.video['x'] = x
self._settings.video['y'] = y
self._settings.save()
2017-07-13 20:02:42 +02:00
2017-06-17 23:30:08 +02:00
def selectionChanged(self):
2017-07-13 20:02:42 +02:00
if self.input.currentIndex() == 0:
self.button.setVisible(True)
self.video_size.setVisible(False)
else:
self.button.setVisible(False)
self.video_size.setVisible(True)
2017-06-17 23:30:08 +02:00
width, height = self.frame_max_sizes[self.input.currentIndex()]
2017-06-17 23:50:42 +02:00
self.video_size.clear()
2017-06-17 23:30:08 +02:00
dims = [
(320, 240),
(640, 360),
(640, 480),
(720, 480),
(1280, 720),
(1920, 1080),
(2560, 1440)
]
for w, h in dims:
if w <= width and h <= height:
2017-06-17 23:50:42 +02:00
self.video_size.addItem(str(w) + ' * ' + str(h))
2017-06-17 23:30:08 +02:00
2017-06-13 21:32:32 +02:00
2016-05-28 12:06:13 +02:00
class PluginsSettings(CenteredWidget):
2016-06-05 19:17:39 +02:00
"""
Plugins settings form
"""
2016-05-28 12:06:13 +02:00
def __init__(self, plugin_loader):
super().__init__()
self._plugin_loader = plugin_loader
self._window = None
2016-05-28 12:06:13 +02:00
self.initUI()
self.center()
self.retranslateUi()
def initUI(self):
self.resize(400, 210)
self.setMinimumSize(QtCore.QSize(400, 210))
self.setMaximumSize(QtCore.QSize(400, 210))
self.comboBox = QtWidgets.QComboBox(self)
2016-05-28 12:06:13 +02:00
self.comboBox.setGeometry(QtCore.QRect(30, 10, 340, 30))
self.label = QtWidgets.QLabel(self)
2016-05-28 12:06:13 +02:00
self.label.setGeometry(QtCore.QRect(30, 40, 340, 90))
self.label.setWordWrap(True)
self.button = QtWidgets.QPushButton(self)
2016-05-28 12:06:13 +02:00
self.button.setGeometry(QtCore.QRect(30, 130, 340, 30))
self.button.clicked.connect(self.button_click)
self.open = QtWidgets.QPushButton(self)
2016-05-28 12:06:13 +02:00
self.open.setGeometry(QtCore.QRect(30, 170, 340, 30))
self.open.clicked.connect(self.open_plugin)
self.update_list()
self.comboBox.currentIndexChanged.connect(self.show_data)
self.show_data()
def retranslateUi(self):
self.setWindowTitle(util_ui.tr("Plugins"))
self.open.setText(util_ui.tr("Open selected plugin"))
2016-05-28 12:06:13 +02:00
def open_plugin(self):
ind = self.comboBox.currentIndex()
plugin = self.data[ind]
window = self.pl_loader.plugin_window(plugin[-1])
if window is not None:
self._window = window
self._window.show()
2016-05-28 12:06:13 +02:00
else:
util_ui.message_box(util_ui.tr('No GUI found for this plugin'), util_ui.tr('Error'))
2016-05-28 12:06:13 +02:00
def update_list(self):
self.comboBox.clear()
data = self._plugin_loader.get_plugins_list()
self.comboBox.addItems(list(map(lambda x: x[0], data)))
2016-05-28 12:06:13 +02:00
self.data = data
def show_data(self):
ind = self.comboBox.currentIndex()
2016-06-05 13:59:36 +02:00
if len(self.data):
plugin = self.data[ind]
descr = plugin[2] or util_ui.tr("No description available")
2016-06-05 13:59:36 +02:00
self.label.setText(descr)
if plugin[1]:
self.button.setText(util_ui.tr("Disable plugin"))
2016-06-05 13:59:36 +02:00
else:
self.button.setText(util_ui.tr("Enable plugin"))
2016-05-28 12:06:13 +02:00
else:
2016-06-05 13:59:36 +02:00
self.open.setVisible(False)
self.button.setVisible(False)
self.label.setText(util_ui.tr("No plugins found"))
2016-05-28 12:06:13 +02:00
def button_click(self):
ind = self.comboBox.currentIndex()
plugin = self.data[ind]
self._plugin_loader.toggle_plugin(plugin[-1])
2016-05-28 12:06:13 +02:00
plugin[1] = not plugin[1]
if plugin[1]:
self.button.setText(util_ui.tr("Disable plugin"))
2016-05-28 12:06:13 +02:00
else:
self.button.setText(util_ui.tr("Enable plugin"))
class UpdateSettings(CenteredWidget):
"""
2016-10-09 15:04:59 +02:00
Updates settings form
"""
def __init__(self, settings):
super().__init__()
self._settings = settings
self.initUI()
self.center()
def initUI(self):
self.setObjectName("updateSettingsForm")
self.resize(400, 150)
self.setMinimumSize(QtCore.QSize(400, 120))
self.setMaximumSize(QtCore.QSize(400, 120))
self.in_label = QtWidgets.QLabel(self)
self.in_label.setGeometry(QtCore.QRect(25, 5, 350, 20))
font = QtGui.QFont()
font.setPointSize(16)
font.setBold(True)
font.setFamily(self._settings['font'])
self.in_label.setFont(font)
self.autoupdate = QtWidgets.QComboBox(self)
self.autoupdate.setGeometry(QtCore.QRect(25, 30, 350, 30))
self.button = QtWidgets.QPushButton(self)
self.button.setGeometry(QtCore.QRect(25, 70, 350, 30))
self.button.setEnabled(self._settings['update'])
self.button.clicked.connect(self.update_client)
self.retranslateUi()
self.autoupdate.setCurrentIndex(self._settings['update'])
QtCore.QMetaObject.connectSlotsByName(self)
def retranslateUi(self):
self.setWindowTitle(util_ui.tr("Update settings"))
self.in_label.setText(util_ui.tr("Select update mode:"))
self.button.setText(util_ui.tr("Update Toxygen"))
self.autoupdate.addItem(util_ui.tr("Disabled"))
self.autoupdate.addItem(util_ui.tr("Manual"))
self.autoupdate.addItem(util_ui.tr("Auto"))
def closeEvent(self, event):
self._settings['update'] = self.autoupdate.currentIndex()
self._settings.save()
def update_client(self):
2016-10-15 18:47:02 +02:00
if not updater.connection_available():
util_ui.message_box(util_ui.tr('Problems with internet connection'), util_ui.tr("Error"))
2016-10-15 18:47:02 +02:00
return
2016-10-22 19:31:34 +02:00
if not updater.updater_available():
util_ui.message_box(util_ui.tr('Updater not found'), util_ui.tr("Error"))
2016-10-22 19:31:34 +02:00
return
version = updater.check_for_updates()
if version is not None:
updater.download(version)
util_ui.close_all_windows()
else:
util_ui.message_box(util_ui.tr('Toxygen is up to date'), util_ui.tr("No updates found"))