X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatmonitorview.h;fp=src%2Fqtui%2Fchatmonitorview.h;h=bf0b3346d7fe0cfbad6b3d1b87b6bd0529a4aec9;hp=0000000000000000000000000000000000000000;hb=9d52e49424afb60c2f28073051c1dbf25f47adec;hpb=dbefd590650e9053c7a1513a5f49aad3e582108a diff --git a/src/qtui/chatmonitorview.h b/src/qtui/chatmonitorview.h new file mode 100644 index 00000000..bf0b3346 --- /dev/null +++ b/src/qtui/chatmonitorview.h @@ -0,0 +1,44 @@ +/*************************************************************************** + * 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) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef CHATMONITORVIEW_H +#define CHATMONITORVIEW_H + +#include "chatview.h" + +class ChatMonitorFilter; + +class ChatMonitorView : public ChatView { + Q_OBJECT + +public: + ChatMonitorView(ChatMonitorFilter *filter, QWidget *parent); + +protected: + virtual void contextMenuEvent(QContextMenuEvent *event); + +private slots: + void showFieldsChanged(bool checked); + +private: + ChatMonitorFilter *_filter; +}; + +#endif //CHATMONITORVIEW_H