/* Rosegarden A MIDI and audio sequencer and musical notation editor. This program is Copyright 2000-2008 Guillaume Laurent , Chris Cannam , Richard Bown The moral rights of Guillaume Laurent, Chris Cannam, and Richard Bown to claim authorship of this work have been asserted. Other copyrights also apply to some parts of this work. Please see the AUTHORS file and individual file headers for details. 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. See the file COPYING included with this distribution for more information. */ #include "ProgressDialog.h" #include "CurrentProgressDialog.h" #include "misc/Debug.h" #include "gui/application/RosegardenApplication.h" #include #include #include #include #include #include namespace Rosegarden { bool ProgressDialog::m_modalVisible = false; ProgressDialog::ProgressDialog(TQWidget *creator, const char *name, bool modal): KProgressDialog(creator, name, i18n("Processing..."), TQString(), modal), m_wasVisible(false), m_frozen(false), m_modal(modal) { setCaption(i18n("Processing...")); RG_DEBUG << "ProgressDialog::ProgressDialog type 1 - " << labelText() << " - modal : " << modal << endl; connect(progressBar(), TQ_SIGNAL(percentageChanged (int)), this, TQ_SLOT(slotCheckShow(int))); m_chrono.start(); CurrentProgressDialog::set (this); setMinimumDuration(500); // set a default value for this } ProgressDialog::ProgressDialog( const TQString &labelText, int totalSteps, TQWidget *creator, const char *name, bool modal) : KProgressDialog(creator, name, i18n("Processing..."), labelText, modal), m_wasVisible(false), m_frozen(false), m_modal(modal) { progressBar()->setTotalSteps(totalSteps); RG_DEBUG << "ProgressDialog::ProgressDialog type 2 - " << labelText << " - modal : " << modal << endl; connect(progressBar(), TQ_SIGNAL(percentageChanged (int)), this, TQ_SLOT(slotCheckShow(int))); m_chrono.start(); CurrentProgressDialog::set (this); setMinimumDuration(500); // set a default value for this } ProgressDialog::~ProgressDialog() { m_modalVisible = false; } void ProgressDialog::polish() { KProgressDialog::polish(); if (allowCancel()) setCursor(TQt::ArrowCursor); else TQApplication::setOverrideCursor(TQCursor(TQt::waitCursor)); } void ProgressDialog::hideEvent(TQHideEvent* e) { if (!allowCancel()) TQApplication::restoreOverrideCursor(); KProgressDialog::hideEvent(e); m_modalVisible = false; } void ProgressDialog::slotSetOperationName(TQString name) { // RG_DEBUG << "ProgressDialog::slotSetOperationName(" // << name << ") visible : " << isVisible() << endl; setLabel(name); // Little trick stolen from TQProgressDialog // increase resize only, never shrink int w = TQMAX( isVisible() ? width() : 0, sizeHint().width() ); int h = TQMAX( isVisible() ? height() : 0, sizeHint().height() ); resize( w, h ); } void ProgressDialog::slotCancel() { RG_DEBUG << "ProgressDialog::slotCancel()\n"; KProgressDialog::slotCancel(); slotFreeze(); } void ProgressDialog::slotCheckShow(int) { // RG_DEBUG << "ProgressDialog::slotCheckShow() : " // << m_chrono.elapsed() << " - " << minimumDuration() // << endl; if (!isVisible() && !m_frozen && m_chrono.elapsed() > minimumDuration()) { RG_DEBUG << "ProgressDialog::slotCheckShow() : showing dialog\n"; show(); if (m_modal) m_modalVisible = true; processEvents(); } } void ProgressDialog::slotFreeze() { RG_DEBUG << "ProgressDialog::slotFreeze()\n"; m_wasVisible = isVisible(); if (isVisible()) { m_modalVisible = false; hide(); } // This is also a convenient place to ensure the wait cursor (if // currently shown) returns to the original cursor to ensure that // the user can respond to whatever's freezing the progress dialog TQApplication::restoreOverrideCursor(); mShowTimer->stop(); m_frozen = true; } void ProgressDialog::slotThaw() { RG_DEBUG << "ProgressDialog::slotThaw()\n"; if (m_wasVisible) { if (m_modal) m_modalVisible = true; show(); } // Restart timer mShowTimer->start(minimumDuration()); m_frozen = false; m_chrono.restart(); } void ProgressDialog::processEvents() { // RG_DEBUG << "ProgressDialog::processEvents: modalVisible is " // << m_modalVisible << endl; if (m_modalVisible) { kapp->processEvents(50); } else { rgapp->refreshGUI(50); } } } #include "ProgressDialog.moc"