added check

This commit is contained in:
ingvar1995 2017-02-11 22:04:32 +03:00
parent 704344fae2
commit 1d33d298c3
2 changed files with 10 additions and 6 deletions

View File

@ -199,9 +199,10 @@ class Toxygen:
class Menu(QtGui.QMenu):
def newStatus(self, status):
profile.Profile.get_instance().set_status(status)
self.aboutToShow()
self.hide()
if not Settings.get_instance().locked:
profile.Profile.get_instance().set_status(status)
self.aboutToShow()
self.hide()
def aboutToShow(self):
status = profile.Profile.get_instance().status
@ -256,8 +257,9 @@ class Toxygen:
show_window()
def close_app():
settings.closing = True
self.ms.close()
if not Settings.get_instance().locked:
settings.closing = True
self.ms.close()
m.connect(show, QtCore.SIGNAL("triggered()"), show_window)
m.connect(exit, QtCore.SIGNAL("triggered()"), close_app)

View File

@ -6,10 +6,12 @@ from toxencryptsave_enums_and_consts import *
class ToxEncryptSave:
def __init__(self):
super().__init__()
self.libtoxencryptsave = libtox.LibToxEncryptSave()
def is_data_encrypted(self, data):
"""
Checks if given data is encrypted
"""
func = self.libtoxencryptsave.tox_is_data_encrypted
func.restype = c_bool
result = func(c_char_p(bytes(data)))