Skip to content

Commit

Permalink
Layout fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Nov 1, 2018
1 parent 083208c commit 105455c
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 5 deletions.
65 changes: 65 additions & 0 deletions python/gui/auto_generated/qgsdatasourceselectdialog.sip.in
@@ -0,0 +1,65 @@
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsdatasourceselectdialog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/




class QgsDataSourceSelectDialog: QDialog
{
%Docstring
The QgsDataSourceSelectDialog class embeds the browser view to
select an existing data source.

By default any layer type can be chosen, the valid layer
type can be restricted by setting a layer type filter with
setLayerTypeFilter(layerType) or by activating the filter
directly from the constructor.

To retrieve the selected data source, uri() can be called and it
will return a (possibly invalid) QgsMimeDataUtils.Uri.

.. versionadded:: 3.6
%End

%TypeHeaderCode
#include "qgsdatasourceselectdialog.h"
%End
public:

QgsDataSourceSelectDialog( bool setFilterByLayerType = false,
const QgsMapLayer::LayerType &layerType = QgsMapLayer::LayerType::VectorLayer,
QWidget *parent = 0 );
%Docstring
Constructs a QgsDataSourceSelectDialog, optionally filtering by layer type

:param setFilterByLayerType: activates filtering by layer type
:param layerType: sets the layer type filter, this is in effect only if filtering by layer type is also active
:param parent: the object
%End

~QgsDataSourceSelectDialog();

void setLayerTypeFilter( const QgsMapLayer::LayerType &layerType );
%Docstring
Sets layer type filter to ``layerType`` and activates the filtering
%End

QgsMimeDataUtils::Uri uri() const;
%Docstring
Returns the (possibly invalid) uri of the selected data source
%End

};

/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsdatasourceselectdialog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
4 changes: 2 additions & 2 deletions src/gui/qgsdatasourceselectdialog.cpp
Expand Up @@ -3,8 +3,8 @@
---------------------
begin : 1.11.2018
copyright : (C) 2018 by ale
email : [your-email-here]
copyright : (C) 2018 by Alessandro Pasotti
email : elpaso@itopen.it
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
Expand Down
9 changes: 6 additions & 3 deletions src/gui/qgsdatasourceselectdialog.h
Expand Up @@ -3,8 +3,8 @@
---------------------
begin : 1.11.2018
copyright : (C) 2018 by ale
email : [your-email-here]
copyright : (C) 2018 by Alessandro Pasotti
email : elpaso@itopen.it
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
Expand All @@ -31,7 +31,7 @@
* The QgsDataSourceSelectDialog class embeds the browser view to
* select an existing data source.
*
* By default it allows to select all layer types, the allowed layer
* By default any layer type can be chosen, the valid layer
* type can be restricted by setting a layer type filter with
* setLayerTypeFilter(layerType) or by activating the filter
* directly from the constructor.
Expand Down Expand Up @@ -65,6 +65,9 @@ class GUI_EXPORT QgsDataSourceSelectDialog: public QDialog, private Ui::QgsDataS
*/
void setLayerTypeFilter( const QgsMapLayer::LayerType &layerType );

/**
* Returns the (possibly invalid) uri of the selected data source
*/
QgsMimeDataUtils::Uri uri() const;

private slots:
Expand Down

0 comments on commit 105455c

Please sign in to comment.