Re: [QGIS-Developer] Building pyqgis doc locally

2022-12-13 Thread matteo via QGIS-Developer
you might need to copy the folder, same than for _templates: see https://github.com/qgis/pyqgis/search?q=_templates this approach seems working (at least locally). I've made a PR: https://github.com/qgis/pyqgis/pull/101 Cheers and thanks

Re: [QGIS-Developer] Problems configuring the statusBar

2022-12-13 Thread WhereGroup
Hey AF, oh, looks like the help() for those Qt objects is not as comprehensive as I hoped. >>> type(iface.mainWindow().statusBar()) https://doc.qt.io/qt-5/qstatusbar.html -> https://doc.qt.io/qt-5/qstatusbar-members.html -> https://doc.qt.io/qt-5/qwidget.html#styleSheet-prop >>>

Re: [QGIS-Developer] Building pyqgis doc locally

2022-12-13 Thread Denis Rouzaud via QGIS-Developer
you might need to copy the folder, same than for _templates: see https://github.com/qgis/pyqgis/search?q=_templates otherwise, look at https://github.com/qgis/pyqgis/pull/89/files?w=1 Le mar. 13 déc. 2022 à 09:12, matteo a écrit : > Hi Denis, > > > yes you can limit what you build > > see

Re: [QGIS-Developer] Building pyqgis doc locally

2022-12-13 Thread matteo via QGIS-Developer
Hi Denis, yes you can limit what you build see https://github.com/qgis/pyqgis/blob/master/scripts/build-docs.sh either use --package core/gui/… or --class QgsVector (which will work as QgsVector*) thanks, it works as