1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/***************************************************************************
* Copyright (c) 2004 Till Adam <adam@kde.org> *
* based on imapprogressdialog.cpp ,which is *
* Copyright (c) 2002-2003 Klar�vdalens Datakonsult AB *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library 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 Library 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 KDEVPLATFORM_PROGRESSDIALOG_H
#define KDEVPLATFORM_PROGRESSDIALOG_H
#include "overlaywidget.h"
#include <QMap>
#include <QScrollArea>
#include <QWidget>
class QProgressBar;
class QFrame;
class QLabel;
class QPushButton;
namespace KDevelop {
class ProgressItem;
class TransactionItem;
class SSLLabel;
class TransactionItemView : public QScrollArea
{
Q_OBJECT
public:
explicit TransactionItemView( QWidget * parent = nullptr, const char * name = nullptr );
~TransactionItemView() override {}
TransactionItem *addTransactionItem( ProgressItem *item, bool first );
QSize sizeHint() const override;
QSize minimumSizeHint() const override;
public Q_SLOTS:
void slotItemCompleted(TransactionItem * item);
protected:
void resizeEvent ( QResizeEvent *event ) override;
private:
QWidget *mBigBox;
};
class TransactionItem : public QWidget
{
Q_OBJECT
public:
TransactionItem( QWidget *parent, ProgressItem *item, bool first );
~TransactionItem() override;
void hideHLine();
void setProgress( int progress );
void setLabel( const QString & );
// the given text is interpreted as RichText, so you might need to
// Qt::escape() it before passing
void setStatus( const QString & );
void setTotalSteps( int totalSteps );
ProgressItem *item() const { return mItem; }
void addSubTransaction( ProgressItem *item );
// The progressitem is deleted immediately, we take 5s to go out,
// so better not use mItem during this time.
void setItemComplete() { mItem = nullptr; }
public Q_SLOTS:
void slotItemCanceled();
protected:
QProgressBar *mProgress;
QPushButton *mCancelButton;
QLabel *mItemLabel;
QLabel *mItemStatus;
QFrame *mFrame;
ProgressItem *mItem;
};
class ProgressDialog : public OverlayWidget
{
Q_OBJECT
public:
ProgressDialog( QWidget *alignWidget, QWidget *parent, const char *name = nullptr );
~ProgressDialog() override;
void setVisible( bool b ) override;
public Q_SLOTS:
void slotToggleVisibility();
protected Q_SLOTS:
void slotTransactionAdded( KDevelop::ProgressItem *item );
void slotTransactionCompleted( KDevelop::ProgressItem *item );
void slotTransactionCanceled( KDevelop::ProgressItem *item );
void slotTransactionProgress( KDevelop::ProgressItem *item, unsigned int progress );
void slotTransactionStatus( KDevelop::ProgressItem *item, const QString & );
void slotTransactionLabel( KDevelop::ProgressItem *item, const QString & );
void slotTransactionUsesBusyIndicator( KDevelop::ProgressItem *, bool );
void slotClose();
void slotShow();
void slotHide();
Q_SIGNALS:
void visibilityChanged( bool );
protected:
void closeEvent( QCloseEvent * ) override;
TransactionItemView *mScrollView;
QMap<const ProgressItem *, TransactionItem *> mTransactionsToListviewItems;
bool mWasLastShown;
};
} // namespace KDevelop
#endif // __KDevelop_PROGRESSDIALOG_H__
|