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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/codeeditors/qgscodeeditordockwidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsCodeEditorDockWidget : QWidget
{
%Docstring(signature="appended")
A custom dock widget for code editors.
.. warning::
Exposed to Python for internal use only -- this class is not considered stable API.
.. versionadded:: 3.32
%End
%TypeHeaderCode
#include "qgscodeeditordockwidget.h"
%End
public:
QgsCodeEditorDockWidget( const QString &windowGeometrySettingsKey = QString(), bool usePersistentWidget = false );
%Docstring
Constructor for QgsCodeEditorDockWidget, with the specified window
geometry settings key.
If ``usePersistentWidget`` is ``True`` then the widget (either as a dock
or window) cannot be destroyed and must be hidden instead.
%End
~QgsCodeEditorDockWidget();
void setTitle( const QString &title );
%Docstring
Sets the title to use for the code editor dock widget or window.
%End
QToolButton *dockToggleButton();
%Docstring
Returns the dock toggle button for the widget, which is used to toggle
between dock or full window mode.
%End
void setDockObjectName( const QString &name );
%Docstring
Sets the object name of the dock widget
%End
bool isUserVisible() const;
%Docstring
Returns ``True`` if the widget is user visible.
%End
public slots:
void setUserVisible( bool visible );
%Docstring
Sets whether the editor is user visible.
%End
signals:
void visibilityChanged( bool isVisible );
%Docstring
Emitted when the editor's visibility is changed.
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/codeeditors/qgscodeeditordockwidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|