Skip to content

Commit

Permalink
refresh action on wfs items
Browse files Browse the repository at this point in the history
  • Loading branch information
Samweli authored and nyalldawson committed Jan 18, 2020
1 parent d43ab4c commit b9a1945
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/providers/wfs/qgswfsdataitemguiprovider.cpp
Expand Up @@ -34,6 +34,12 @@ void QgsWfsDataItemGuiProvider::populateContextMenu( QgsDataItem *item, QMenu *m

if ( QgsWfsConnectionItem *connItem = qobject_cast< QgsWfsConnectionItem * >( item ) )
{
QAction *actionRefresh = new QAction( tr( "Refresh" ), this );
connect( actionRefresh, &QAction::triggered, this, [connItem] { refreshConnection( connItem ); } );
menu->addAction( actionRefresh );

menu->addSeparator();

QAction *actionEdit = new QAction( tr( "Edit…" ), this );
connect( actionEdit, &QAction::triggered, this, [connItem] { editConnection( connItem ); } );
menu->addAction( actionEdit );
Expand Down Expand Up @@ -77,3 +83,11 @@ void QgsWfsDataItemGuiProvider::deleteConnection( QgsDataItem *item )
// the parent should be updated
item->parent()->refreshConnections();
}

void QgsWfsDataItemGuiProvider::refreshConnection( QgsDataItem *item )
{
item->refresh();
// the parent should be updated
if ( item->parent() )
item->parent()->refreshConnections();
}
1 change: 1 addition & 0 deletions src/providers/wfs/qgswfsdataitemguiprovider.h
Expand Up @@ -32,6 +32,7 @@ class QgsWfsDataItemGuiProvider : public QObject, public QgsDataItemGuiProvider
static void newConnection( QgsDataItem *item );
static void editConnection( QgsDataItem *item );
static void deleteConnection( QgsDataItem *item );
static void refreshConnection( QgsDataItem *item );

};

Expand Down

0 comments on commit b9a1945

Please sign in to comment.