Skip to content

Commit f459790

Browse files
committed
Moved arcgis dialogs to the provider directory
1 parent 73b66fa commit f459790

File tree

5 files changed

+5
-17
lines changed

5 files changed

+5
-17
lines changed

src/app/qgisapp.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,6 @@ Q_GUI_EXPORT extern int qt_defaultDpiX();
247247
#include "qgsshortcutsmanager.h"
248248
#include "qgssinglebandgrayrenderer.h"
249249
#include "qgssnappingwidget.h"
250-
#include "qgsarcgisservicesourceselect.h"
251250
#include "qgsstatisticalsummarydockwidget.h"
252251
#include "qgsstatusbar.h"
253252
#include "qgsstatusbarcoordinateswidget.h"

src/gui/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,6 @@ SET(QGIS_GUI_SRCS
302302
qgsoptionsdialogbase.cpp
303303
qgsorderbydialog.cpp
304304
qgsowssourceselect.cpp
305-
qgsarcgisservicesourceselect.cpp
306305
qgspanelwidget.cpp
307306
qgspanelwidgetstack.cpp
308307
qgspasswordlineedit.cpp
@@ -458,7 +457,6 @@ SET(QGIS_GUI_MOC_HDRS
458457
qgsoptionswidgetfactory.h
459458
qgsorderbydialog.h
460459
qgsowssourceselect.h
461-
qgsarcgisservicesourceselect.h
462460
qgspanelwidget.h
463461
qgspanelwidgetstack.h
464462
qgspasswordlineedit.h

src/providers/arcgisrest/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,11 @@ SET (AFS_MOC_HDRS
4242
IF (WITH_GUI)
4343
SET(AFS_SRCS ${AFS_SRCS}
4444
qgsafssourceselect.cpp
45+
qgsarcgisservicesourceselect.cpp
4546
)
4647
SET(AFS_MOC_HDRS ${AFS_MOC_HDRS}
4748
qgsafssourceselect.h
49+
qgsarcgisservicesourceselect.h
4850
)
4951
ENDIF ()
5052

@@ -83,9 +85,11 @@ SET (AMS_MOC_HDRS
8385
IF (WITH_GUI)
8486
SET(AMS_SRCS ${AMS_SRCS}
8587
qgsamssourceselect.cpp
88+
qgsarcgisservicesourceselect.cpp
8689
)
8790
SET(AMS_MOC_HDRS ${AMS_MOC_HDRS}
8891
qgsamssourceselect.h
92+
qgsarcgisservicesourceselect.h
8993
)
9094
ENDIF ()
9195

src/gui/qgsarcgisservicesourceselect.h renamed to src/providers/arcgisrest/qgsarcgisservicesourceselect.h

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,12 @@
1616
#ifndef QGSARCGISSERVICESOURCESELECT_H
1717
#define QGSARCGISSERVICESOURCESELECT_H
1818

19-
/// @cond PRIVATE
20-
21-
//
22-
// W A R N I N G
23-
// -------------
24-
//
25-
// This file is not part of the QGIS API. It exists purely as an
26-
// implementation detail. This header file may change from version to
27-
// version without notice, or even be removed.
28-
//
29-
30-
3119
#define SIP_NO_FILE
3220

3321
#include "ui_qgsarcgisservicesourceselectbase.h"
3422
#include "qgsrectangle.h"
3523
#include "qgscoordinatereferencesystem.h"
3624
#include "qgsabstractdatasourcewidget.h"
37-
#include "qgis_gui.h"
3825

3926
class QStandardItemModel;
4027
class QSortFilterProxyModel;
@@ -44,7 +31,7 @@ class QgsOwsConnection;
4431
/**
4532
* Base class for listing ArcGis layers available from a remote service.
4633
*/
47-
class GUI_EXPORT QgsArcGisServiceSourceSelect : public QgsAbstractDataSourceWidget, protected Ui::QgsArcGisServiceSourceSelectBase
34+
class QgsArcGisServiceSourceSelect : public QgsAbstractDataSourceWidget, protected Ui::QgsArcGisServiceSourceSelectBase
4835
{
4936
Q_OBJECT
5037

0 commit comments

Comments
 (0)