diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2021-01-26 17:23:28 -0500 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2021-01-26 17:23:28 -0500 |
commit | bfeb766a91e259dce7924fb0bbcfcac85b91092b (patch) | |
tree | f9423ca7fa9dbb324ba9372a29c292777a87c6cd /src/ChatPage.h | |
parent | Fix formatting (diff) | |
download | nheko-bfeb766a91e259dce7924fb0bbcfcac85b91092b.tar.xz |
Implement Privacy Screen
* Add handles for window focus gained / focus lossed and connect to timer * Clean up some of the PrivacyScreen.qml code * Connect settings to PrivacyScreen visibility
Diffstat (limited to 'src/ChatPage.h')
-rw-r--r-- | src/ChatPage.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChatPage.h b/src/ChatPage.h index 0516f87d..917bd785 100644 --- a/src/ChatPage.h +++ b/src/ChatPage.h @@ -127,7 +127,6 @@ public slots: void receivedSessionKey(const std::string &room_id, const std::string &session_id); void decryptDownloadedSecrets(mtx::secret_storage::AesHmacSha2KeyDescription keyDesc, const SecretsToDecrypt &secrets); - signals: void connectionLost(); void connectionRestored(); @@ -176,6 +175,7 @@ signals: void retrievedPresence(const QString &statusMsg, mtx::presence::PresenceState state); void themeChanged(); void decryptSidebarChanged(); + void chatFocusChanged(const bool focused); //! Signals for device verificaiton void receivedDeviceVerificationAccept( |