X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtopia%2Fmainwidget.h;h=0c83ea0e2da73daea0bd31a533d3c4e708b9f791;hp=64c259619f2c463932036198c8f25a7cd7feea78;hb=ef12cc4010e853348474b4ea15c383dd596d4858;hpb=52380175425bdab29f825c9cd17a0e4c1952c2db diff --git a/src/qtopia/mainwidget.h b/src/qtopia/mainwidget.h index 64c25961..0c83ea0e 100644 --- a/src/qtopia/mainwidget.h +++ b/src/qtopia/mainwidget.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel IRC Development 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 * @@ -23,23 +23,36 @@ #include "ui_mainwidget.h" +#include "abstractbuffercontainer.h" +#include "bufferinfo.h" + class Buffer; class ChatWidget; -class MainWidget : public QWidget { +class MainWidget : public AbstractBufferContainer { Q_OBJECT public: - MainWidget(QWidget *parent = 0); + MainWidget(QWidget *parent); ~MainWidget(); - public slots: - void setBuffer(Buffer *); + signals: + void userInput(const BufferInfo &, const QString &); + + protected: + virtual AbstractChatView *createChatView(BufferId); + virtual void removeChatView(BufferId); + + protected slots: + virtual void showChatView(BufferId); + + private slots: + void userInput(const QString &); private: Ui::MainWidget ui; - QHash chatWidgets; - + QHash _chatViews; + BufferInfo currentBufferInfo; };