X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmsgprocessorstatuswidget.h;fp=src%2Fqtui%2Fmsgprocessorstatuswidget.h;h=b664e5da61314f0e17cd572b6800ee4409801025;hp=0000000000000000000000000000000000000000;hb=31253a98ef87edb8f87ff53270529ed4f7659612;hpb=f45fafc6d8ec122a7244cef1fdae1cdf16c6a0c7 diff --git a/src/qtui/msgprocessorstatuswidget.h b/src/qtui/msgprocessorstatuswidget.h new file mode 100644 index 00000000..b664e5da --- /dev/null +++ b/src/qtui/msgprocessorstatuswidget.h @@ -0,0 +1,40 @@ +/*************************************************************************** +* 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 MSGPROCESSORSTATUSWIDGET_H_ +#define MSGPROCESSORSTATUSWIDGET_H_ + +#include "ui_msgprocessorstatuswidget.h" + +class MsgProcessorStatusWidget : public QWidget { + Q_OBJECT + + public: + MsgProcessorStatusWidget(QWidget *parent = 0); + + public slots: + void setProgress(int value, int max); + + private: + Ui::MsgProcessorStatusWidget ui; + +}; + +#endif