Base class for any widget that can be shown as a inline panel.
More...
#include <qgspanelwidget.h>
|
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...
|
|
|
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 27 of file qgspanelwidget.h.
◆ QgsPanelWidget()
QgsPanelWidget::QgsPanelWidget |
( |
QWidget * |
parent = nullptr | ) |
|
Base class for any widget that can be shown as a inline panel.
- Parameters
-
Definition at line 24 of file qgspanelwidget.cpp.
◆ acceptPanel
void QgsPanelWidget::acceptPanel |
( |
| ) |
|
|
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 97 of file qgspanelwidget.cpp.
◆ autoDelete()
bool QgsPanelWidget::autoDelete |
( |
| ) |
|
|
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.
- Returns
- The auto delete value for the widget.
Definition at line 97 of file qgspanelwidget.h.
◆ connectChildPanel()
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.
- Parameters
-
panel | The panel to connect. |
Definition at line 38 of file qgspanelwidget.cpp.
◆ connectChildPanels()
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.
- Parameters
-
panels | A list of panel widgets to connect. |
Definition at line 29 of file qgspanelwidget.cpp.
◆ dockMode()
bool QgsPanelWidget::dockMode |
( |
| ) |
|
|
inline |
Returns the dock mode state.
- Returns
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 81 of file qgspanelwidget.h.
◆ findParentPanel()
Traces through the parents of a widget to find if it is contained within a QgsPanelWidget widget.
- Parameters
-
widget | widget which may be contained within a panel widget |
- Returns
- parent panel widget if found, otherwise
nullptr
- Since
- QGIS 3.0
Definition at line 49 of file qgspanelwidget.cpp.
◆ keyPressEvent()
void QgsPanelWidget::keyPressEvent |
( |
QKeyEvent * |
event | ) |
|
|
overrideprotected |
Overridden key press event to handle the esc event on the widget.
- Parameters
-
Definition at line 102 of file qgspanelwidget.cpp.
◆ openPanel
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.
- Parameters
-
panel | The panel widget to open. |
Definition at line 69 of file qgspanelwidget.cpp.
◆ panelAccepted
Emitted when the panel is accepted by the user.
- Parameters
-
panel | The panel widget that was accepted. |
- Note
- This argument is normally raised with emit panelAccepted(this) so that callers can retrieve the widget easier in calling code.
-
this is emitted only when this panel is accepted, and is not emitted for child panels. For example, if this panel opens a second stacked panel, then this panel will not emit panelAccepted when the second panel is accepted.
◆ panelTitle()
QString QgsPanelWidget::panelTitle |
( |
| ) |
|
|
inline |
The title of the panel.
- Returns
- The title pf the panel.
Definition at line 48 of file qgspanelwidget.h.
◆ setAutoDelete()
void QgsPanelWidget::setAutoDelete |
( |
bool |
autoDelete | ) |
|
|
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.
- Parameters
-
autoDelete | Enable or disable auto delete on the panel. |
Definition at line 89 of file qgspanelwidget.h.
◆ setDockMode()
void QgsPanelWidget::setDockMode |
( |
bool |
dockMode | ) |
|
|
virtual |
◆ setPanelTitle()
void QgsPanelWidget::setPanelTitle |
( |
const QString & |
panelTitle | ) |
|
|
inline |
Set the title of the panel when shown in the interface.
- Parameters
-
panelTitle | The panel title. |
Definition at line 42 of file qgspanelwidget.h.
◆ showPanel
Emit when you require a panel to be show in the interface.
- Parameters
-
panel | The panel widget to show. |
- Note
- If you are connected to this signal you should also connect given panels showPanel signal as they can be nested.
◆ widgetChanged
void QgsPanelWidget::widgetChanged |
( |
| ) |
|
|
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.
The documentation for this class was generated from the following files: