1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #5674

Monsterovich (8):
      fix(ui): Improved notifications
      fix(ui): Added option to hide message sender and contents
      fix(ui): minor fix
      fix(ui): don't forget to update UI
      fix(ui): apply requested changes
      fix(ui): revert CMakeLists.txt
      fix(ui): minor fix
      fix(ui): fix 2
This commit is contained in:
sudden6 2019-05-27 23:46:54 +02:00
commit 01a53789be
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
11 changed files with 112 additions and 36 deletions

View File

@ -44,6 +44,7 @@ public:
virtual ~FileTransferWidget();
void autoAcceptTransfer(const QString& path);
bool isActive() const;
static QString getHumanReadableSize(qint64 size);
protected slots:
void onFileTransferInfo(ToxFile file);
@ -56,7 +57,6 @@ protected slots:
void fileTransferBrokenUnbroken(ToxFile file, bool broken);
protected:
QString getHumanReadableSize(qint64 size);
void updateWidgetColor(ToxFile const& file);
void updateWidgetText(ToxFile const& file);
void updateFileProgress(ToxFile const& file);

View File

@ -154,6 +154,7 @@ void Settings::loadGlobal()
autoAwayTime = s.value("autoAwayTime", 10).toInt();
checkUpdates = s.value("checkUpdates", true).toBool();
notifySound = s.value("notifySound", true).toBool(); // note: notifySound and busySound UI elements are now under UI settings
notifyHide = s.value("notifyHide", false).toBool();
busySound = s.value("busySound", false).toBool(); // page, but kept under General in settings file to be backwards compatible
fauxOfflineMessaging = s.value("fauxOfflineMessaging", true).toBool();
autoSaveEnabled = s.value("autoSaveEnabled", false).toBool();
@ -435,6 +436,7 @@ void Settings::saveGlobal()
s.setValue("autoAwayTime", autoAwayTime);
s.setValue("checkUpdates", checkUpdates);
s.setValue("notifySound", notifySound);
s.setValue("notifyHide", notifyHide);
s.setValue("busySound", busySound);
s.setValue("fauxOfflineMessaging", fauxOfflineMessaging);
s.setValue("autoSaveEnabled", autoSaveEnabled);
@ -1005,6 +1007,22 @@ void Settings::setNotifySound(bool newValue)
}
}
bool Settings::getNotifyHide() const
{
QMutexLocker locker{&bigLock};
return notifyHide;
}
void Settings::setNotifyHide(bool newValue)
{
QMutexLocker locker{&bigLock};
if (newValue != notifyHide) {
notifyHide = newValue;
emit notifyHideChanged(notifyHide);
}
}
bool Settings::getBusySound() const
{
QMutexLocker locker{&bigLock};

View File

@ -181,6 +181,7 @@ signals:
void makeToxPortableChanged(bool enabled);
void busySoundChanged(bool enabled);
void notifySoundChanged(bool enabled);
void notifyHideChanged(bool enabled);
void groupAlwaysNotifyChanged(bool enabled);
void translationChanged(const QString& translation);
void toxmeInfoChanged(const QString& info);
@ -337,6 +338,9 @@ public:
bool getNotifySound() const;
void setNotifySound(bool newValue);
bool getNotifyHide() const;
void setNotifyHide(bool newValue);
bool getBusySound() const;
void setBusySound(bool newValue);
@ -620,6 +624,7 @@ private:
bool desktopNotify;
bool showWindow;
bool notifySound;
bool notifyHide;
bool busySound;
bool groupAlwaysNotify;
bool nameColors;

View File

@ -19,37 +19,40 @@ DesktopNotify::DesktopNotify()
notifyCore.registerApplication(snoreApp);
}
void DesktopNotify::createNotification(const QString& title)
void DesktopNotify::createNotification(const QString& title, const QString& text, Snore::Icon& icon)
{
const Settings& s = Settings::getInstance();
if(!(s.getNotify() && s.getDesktopNotify())) {
return;
}
Snore::Notification notify{snoreApp, Snore::Alert(), title, {}, snoreIcon};
Snore::Notification notify{snoreApp, Snore::Alert(), title, text, icon};
notifyCore.broadcastNotification(notify);
}
void DesktopNotify::notifyGroupMessage()
void DesktopNotify::notifyMessage(const QString& title, const QString& message)
{
const QString title = tr("New group message received");
createNotification(title);
createNotification(title, message, snoreIcon);
}
void DesktopNotify::notifyFriendRequest()
void DesktopNotify::notifyMessagePixmap(const QString& title, const QString& message, QPixmap avatar)
{
const QString title = tr("New friend request received");
createNotification(title);
Snore::Icon new_icon(avatar);
createNotification(title, message, new_icon);
}
void DesktopNotify::notifyGroupInvite()
void DesktopNotify::notifyMessageSimple(const MessageType type)
{
const QString title = tr("New group invite received");
createNotification(title);
}
QString message;
switch (type) {
case MessageType::FRIEND: message = tr("New message"); break;
case MessageType::FRIEND_FILE: message = tr("Incoming file transfer"); break;
case MessageType::FRIEND_REQUEST: message = tr("Friend request received"); break;
case MessageType::GROUP: message = tr("New group message"); break;
case MessageType::GROUP_INVITE: message = tr("Group invite received"); break;
default: break;
}
void DesktopNotify::notifyFriendMessage()
{
const QString title = tr("New message received");
createNotification(title);
createNotification(message, {}, snoreIcon);
}

View File

@ -12,14 +12,21 @@ class DesktopNotify : public QObject
public:
DesktopNotify();
enum class MessageType {
FRIEND,
FRIEND_FILE,
FRIEND_REQUEST,
GROUP,
GROUP_INVITE
};
public slots:
void notifyFriendMessage();
void notifyGroupMessage();
void notifyFriendRequest();
void notifyGroupInvite();
void notifyMessage(const QString& title, const QString& message);
void notifyMessagePixmap(const QString& title, const QString& message, QPixmap avatar);
void notifyMessageSimple(const MessageType type);
private:
void createNotification(const QString& title);
void createNotification(const QString& title, const QString& text, Snore::Icon& icon);
private:
Snore::SnoreCore& notifyCore;

View File

@ -338,7 +338,10 @@ void ChatForm::onFileRecvRequest(ToxFile file)
return;
}
Widget::getInstance()->newFriendMessageAlert(f->getPublicKey());
Widget::getInstance()->newFriendMessageAlert(f->getPublicKey(),
file.fileName +
" (" + FileTransferWidget::getHumanReadableSize(file.filesize) + ")",
true, true);
QString name;
ToxPk friendId = f->getPublicKey();
if (friendId != previousId) {

View File

@ -78,6 +78,7 @@ UserInterfaceForm::UserInterfaceForm(SettingsWidget* myParent)
bodyUI->groupOnlyNotfiyWhenMentioned->setChecked(!s.getGroupAlwaysNotify());
bodyUI->groupOnlyNotfiyWhenMentioned->setEnabled(s.getNotify());
bodyUI->notifySound->setChecked(s.getNotifySound());
bodyUI->notifyHide->setChecked(s.getNotifyHide());
bodyUI->notifySound->setEnabled(s.getNotify());
bodyUI->busySound->setChecked(s.getBusySound());
bodyUI->busySound->setEnabled(s.getNotifySound() && s.getNotify());
@ -391,3 +392,9 @@ void UserInterfaceForm::on_useNameColors_stateChanged(int value)
{
Settings::getInstance().setEnableGroupChatsColor(value);
}
void UserInterfaceForm::on_notifyHide_stateChanged(int value)
{
Settings::getInstance().setNotifyHide(value);
}

View File

@ -51,6 +51,7 @@ private slots:
void on_notify_stateChanged();
void on_desktopNotify_stateChanged();
void on_notifySound_stateChanged();
void on_notifyHide_stateChanged(int);
void on_busySound_stateChanged();
void on_showWindow_stateChanged();
void on_groupOnlyNotfiyWhenMentioned_stateChanged();
@ -60,7 +61,6 @@ private slots:
void on_cbGroupchatPosition_stateChanged();
void on_themeColorCBox_currentIndexChanged(int);
void on_cbShowIdenticons_stateChanged();
void on_txtChatFont_currentFontChanged(const QFont& f);
void on_txtChatFontSize_valueChanged(int arg1);
void on_useNameColors_stateChanged(int value);

View File

@ -40,7 +40,7 @@
<x>0</x>
<y>0</y>
<width>650</width>
<height>892</height>
<height>950</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_4" stretch="0,0,0,0,0,0">
@ -221,6 +221,13 @@
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="notifyHide">
<property name="text">
<string>Hide message sender and contents</string>
</property>
</widget>
</item>
</layout>
</item>
<item>

View File

@ -964,7 +964,7 @@ void Widget::cleanupNotificationSound()
void Widget::incomingNotification(uint32_t friendnumber)
{
const auto& friendId = FriendList::id2Key(friendnumber);
newFriendMessageAlert(friendId, false);
newFriendMessageAlert(friendId, {}, false);
// loop until call answered or rejected
playNotificationSound(IAudioSink::Sound::IncomingCall, true);
@ -1238,7 +1238,7 @@ void Widget::onFriendMessageReceived(uint32_t friendnumber, const QString& messa
profile->getHistory()->addNewMessage(publicKey, text, publicKey, timestamp, true, name);
}
newFriendMessageAlert(friendId);
newFriendMessageAlert(friendId, message);
}
void Widget::addFriendDialog(const Friend* frnd, ContentDialog* dialog)
@ -1344,7 +1344,7 @@ void Widget::addGroupDialog(Group* group, ContentDialog* dialog)
emit widget->chatroomWidgetClicked(widget);
}
bool Widget::newFriendMessageAlert(const ToxPk& friendId, bool sound)
bool Widget::newFriendMessageAlert(const ToxPk& friendId, const QString& text, bool sound, bool file)
{
bool hasActive;
QWidget* currentWindow;
@ -1381,7 +1381,15 @@ bool Widget::newFriendMessageAlert(const ToxPk& friendId, bool sound)
widget->updateStatusLight();
ui->friendList->trackWidget(widget);
#if DESKTOP_NOTIFICATIONS
notifier.notifyFriendMessage();
if (settings.getNotifyHide()) {
notifier.notifyMessageSimple(file ? DesktopNotify::MessageType::FRIEND_FILE : DesktopNotify::MessageType::FRIEND);
} else {
QString title = f->getDisplayedName();
if (file) {
title += " - " + tr("File sent");
}
notifier.notifyMessagePixmap(title, text, Nexus::getProfile()->loadAvatar(f->getPublicKey()));
}
#endif
if (contentDialog == nullptr) {
@ -1398,7 +1406,7 @@ bool Widget::newFriendMessageAlert(const ToxPk& friendId, bool sound)
return false;
}
bool Widget::newGroupMessageAlert(const GroupId& groupId, bool notify)
bool Widget::newGroupMessageAlert(const GroupId& groupId, const ToxPk& authorPk, const QString& message, bool notify)
{
bool hasActive;
QWidget* currentWindow;
@ -1421,7 +1429,17 @@ bool Widget::newGroupMessageAlert(const GroupId& groupId, bool notify)
g->setEventFlag(true);
widget->updateStatusLight();
#if DESKTOP_NOTIFICATIONS
notifier.notifyGroupMessage();
if (settings.getNotifyHide()) {
notifier.notifyMessageSimple(DesktopNotify::MessageType::GROUP);
} else {
Friend *f = FriendList::findFriend(authorPk);
QString title = g->getPeerList().value(authorPk) + " (" + g->getDisplayedName() + ")";
if (!f) {
notifier.notifyMessage(title, message);
} else {
notifier.notifyMessagePixmap(title, message, Nexus::getProfile()->loadAvatar(f->getPublicKey()));
}
}
#endif
if (contentDialog == nullptr) {
@ -1497,7 +1515,11 @@ void Widget::onFriendRequestReceived(const ToxPk& friendPk, const QString& messa
friendRequestsUpdate();
newMessageAlert(window(), isActiveWindow(), true, true);
#if DESKTOP_NOTIFICATIONS
notifier.notifyFriendRequest();
if (settings.getNotifyHide()) {
notifier.notifyMessageSimple(DesktopNotify::MessageType::FRIEND_REQUEST);
} else {
notifier.notifyMessage(friendPk.toString() + tr(" sent you a friend request."), message);
}
#endif
}
}
@ -1736,7 +1758,11 @@ void Widget::onGroupInviteReceived(const GroupInvite& inviteInfo)
groupInvitesUpdate();
newMessageAlert(window(), isActiveWindow(), true, true);
#if DESKTOP_NOTIFICATIONS
notifier.notifyGroupInvite();
if (settings.getNotifyHide()) {
notifier.notifyMessageSimple(DesktopNotify::MessageType::GROUP_INVITE);
} else {
notifier.notifyMessagePixmap(f->getDisplayedName() + tr(" invites you to join a group."), {}, Nexus::getProfile()->loadAvatar(f->getPublicKey()));
}
#endif
}
} else {
@ -1781,7 +1807,7 @@ void Widget::onGroupMessageReceived(int groupnumber, int peernumber, const QStri
form->addMessage(author, message, date, isAction, true);
}
newGroupMessageAlert(groupId, targeted || settings.getGroupAlwaysNotify());
newGroupMessageAlert(groupId, author, message, targeted || settings.getGroupAlwaysNotify());
}
void Widget::onGroupPeerlistChanged(uint32_t groupnumber)

View File

@ -123,8 +123,8 @@ public:
void showUpdateDownloadProgress();
void addFriendDialog(const Friend* frnd, ContentDialog* dialog);
void addGroupDialog(Group* group, ContentDialog* dialog);
bool newFriendMessageAlert(const ToxPk& friendId, bool sound = true);
bool newGroupMessageAlert(const GroupId& groupId, bool notify);
bool newFriendMessageAlert(const ToxPk& friendId, const QString& text, bool sound = true, bool file = false);
bool newGroupMessageAlert(const GroupId& groupId, const ToxPk& authorPk, const QString& message, bool notify);
bool getIsWindowMinimized();
void updateIcons();