improved the messages design

* Moved the buttons to a better place
* removed the top frame
* changed to use the right icons for the context menu
* Set the attach icon on composer
This commit is contained in:
defnax 2020-02-23 16:01:31 +01:00
parent 566399440c
commit 1cca7a4969
6 changed files with 341 additions and 729 deletions

View file

@ -136,6 +136,11 @@ MessageWidget::MessageWidget(bool controlled, QWidget *parent, Qt::WindowFlags f
connect(ui.downloadButton, SIGNAL(clicked()), this, SLOT(getallrecommended()));
connect(ui.msgText, SIGNAL(anchorClicked(QUrl)), this, SLOT(anchorClicked(QUrl)));
connect(ui.sendInviteButton, SIGNAL(clicked()), this, SLOT(sendInvite()));
connect(ui.replyButton, SIGNAL(clicked()), this, SLOT(reply()));
connect(ui.replyallButton, SIGNAL(clicked()), this, SLOT(replyAll()));
connect(ui.forwardButton, SIGNAL(clicked()), this, SLOT(forward()));
connect(ui.deleteButton, SIGNAL(clicked()), this, SLOT(remove()));
connect(NotifyQt::getInstance(), SIGNAL(messagesTagsChanged()), this, SLOT(messagesTagsChanged()));
connect(NotifyQt::getInstance(), SIGNAL(messagesChanged()), this, SLOT(messagesChanged()));