[QGIS-Developer] Customizing Layer Panel

Nyall Dawson nyall.dawson at gmail.com
Wed Apr 26 15:06:31 PDT 2023


On Thu, 27 Apr 2023 at 07:42, Catania, Luke A ERDC-RDE-GRL-VA CIV via
QGIS-Developer <qgis-developer at lists.osgeo.org> wrote:
>
> But I am looking to access the dock widget and add two icons in its row
of icons or maybe a menu.

It's not available via the stable API, but let's not let that stop us! 😆

layer_tree = iface.layerTreeView()
layer_tree_dock = layer_tree.parent().parent()
toolbar = layer_tree_dock.findChildren(QToolBar)[0]

my_action = QAction('something')
toolbar.addAction(my_action)

Nyall


>
>
>
> Thanks in advance for any help,
>
> Luke
>
> _______________________________________________
> QGIS-Developer mailing list
> QGIS-Developer at lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-developer/attachments/20230427/813d9250/attachment.htm>


More information about the QGIS-Developer mailing list