回答:
Pythonコンソールで次のコードを使用して、ツールバーにボタンを作成し、すべてのベクターレイヤーのラベルを切り替えることができます。
action = QAction(QIcon(""), "Turn labels" + "\n" + "ON/OFF", iface.mainWindow())
action.setCheckable(True)
iface.addToolBarIcon(action)
def label_control():
for layer in QgsProject.instance().mapLayers().values():
if layer.type() == QgsMapLayer.VectorLayer:
if action.isChecked() == True:
layer.setLabelsEnabled(True)
else:
layer.setLabelsEnabled(False)
layer.triggerRepaint()
action.triggered.connect(label_control)
# Uncomment line below if you want to remove the icon yourself,
# otherwise it will be removed automatically when you restart QGIS
iface.removeToolBarIcon(action)
コードは、QGISのすべてのレイヤーのすべてのラベルのオン/オフを切り替える方法という質問に基づいていました。
すべてのレイヤーのラベルのオン/オフを切り替えるボタンがある非アクティブ化/アクティブラベルプラグインを使用できます。