mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 19:02:53 +00:00
62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2008 by Andreas Pakulat <apaku@gmx.de *
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KDEVPLATFORM_OPENPROJECTDIALOG_H
|
|
#define KDEVPLATFORM_OPENPROJECTDIALOG_H
|
|
|
|
#include <kassistantdialog.h>
|
|
#include <kio/udsentry.h>
|
|
|
|
class KPageWidgetItem;
|
|
namespace KIO
|
|
{
|
|
class Job;
|
|
}
|
|
|
|
namespace KDevelop
|
|
{
|
|
class ProjectSourcePage;
|
|
class OpenProjectPage;
|
|
|
|
class OpenProjectDialog : public KAssistantDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
OpenProjectDialog( bool fetch, const KUrl& startUrl, QWidget* parent = 0 );
|
|
KUrl projectFileUrl();
|
|
QString projectName();
|
|
QString projectManager();
|
|
|
|
private slots:
|
|
void validateSourcePage( bool );
|
|
void validateOpenUrl( const KUrl& );
|
|
void validateProjectName( const QString& );
|
|
void validateProjectManager( const QString& );
|
|
void storeFileList(KIO::Job*, const KIO::UDSEntryList&);
|
|
void openPageAccepted();
|
|
|
|
private:
|
|
void validateProjectInfo();
|
|
KUrl m_url;
|
|
QString m_projectName;
|
|
QString m_projectManager;
|
|
KPageWidgetItem* sourcePage;
|
|
KPageWidgetItem* openPage;
|
|
KPageWidgetItem* projectInfoPage;
|
|
QStringList m_fileList;
|
|
|
|
KDevelop::OpenProjectPage* openPageWidget;
|
|
KDevelop::ProjectSourcePage* sourcePageWidget;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|