view hgrunner.h @ 39:3fa4803ecf44

Version promoted to 0.7.0.
author Jari Korhonen <jtkorhonen@gmail.com>
date Sat, 19 Jun 2010 13:31:49 +0300
parents 45bfb8dc1faf
children f583e44d9d31
line wrap: on
line source
#ifndef HGRUNNER_H
#define HGRUNNER_H

/****************************************************************************
** Copyright (C) Jari Korhonen, 2010 (under lgpl)
****************************************************************************/

#include <QProgressBar>
#include <QProcess>
#include <QByteArray>
#include <QRect>

class HgRunner : public QProgressBar
{
    Q_OBJECT

    public:
        HgRunner(QWidget * parent = 0);
        ~HgRunner();

        void startProc(QString hgExePathAndName, QString workingDir, QStringList params, bool reportErrors = true);
        bool isProcRunning();
        void killProc();
        int  getExitCode();
        void hideProgBar();
        QString getStdOut();

    private:
        void setProcExitInfo(int procExitCode, QProcess::ExitStatus procExitStatus);
        QString getLastCommandLine();
        void presentErrorToUser();

        bool                    reportErrors;
        bool                    isRunning;
        QProcess                *proc;
        QString                 stdOut;
        QString                 stdErr;
        int                     exitCode;
        QProcess::ExitStatus    exitStatus;
        QString                 lastHgCommand;
        QString                 lastParams;


    private slots:
        void started();
        void error(QProcess::ProcessError error);
        void finished(int procExitCode, QProcess::ExitStatus procExitStatus);
};

#endif // HGRUNNER_H