X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatwidget.h;h=8e32783c268c0184738c42d2bfee896b1e6a3bdc;hp=69b4b6193701305bb895eaf1b22507c5f01807bb;hb=e5ef65b239e9a128a5cf86e6eef9bce1fd098448;hpb=d6b056e936ec441258d291b7a8af7b83f9f53016 diff --git a/src/qtui/chatwidget.h b/src/qtui/chatwidget.h index 69b4b619..8e32783c 100644 --- a/src/qtui/chatwidget.h +++ b/src/qtui/chatwidget.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005/06 by the Quassel IRC Team * + * Copyright (C) 2005/06 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,6 +23,8 @@ #include +#include "types.h" + class ChatLine; class AbstractUiMsg; @@ -43,7 +45,7 @@ class ChatWidget : public QAbstractScrollArea { public: ChatWidget(QWidget *parent = 0); ~ChatWidget(); - void init(QString net, QString buf); + void init(BufferId id); virtual QSize sizeHint() const; @@ -75,7 +77,7 @@ class ChatWidget : public QAbstractScrollArea { void handleScrollTimer(); private: - QString networkName, bufferName; + BufferId bufferId; enum SelectionMode { NoSelection, TextSelected, LinesSelected }; enum MouseMode { Normal, Pressed, DragTsSep, DragTextSep, MarkText, MarkLines }; enum MousePos { None, OverTsSep, OverTextSep, OverUrl };