1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/auth/qgsauthconfigeditor.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsAuthConfigEditor : QWidget
{
%Docstring(signature="appended")
Widget for editing authentication configuration database
%End
%TypeHeaderCode
#include "qgsauthconfigeditor.h"
%End
public:
explicit QgsAuthConfigEditor( QWidget *parent /TransferThis/ = 0, bool showUtilities = true, bool relayMessages = true );
%Docstring
Widget for editing authentication configurations directly in database
:param parent: Parent widget
:param showUtilities: Whether to show the widget's utilities button
:param relayMessages: Whether to relay auth manager messages to internal
message bar
%End
void toggleTitleVisibility( bool visible );
%Docstring
Hide the widget's title, e.g. when embedding
%End
QStringList selectedAuthenticationConfigIds() const;
%Docstring
Returns the list of selected authentication configuration IDs
.. versionadded:: 3.20
%End
public slots:
void setShowUtilitiesButton( bool show = true );
%Docstring
Sets whether to show the widget's utilities button, e.g. when embedding
%End
void setRelayMessages( bool relay = true );
%Docstring
Sets whether to relay auth manager messages to internal message bar,
e.g. when embedding
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/auth/qgsauthconfigeditor.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|