summaryrefslogtreecommitdiff
path: root/src/ui/progressBar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/progressBar.cpp')
-rw-r--r--src/ui/progressBar.cpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/src/ui/progressBar.cpp b/src/ui/progressBar.cpp
new file mode 100644
index 0000000..9da0479
--- /dev/null
+++ b/src/ui/progressBar.cpp
@@ -0,0 +1,100 @@
+/***************************************************************************
+ * fqterm, a terminal emulator for both BBS and *nix. *
+ * Copyright (C) 2008 fqterm development group. *
+ * *
+ * 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 St, Fifth Floor, Boston, MA 02110-1301 USA. *
+ ***************************************************************************/
+
+#include <QLabel>
+#include <QPixmap>
+#include <QProgressBar>
+#include <QPushButton>
+
+#include "fqterm_trace.h"
+#include "fqterm_path.h"
+#include "progressBar.h"
+
+namespace FQTerm {
+
+ProgressBar::ProgressBar(QWidget *parent, QLabel *label)
+ : QProgressBar(parent),
+ label_(label),
+ isFinished_(false) {
+ //DEBUG_FUNC_INFO
+ setMaximum(100);
+ label_->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
+ abortButton_ = new QPushButton("Abort", parent);
+ abortButton_->setObjectName("Abort");
+ abortButton_->hide();
+ //m_abort->setText( tr("Abort") );
+ abortButton_->setIcon(QPixmap(getPath(RESOURCE) + "pic/messagebox_critical.png"));
+ label_->show();
+ show();
+}
+
+ProgressBar::~ProgressBar() {
+ //DEBUG_FUNC_INFO
+}
+
+ProgressBar &ProgressBar::setDescription(const QString &text) {
+ description_ = text;
+ label_->setText(text);
+
+ return *this;
+}
+
+ProgressBar &ProgressBar::setStatus(const QString &text) {
+ QString s = description_;
+ s += " [";
+ s += text;
+ s += ']';
+
+ label_->setText(s);
+ parentWidget()->adjustSize();
+
+ return *this;
+}
+
+ProgressBar &ProgressBar::setAbortSlot(QObject *receiver, const char *slot) {
+ FQ_VERIFY(connect(abortButton_, SIGNAL(clicked()), receiver, slot));
+ FQ_VERIFY(connect(abortButton_, SIGNAL(clicked()), this, SLOT(hide())));
+ abortButton_->show();
+
+ parentWidget()->adjustSize();
+
+ return *this;
+}
+
+void ProgressBar::setDone() {
+ if (!isFinished_) {
+ isFinished_ = true;
+ abortButton_->setEnabled(false);
+ setStatus(tr("Done"));
+ } else {
+ // then we we're aborted
+ setStatus(tr("Aborted"));
+ }
+}
+
+void ProgressBar::hide() {
+ //NOTE naughty
+
+ isFinished_ = true;
+ abortButton_->setEnabled(false);
+ setStatus(tr("Aborting..."));
+}
+
+} // namespace FQTerm