forked from qt-creator/qt-creator
genericprojectmanager: code cosmetic
White space, namespaces, include order, comments, literal style, remove unneded include/declarations etc. Change-Id: Ifcb4371699c5cde244be1610b67cf81915cad2b2 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -37,23 +37,27 @@
|
||||
|
||||
namespace GenericProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
class GenericProjectWizardDialog;
|
||||
class SelectableFilesModel;
|
||||
|
||||
class FilesSelectionWizardPage : public QWizardPage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
FilesSelectionWizardPage(GenericProjectWizardDialog *genericProjectWizard, QWidget *parent = 0);
|
||||
virtual bool isComplete() const;
|
||||
virtual void initializePage();
|
||||
virtual void cleanupPage();
|
||||
bool isComplete() const;
|
||||
void initializePage();
|
||||
void cleanupPage();
|
||||
QStringList selectedFiles() const;
|
||||
QStringList selectedPaths() const;
|
||||
|
||||
private slots:
|
||||
void applyFilter();
|
||||
void parsingProgress(const QString &text);
|
||||
void parsingFinished();
|
||||
|
||||
private:
|
||||
GenericProjectWizardDialog *m_genericProjectWizardDialog;
|
||||
SelectableFilesModel *m_model;
|
||||
@@ -65,6 +69,7 @@ private:
|
||||
bool m_finished;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
} // namespace Internal
|
||||
} // namespace GenericProjectManager
|
||||
|
||||
#endif // FILESSELECTIONWIZARDPAGE_H
|
||||
|
||||
Reference in New Issue
Block a user