~ubuntu-branches/ubuntu/wily/qtbase-opensource-src/wily

« back to all changes in this revision

Viewing changes to src/widgets/dialogs/qprogressdialog.h

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 12:46:17 UTC
  • Revision ID: package-import@ubuntu.com-20130205124617-c8jouts182j002fx
Tags: upstream-5.0.1+dfsg
ImportĀ upstreamĀ versionĀ 5.0.1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the QtGui module of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:LGPL$
 
9
** Commercial License Usage
 
10
** Licensees holding valid commercial Qt licenses may use this file in
 
11
** accordance with the commercial license agreement provided with the
 
12
** Software or, alternatively, in accordance with the terms contained in
 
13
** a written agreement between you and Digia.  For licensing terms and
 
14
** conditions see http://qt.digia.com/licensing.  For further information
 
15
** use the contact form at http://qt.digia.com/contact-us.
 
16
**
 
17
** GNU Lesser General Public License Usage
 
18
** Alternatively, this file may be used under the terms of the GNU Lesser
 
19
** General Public License version 2.1 as published by the Free Software
 
20
** Foundation and appearing in the file LICENSE.LGPL included in the
 
21
** packaging of this file.  Please review the following information to
 
22
** ensure the GNU Lesser General Public License version 2.1 requirements
 
23
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
24
**
 
25
** In addition, as a special exception, Digia gives you certain additional
 
26
** rights.  These rights are described in the Digia Qt LGPL Exception
 
27
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
28
**
 
29
** GNU General Public License Usage
 
30
** Alternatively, this file may be used under the terms of the GNU
 
31
** General Public License version 3.0 as published by the Free Software
 
32
** Foundation and appearing in the file LICENSE.GPL included in the
 
33
** packaging of this file.  Please review the following information to
 
34
** ensure the GNU General Public License version 3.0 requirements will be
 
35
** met: http://www.gnu.org/copyleft/gpl.html.
 
36
**
 
37
**
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
#ifndef QPROGRESSDIALOG_H
 
43
#define QPROGRESSDIALOG_H
 
44
 
 
45
#include <QtWidgets/qdialog.h>
 
46
 
 
47
QT_BEGIN_HEADER
 
48
 
 
49
QT_BEGIN_NAMESPACE
 
50
 
 
51
 
 
52
#ifndef QT_NO_PROGRESSDIALOG
 
53
 
 
54
class QPushButton;
 
55
class QLabel;
 
56
class QProgressBar;
 
57
class QTimer;
 
58
class QProgressDialogPrivate;
 
59
 
 
60
class Q_WIDGETS_EXPORT QProgressDialog : public QDialog
 
61
{
 
62
    Q_OBJECT
 
63
    Q_DECLARE_PRIVATE(QProgressDialog)
 
64
    Q_PROPERTY(bool wasCanceled READ wasCanceled)
 
65
    Q_PROPERTY(int minimum READ minimum WRITE setMinimum)
 
66
    Q_PROPERTY(int maximum READ maximum WRITE setMaximum)
 
67
    Q_PROPERTY(int value READ value WRITE setValue)
 
68
    Q_PROPERTY(bool autoReset READ autoReset WRITE setAutoReset)
 
69
    Q_PROPERTY(bool autoClose READ autoClose WRITE setAutoClose)
 
70
    Q_PROPERTY(int minimumDuration READ minimumDuration WRITE setMinimumDuration)
 
71
    Q_PROPERTY(QString labelText READ labelText WRITE setLabelText)
 
72
 
 
73
public:
 
74
    explicit QProgressDialog(QWidget *parent = 0, Qt::WindowFlags flags = 0);
 
75
    QProgressDialog(const QString &labelText, const QString &cancelButtonText,
 
76
                    int minimum, int maximum, QWidget *parent = 0, Qt::WindowFlags flags = 0);
 
77
    ~QProgressDialog();
 
78
 
 
79
    void setLabel(QLabel *label);
 
80
    void setCancelButton(QPushButton *button);
 
81
    void setBar(QProgressBar *bar);
 
82
 
 
83
    bool wasCanceled() const;
 
84
 
 
85
    int minimum() const;
 
86
    int maximum() const;
 
87
 
 
88
    int value() const;
 
89
 
 
90
    QSize sizeHint() const;
 
91
 
 
92
    QString labelText() const;
 
93
    int minimumDuration() const;
 
94
 
 
95
    void setAutoReset(bool reset);
 
96
    bool autoReset() const;
 
97
    void setAutoClose(bool close);
 
98
    bool autoClose() const;
 
99
 
 
100
#ifdef Q_NO_USING_KEYWORD
 
101
#ifndef Q_QDOC
 
102
    void open() { QDialog::open(); }
 
103
#endif
 
104
#else
 
105
    using QDialog::open;
 
106
#endif
 
107
    void open(QObject *receiver, const char *member);
 
108
 
 
109
public Q_SLOTS:
 
110
    void cancel();
 
111
    void reset();
 
112
    void setMaximum(int maximum);
 
113
    void setMinimum(int minimum);
 
114
    void setRange(int minimum, int maximum);
 
115
    void setValue(int progress);
 
116
    void setLabelText(const QString &text);
 
117
    void setCancelButtonText(const QString &text);
 
118
    void setMinimumDuration(int ms);
 
119
 
 
120
Q_SIGNALS:
 
121
    void canceled();
 
122
 
 
123
protected:
 
124
    void resizeEvent(QResizeEvent *event);
 
125
    void closeEvent(QCloseEvent *event);
 
126
    void changeEvent(QEvent *event);
 
127
    void showEvent(QShowEvent *event);
 
128
 
 
129
protected Q_SLOTS:
 
130
    void forceShow();
 
131
 
 
132
private:
 
133
    Q_DISABLE_COPY(QProgressDialog)
 
134
 
 
135
    Q_PRIVATE_SLOT(d_func(), void _q_disconnectOnClose())
 
136
};
 
137
 
 
138
#endif // QT_NO_PROGRESSDIALOG
 
139
 
 
140
QT_END_NAMESPACE
 
141
 
 
142
QT_END_HEADER
 
143
 
 
144
#endif // QPROGRESSDIALOG_H