Mercurial plugin, merge request with suggested fixes.

This commit is contained in:
Brian McGillion
2009-09-15 13:03:13 +03:00
parent 0915342d15
commit 989e1b5acf
42 changed files with 3504 additions and 3 deletions

View File

@@ -0,0 +1,33 @@
#ifndef CLONEWIZARD_H
#define CLONEWIZARD_H
#include <vcsbase/basecheckoutwizard.h>
#include <vcsbase/checkoutjobs.h>
#include <QtGui/QIcon>
namespace Mercurial {
namespace Internal {
class CloneWizard : public VCSBase::BaseCheckoutWizard
{
public:
CloneWizard(QObject *parent = 0);
QIcon icon() const;
QString description() const;
QString name() const;
protected:
QList<QWizardPage *> createParameterPages(const QString &path);
QSharedPointer<VCSBase::AbstractCheckoutJob> createJob(const QList<QWizardPage *> &parameterPages,
QString *checkoutPath);
private:
QIcon m_icon;
};
} //namespace Internal
} //namespace Mercurial
#endif // CLONEWIZARD_H