diff options
author | Timothy Pearson <[email protected]> | 2013-01-27 20:56:13 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-27 20:56:13 -0600 |
commit | 56605e6c2b9f31f219831f78342442890776245a (patch) | |
tree | dca0ae497eeac722bccd9b8f1ecb7de969cd868b /src/tdeio_umountwrapper.cpp | |
parent | aefa9862a0f84a347e6a2ed4f23931031fd64eea (diff) | |
download | tdeio-umountwrapper-56605e6c2b9f31f219831f78342442890776245a.tar.gz tdeio-umountwrapper-56605e6c2b9f31f219831f78342442890776245a.zip |
Rename kiobuffer and KHTML
Diffstat (limited to 'src/tdeio_umountwrapper.cpp')
-rw-r--r-- | src/tdeio_umountwrapper.cpp | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/tdeio_umountwrapper.cpp b/src/tdeio_umountwrapper.cpp new file mode 100644 index 0000000..775215c --- /dev/null +++ b/src/tdeio_umountwrapper.cpp @@ -0,0 +1,77 @@ +/*************************************************************************** + * Copyright (C) 2007 by Frode M. Døving * + * [email protected] * + * * + * 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. * + ***************************************************************************/ + + +#include "kio_umountwrapper.h" + +#include <cstdlib> +#include <tqtimer.h> + +#include <kapplication.h> +#include <klocale.h> +#include <kprogress.h> +#include <kprocess.h> +#include <kcmdlineargs.h> +#include <kdebug.h> + +kio_umountwrapper::kio_umountwrapper(const TQString& url) + : TDEApplication() +{ + m_progress = new KProgressDialog(); + setMainWidget(m_progress); + m_progress->setLabel(i18n("Synchronising data to disk, please wait")+"..."); + m_progress->setAutoClose(true); + m_progress->setAllowCancel(false); + m_progress->progressBar()->setTextEnabled(false); + m_progress->progressBar()->setTotalSteps(0); + m_progress->show(); + + TQTimer *t = new TQTimer(this); + connect(t, TQT_SIGNAL(timeout()), TQT_SLOT(progressAdvance())); + t->start(10, FALSE); + + TDEProcess *p = new TDEProcess(TQT_TQOBJECT(this)); + *p << "kio_media_mounthelper"; + *p << "-s"; + *p << url; + kdDebug() << "TDEProcess: " << url << endl; + connect(p, TQT_SIGNAL(processExited(TDEProcess *)), + this, TQT_SLOT(processFinished(TDEProcess *))); + p->start(); +} + +void kio_umountwrapper::progressAdvance() +{ + m_progress->progressBar()->advance(1); +} + +void kio_umountwrapper::processFinished(TDEProcess* p) +{ + if (p->normalExit() && p->exitStatus() == 0) + { + ::exit(0); + } + else + { + ::exit(1); + } +} + +#include "kio_umountwrapper.moc" |