X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Fnicklistwidget.h;h=1cb980bf6ee80a592906377c035007811724a2fb;hp=d15743d5e588f83fccb16df0d0149247000ead2d;hb=1989f165c2b754a42d3f06dfb5c33afd6111d820;hpb=99c92e21b3b9eb5ed661632cdfb69aabfc6b2deb diff --git a/src/qtopia/nicklistwidget.h b/src/qtopia/nicklistwidget.h index d15743d5..1cb980bf 100644 --- a/src/qtopia/nicklistwidget.h +++ b/src/qtopia/nicklistwidget.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -25,7 +25,8 @@ #include "ui_nicklistwidget.h" -class NickModel; +class Buffer; +class NickView; class NickListWidget : public QDialog { Q_OBJECT @@ -35,10 +36,15 @@ class NickListWidget : public QDialog { ~NickListWidget(); public slots: - void setNickModel(NickModel *model); + void setBuffer(Buffer *); + void reset(); + + private slots: + void bufferDestroyed(QObject *); private: Ui::NickListWidget ui; + QHash nickViews; };