X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fdebuglogwidget.h;fp=src%2Fqtui%2Fdebuglogwidget.h;h=476a80afa0e0583b8d69eeeb31f1e3f95d63cfd6;hp=0000000000000000000000000000000000000000;hb=dac44bc744a66eae63f85f0612221f869afcf9ce;hpb=034708a59ca1ee3195263a90941a2b145c520fef diff --git a/src/qtui/debuglogwidget.h b/src/qtui/debuglogwidget.h new file mode 100644 index 00000000..476a80af --- /dev/null +++ b/src/qtui/debuglogwidget.h @@ -0,0 +1,39 @@ +/*************************************************************************** + * 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 DEBUGLOGWIDGET_H +#define DEBUGLOGWIDGET_H + +#include "ui_debuglogwidget.h" + +class DebugLogWidget : public QWidget { + Q_OBJECT + +public: + DebugLogWidget(QWidget *parent = 0); + +private slots: + void logUpdated(); + +private: + Ui::DebugLogWidget ui; +}; + +#endif //DEBUGLOGWIDGET_H