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

closes again tux3/qtox #988

This commit is contained in:
agilob 2015-02-24 18:39:44 +00:00
parent bee584bdb1
commit 9a3a15c2e7

View File

@ -51,16 +51,16 @@ GenericChatForm::GenericChatForm(QWidget *parent)
nameLabel->setEditable(true); nameLabel->setEditable(true);
avatar = new MaskablePixmapWidget(this, QSize(40,40), ":/img/avatar_mask.png"); avatar = new MaskablePixmapWidget(this, QSize(40,40), ":/img/avatar_mask.png");
QHBoxLayout *headLayout = new QHBoxLayout(), QHBoxLayout *mainFootLayout = new QHBoxLayout(),
*mainFootLayout = new QHBoxLayout(); *headLayout = new QHBoxLayout();
QVBoxLayout *mainLayout = new QVBoxLayout(), QVBoxLayout *mainLayout = new QVBoxLayout(),
*footButtonsSmall = new QVBoxLayout(), *footButtonsSmall = new QVBoxLayout(),
*micButtonsLayout = new QVBoxLayout(); *micButtonsLayout = new QVBoxLayout();
headTextLayout = new QVBoxLayout();
QGridLayout *buttonsLayout = new QGridLayout(); QGridLayout *buttonsLayout = new QGridLayout();
headTextLayout = new QVBoxLayout();
chatWidget = new ChatLog(this); chatWidget = new ChatLog(this);
chatWidget->setBusyNotification(ChatMessage::createBusyNotification()); chatWidget->setBusyNotification(ChatMessage::createBusyNotification());
@ -143,10 +143,10 @@ GenericChatForm::GenericChatForm(QWidget *parent)
buttonsLayout->setVerticalSpacing(0); buttonsLayout->setVerticalSpacing(0);
buttonsLayout->setHorizontalSpacing(4); buttonsLayout->setHorizontalSpacing(4);
headLayout->addWidget(avatar, Qt::AlignTop | Qt::AlignLeft); headLayout->addWidget(avatar);
headLayout->addSpacing(5); headLayout->addSpacing(5);
headLayout->addLayout(headTextLayout, Qt::AlignTop | Qt::AlignAbsolute); headLayout->addLayout(headTextLayout);
headLayout->addLayout(buttonsLayout, Qt::AlignTop | Qt::AlignRight); headLayout->addLayout(buttonsLayout);
headWidget->setLayout(headLayout); headWidget->setLayout(headLayout);