Browse Source

Add greentext

pull/90/head
Tux3 / Mlkj / !Lev.uXFMLA 11 years ago
parent
commit
c3f985db8a
  1. 4
      widget/form/chatform.cpp
  2. 4
      widget/form/groupchatform.cpp

4
widget/form/chatform.cpp

@ -215,6 +215,8 @@ void ChatForm::addMessage(QString author, QString message, QString date) @@ -215,6 +215,8 @@ void ChatForm::addMessage(QString author, QString message, QString date)
void ChatForm::addMessage(QLabel* author, QLabel* message, QLabel* date)
{
QPalette greentext;
greentext.setColor(QPalette::WindowText, QColor(61,204,61));
QScrollBar* scroll = chatArea->verticalScrollBar();
lockSliderToBottom = scroll && scroll->value() == scroll->maximum();
author->setAlignment(Qt::AlignTop | Qt::AlignRight);
@ -242,6 +244,8 @@ void ChatForm::addMessage(QLabel* author, QLabel* message, QLabel* date) @@ -242,6 +244,8 @@ void ChatForm::addMessage(QLabel* author, QLabel* message, QLabel* date)
}
else if (curRow)// onSaveLogClicked expects 0 or 3 QLabel per line
author->setText("");
if (message->text()[0] == '>')
message->setPalette(greentext);
mainChatLayout->addWidget(author, curRow, 0);
mainChatLayout->addWidget(message, curRow, 1);
mainChatLayout->addWidget(date, curRow, 3);

4
widget/form/groupchatform.cpp

@ -167,6 +167,8 @@ void GroupChatForm::addMessage(QString author, QString message, QString date) @@ -167,6 +167,8 @@ void GroupChatForm::addMessage(QString author, QString message, QString date)
void GroupChatForm::addMessage(QLabel* author, QLabel* message, QLabel* date)
{
QPalette greentext;
greentext.setColor(QPalette::WindowText, QColor(61,204,61));
QScrollBar* scroll = chatArea->verticalScrollBar();
lockSliderToBottom = scroll && scroll->value() == scroll->maximum();
author->setAlignment(Qt::AlignTop | Qt::AlignLeft);
@ -194,6 +196,8 @@ void GroupChatForm::addMessage(QLabel* author, QLabel* message, QLabel* date) @@ -194,6 +196,8 @@ void GroupChatForm::addMessage(QLabel* author, QLabel* message, QLabel* date)
}
else if (curRow)// onSaveLogClicked expects 0 or 3 QLabel per line
author->setText("");
if (message->text()[0] == '>')
message->setPalette(greentext);
mainChatLayout->addWidget(author, curRow, 0);
mainChatLayout->addWidget(message, curRow, 1);
mainChatLayout->addWidget(date, curRow, 3);

Loading…
Cancel
Save