aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/createandroidmanifestwizard.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-02-13 14:15:54 +0100
committerhjk <hjk@qt.io>2020-02-18 11:58:09 +0000
commit644f1e4faa670977e61bfae07ca70d6f760e15c6 (patch)
tree79183732ddfe0fbdc3821b428d4b24cab1aa1fc8 /src/plugins/android/createandroidmanifestwizard.h
parentb18fceb15dacf32fa3bbe7ff1448a9ca57a6693b (diff)
Android: Un-export CreateAndroidManifestWizard
Not needed outside. Change-Id: I390802c73d3d8c2a3fa95bc24e944913cea49393 Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/android/createandroidmanifestwizard.h')
-rw-r--r--src/plugins/android/createandroidmanifestwizard.h59
1 files changed, 4 insertions, 55 deletions
diff --git a/src/plugins/android/createandroidmanifestwizard.h b/src/plugins/android/createandroidmanifestwizard.h
index 28aac0fa790..eee030ff339 100644
--- a/src/plugins/android/createandroidmanifestwizard.h
+++ b/src/plugins/android/createandroidmanifestwizard.h
@@ -28,69 +28,17 @@
#include "android_global.h"
#include <utils/fileutils.h>
-#include <utils/pathchooser.h>
#include <utils/wizard.h>
-QT_BEGIN_NAMESPACE
-class QComboBox;
-class QLabel;
-class QFormLayout;
-QT_END_NAMESPACE
-
-namespace Utils {
-class InfoLabel;
-}
-
namespace ProjectExplorer { class BuildSystem; }
namespace Android {
+namespace Internal {
-class CreateAndroidManifestWizard;
-
-class NoApplicationProFilePage : public QWizardPage
-{
- Q_OBJECT
-public:
- NoApplicationProFilePage(CreateAndroidManifestWizard *wizard);
-private:
- CreateAndroidManifestWizard *m_wizard;
-};
-
-class ChooseProFilePage : public QWizardPage
-{
- Q_OBJECT
-public:
- explicit ChooseProFilePage(CreateAndroidManifestWizard *wizard);
-
-private:
- void nodeSelected(int index);
-private:
- CreateAndroidManifestWizard *m_wizard;
- QComboBox *m_comboBox;
-};
-
-class ChooseDirectoryPage : public QWizardPage
+class CreateAndroidManifestWizard : public Utils::Wizard
{
- Q_OBJECT
-public:
- ChooseDirectoryPage(CreateAndroidManifestWizard *wizard);
- void initializePage();
-protected:
- bool isComplete() const;
-private:
- void checkPackageSourceDir();
-private:
- CreateAndroidManifestWizard *m_wizard;
- Utils::PathChooser *m_androidPackageSourceDir;
- Utils::InfoLabel *m_sourceDirectoryWarning;
- QLabel *m_label;
- QFormLayout *m_layout;
- bool m_complete;
-};
+ Q_DECLARE_TR_FUNCTIONS(Android::CreateAndroidManifestWizard)
-class ANDROID_EXPORT CreateAndroidManifestWizard : public Utils::Wizard
-{
- Q_OBJECT
public:
CreateAndroidManifestWizard(ProjectExplorer::BuildSystem *buildSystem);
@@ -122,4 +70,5 @@ private:
bool m_copyGradle;
};
+} // namespace Internal
} // namespace Android