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,6 +199,7 @@ class Toxygen:
class Menu(QtGui.QMenu):
def newStatus(self, status):
if not Settings.get_instance().locked:
profile.Profile.get_instance().set_status(status)
self.aboutToShow()
self.hide()
@ -256,6 +257,7 @@ class Toxygen:
show_window()
def close_app():
if not Settings.get_instance().locked:
settings.closing = True
self.ms.close()

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)))