X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatwidget.cpp;h=68d63da39e442506305c8c3f8a6b0fa18323cd61;hp=5a3ab40354b8145fae5b765380b9055c76a4acc8;hb=fee1002dcb914ef9d47ceae97080b8c140e3b1ed;hpb=85cc2479ab9bd85b33f4d8494b1eeeb46a6a1049 diff --git a/src/qtui/chatwidget.cpp b/src/qtui/chatwidget.cpp index 5a3ab403..68d63da3 100644 --- a/src/qtui/chatwidget.cpp +++ b/src/qtui/chatwidget.cpp @@ -19,9 +19,9 @@ ***************************************************************************/ #include "util.h" -#include "style.h" #include "chatwidget.h" #include "chatline.h" +#include "qtui.h" ChatWidget::ChatWidget(QWidget *parent) : QAbstractScrollArea(parent) { @@ -233,10 +233,10 @@ void ChatWidget::setContents(QList list) { //!\brief Computes the different x position vars for given tsWidth and senderWidth. void ChatWidget::computePositions() { - senderX = tsWidth + Style::sepTsSender(); - textX = senderX + senderWidth + Style::sepSenderText(); - tsGrabPos = tsWidth + (int)Style::sepTsSender()/2; - senderGrabPos = senderX + senderWidth + (int)Style::sepSenderText()/2; + senderX = tsWidth + QtUi::style()->sepTsSender(); + textX = senderX + senderWidth + QtUi::style()->sepSenderText(); + tsGrabPos = tsWidth + (int)QtUi::style()->sepTsSender()/2; + senderGrabPos = senderX + senderWidth + (int)QtUi::style()->sepSenderText()/2; textWidth = viewport()->size().width() - textX; } @@ -460,15 +460,15 @@ void ChatWidget::handleMouseMoveEvent(const QPoint &_pos) { break; } // Pass 2: Some mouse modes need work after being set... - if(mouseMode == DragTsSep && x < size().width() - Style::sepSenderText() - senderWidth - 10) { + if(mouseMode == DragTsSep && x < size().width() - QtUi::style()->sepSenderText() - senderWidth - 10) { // Drag first column separator - int foo = Style::sepTsSender()/2; + int foo = QtUi::style()->sepTsSender()/2; tsWidth = qMax(x, foo) - foo; computePositions(); layout(); } else if(mouseMode == DragTextSep && x < size().width() - 10) { // Drag second column separator - int foo = tsWidth + Style::sepTsSender() + Style::sepSenderText()/2; + int foo = tsWidth + QtUi::style()->sepTsSender() + QtUi::style()->sepSenderText()/2; senderWidth = qMax(x, foo) - foo; computePositions(); layout();