00001 /*************************************************************************** 00002 * Copyright (C) 2002 by Yann Hodique * 00003 * Yann.Hodique@lifl.fr * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 ***************************************************************************/ 00010 00011 #ifndef _BROWSERPAGE_H_ 00012 #define _BROWSERPAGE_H_ 00013 00014 #include <qwidget.h> 00015 #include <qaction.h> 00016 00017 #include "page.h" 00018 #include "master.h" 00019 #include "mtpbrowser.h" 00020 00021 00022 class QGridLayout; 00027 class BrowserPage : public Page { 00028 Q_OBJECT 00029 00030 public: 00031 BrowserPage(QWidget *parent, const char *name, Master * session); 00032 ~BrowserPage(); 00033 void append(const QString & msg); 00034 MtpBrowser* chat_view; 00035 00036 protected: 00037 QGridLayout* BrowserPageBaseLayout; 00038 00039 protected slots: 00040 virtual void languageChange(); 00041 }; 00042 00043 #endif