/*************************************************************************** * Copyright (C) 2005-2007 by Rajko Albrecht * * ral@alwins-world.de * * * * 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. * * * * 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., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef STOPDLG_H #define STOPDLG_H #include "cursorstack.h" #include #include #include class TQTimer; class CContextListener; class TQLabel; class KProgress; class KTextBrowser; class TQVBoxLayout; /** @author Rajko Albrecht */ class StopDlg : public KDialogBase { TQ_OBJECT public: StopDlg(TQObject*,TQWidget *parent = 0, const char *name = 0,const TQString&caption=TQString(),const TQString&text=TQString()); virtual ~StopDlg(); bool cancelld(); protected: TQObject*m_Context; int m_MinDuration; bool mCancelled; TQTimer * mShowTimer; TQString mCancelText; bool mShown,mWait; TQLabel*mLabel; KProgress*m_ProgressBar; KProgress*m_NetBar; bool m_BarShown; bool m_netBarShown; TQTime m_StopTick; KTextBrowser*m_LogWindow; TQVBoxLayout*layout; TQString m_lastLog; unsigned int m_lastLogLines; CursorStack * cstack; virtual void showEvent(TQShowEvent*); virtual void hideEvent(TQHideEvent*); public slots: virtual void slotTick(); virtual void slotWait(bool); virtual void slotExtraMessage(const TQString&); protected slots: virtual void slotAutoShow(); virtual void slotCancel(); virtual void slotNetProgres(long long int, long long int); signals: void sigCancel(bool how); }; class StopSimpleDlg:public StopDlg { TQ_OBJECT public: StopSimpleDlg(TQWidget *parent = 0, const char *name = 0,const TQString&caption=TQString(),const TQString&text=TQString()); virtual ~StopSimpleDlg(){} bool isCanceld()const{return cancelld;} public slots: virtual void makeCancel(); protected slots: virtual void slotSimpleCancel(bool); protected: bool cancelld; }; #endif