QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Base class for any widget that can be shown as a inline panel. More...
#include <qgspanelwidget.h>
Public Slots | |
void | acceptPanel () |
Accept the panel. More... | |
void | openPanel (QgsPanelWidget *panel) |
Open a panel or dialog depending on dock mode setting If dock mode is true this method will emit the showPanel signal for connected slots to handle the open event. More... | |
Signals | |
void | panelAccepted (QgsPanelWidget *panel) |
Emitted when the panel is accepted by the user. More... | |
void | showPanel (QgsPanelWidget *panel) |
Emit when you require a panel to be show in the interface. More... | |
void | widgetChanged () |
Emitted when the widget state changes. More... | |
Public Member Functions | |
QgsPanelWidget (QWidget *parent=nullptr) | |
Base class for any widget that can be shown as a inline panel. More... | |
virtual bool | applySizeConstraintsToStack () const |
Returns true if the size constraints and hints for the panel widget should be applied to the parent QgsPanelWidgetStack which this panel is shown in. More... | |
bool | autoDelete () |
The the auto delete property on the widget. More... | |
void | connectChildPanel (QgsPanelWidget *panel) |
Connect the given sub panel widgets showPanel signals to this current panels main showPanel event to bubble up to the user. More... | |
void | connectChildPanels (const QList< QgsPanelWidget * > &panels) |
Connect the given sub panel widgets showPanel signals to this current panels main showPanel event to bubble up to the user. More... | |
bool | dockMode () |
Returns the dock mode state. More... | |
virtual QMenu * | menuButtonMenu () |
Returns the menu to use for the menu button for this panel, or nullptr if no menu button is required. More... | |
virtual QString | menuButtonTooltip () const |
Returns the (translated) tooltip text to use for the menu button for this panel. More... | |
QString | panelTitle () |
The title of the panel. More... | |
void | setAutoDelete (bool autoDelete) |
The the auto delete property on the widget. More... | |
virtual void | setDockMode (bool dockMode) |
Set the widget in dock mode which tells the widget to emit panel widgets and not open dialogs. More... | |
void | setPanelTitle (const QString &panelTitle) |
Set the title of the panel when shown in the interface. More... | |
Static Public Member Functions | |
static QgsPanelWidget * | findParentPanel (QWidget *widget) |
Traces through the parents of a widget to find if it is contained within a QgsPanelWidget widget. More... | |
Protected Member Functions | |
void | keyPressEvent (QKeyEvent *event) override |
Overridden key press event to handle the esc event on the widget. More... | |
Base class for any widget that can be shown as a inline panel.
Definition at line 29 of file qgspanelwidget.h.
QgsPanelWidget::QgsPanelWidget | ( | QWidget * | parent = nullptr | ) |
Base class for any widget that can be shown as a inline panel.
parent | Parent widget. |
Definition at line 24 of file qgspanelwidget.cpp.
|
slot |
Accept the panel.
Causes panelAccepted to be emitted. Widgets are normally removed form the interface using the panel manager or the caller.
Definition at line 112 of file qgspanelwidget.cpp.
|
virtual |
Returns true
if the size constraints and hints for the panel widget should be applied to the parent QgsPanelWidgetStack which this panel is shown in.
The default behavior is to return false
.
Reimplemented in QgsTemporalControllerWidget.
Definition at line 49 of file qgspanelwidget.cpp.
|
inline |
The the auto delete property on the widget.
true
by default. When auto delete is enabled when a panel is removed from the stack it will be deleted.
Definition at line 109 of file qgspanelwidget.h.
void QgsPanelWidget::connectChildPanel | ( | QgsPanelWidget * | panel | ) |
Connect the given sub panel widgets showPanel signals to this current panels main showPanel event to bubble up to the user.
Use this method if you have children widgets that need to show a panel to the user.
panel | The panel to connect. |
Definition at line 38 of file qgspanelwidget.cpp.
void QgsPanelWidget::connectChildPanels | ( | const QList< QgsPanelWidget * > & | panels | ) |
Connect the given sub panel widgets showPanel signals to this current panels main showPanel event to bubble up to the user.
Use this method if you have children widgets that need to show a panel to the user.
panels | A list of panel widgets to connect. |
Definition at line 29 of file qgspanelwidget.cpp.
|
inline |
Returns the dock mode state.
true
if in dock mode. If in dock mode the widget will emit the showPanel signal to handle panel opening If false
it will open dialogs when openPanel is called. Definition at line 93 of file qgspanelwidget.h.
|
static |
Traces through the parents of a widget to find if it is contained within a QgsPanelWidget widget.
widget | widget which may be contained within a panel widget |
nullptr
Definition at line 54 of file qgspanelwidget.cpp.
|
overrideprotected |
Overridden key press event to handle the esc event on the widget.
event | The key event |
Definition at line 117 of file qgspanelwidget.cpp.
|
virtual |
Returns the menu to use for the menu button for this panel, or nullptr
if no menu button is required.
Reimplemented in QgsLabelEngineConfigWidget.
Definition at line 79 of file qgspanelwidget.cpp.
|
virtual |
Returns the (translated) tooltip text to use for the menu button for this panel.
This is only used when the panel returns a menuButtonMenu().
Reimplemented in QgsLabelEngineConfigWidget.
Definition at line 74 of file qgspanelwidget.cpp.
|
slot |
Open a panel or dialog depending on dock mode setting If dock mode is true
this method will emit the showPanel signal for connected slots to handle the open event.
If dock mode is false
this method will open a dialog and block the user.
panel | The panel widget to open. |
Definition at line 84 of file qgspanelwidget.cpp.
|
signal |
Emitted when the panel is accepted by the user.
panel | The panel widget that was accepted. |
|
inline |
The title of the panel.
Definition at line 50 of file qgspanelwidget.h.
|
inline |
The the auto delete property on the widget.
true
by default. When auto delete is enabled when a panel is removed from the stack it will be deleted.
autoDelete | Enable or disable auto delete on the panel. |
Definition at line 101 of file qgspanelwidget.h.
|
virtual |
Set the widget in dock mode which tells the widget to emit panel widgets and not open dialogs.
dockMode | true to enable dock mode. |
Reimplemented in QgsSingleSymbolRendererWidget, QgsRuleBasedRendererWidget, QgsRendererWidget, QgsMergedFeatureRendererWidget, QgsLayerPropertiesWidget, QgsInvertedPolygonRendererWidget, QgsTextFormatPanelWidget, QgsPropertyAssistantWidget, QgsPointCloudRendererPropertiesWidget, QgsLabelingRulePropsWidget, and QgsRuleBasedLabelingWidget.
Definition at line 44 of file qgspanelwidget.cpp.
|
inline |
Set the title of the panel when shown in the interface.
panelTitle | The panel title. |
Definition at line 44 of file qgspanelwidget.h.
|
signal |
Emit when you require a panel to be show in the interface.
panel | The panel widget to show. |
|
signal |
Emitted when the widget state changes.
Connect to this to pull any changes off the widget when needed. As panels are non blocking "dialogs" you should listen to this signal to give the user feedback when something changes.