Während des Starts von QGIS werden im unteren Teil des Begrüßungsbildschirms Statusmeldungen wie "Wiederherstellen geladener Plugins" angezeigt.
Ich verwende eine startup.py-Funktion, mit der ich den Benutzer darüber informieren möchte, welcher Teil meines Startskripts gerade ausgeführt wird.
Ist es möglich, diese Informationen auf dem Startbildschirm anzuzeigen?
Edit1:
Als Workaround konnte ich beim Start meinen eigenen Splashscreen verwenden:
from qgis.gui import *
from qgis.utils import *
from qgis.core import *
from PyQt4.QtGui import *
from qgis.PyQt.QtCore import QSettings, Qt
import time
template=QgsApplication.qgisSettingsDirPath() + "python/"
app=QgsApplication.instance()
splash_pix = QPixmap(template+'splashscreen.png')
splash = QSplashScreen(splash_pix, Qt.WindowStaysOnTopHint)
splash.setWindowFlags(Qt.WindowStaysOnTopHint | Qt.FramelessWindowHint)
splash.setEnabled(False)
splash.setMask(splash_pix.mask())
progressBar = QProgressBar(splash)
progressBar.setMaximum(10)
progressBar.setGeometry(0, splash_pix.height() - 20, splash_pix.width(), 10)
splash.show()
if QgsApplication.instance().findChild(QSplashScreen):
QgsMessageLog.logMessage("ja", "gridseen", level=QgsMessageLog.INFO)
else:
QgsMessageLog.logMessage("nein", "gridseen", level=QgsMessageLog.INFO)
splash.showMessage("<h1><font color='white'>Grid Integration-Check!</font></h1>", Qt.AlignBottom | Qt.AlignCenter, Qt.black)
for i in range(1, 11):
progressBar.setValue(i)
t = time.time()
while time.time() < t + 0.1:
app.processEvents()
time.sleep(2)
splash.close()
Deshalb habe ich den Begrüßungsbildschirm in meinen QGIS-Python-Ordner gestellt (zum Beispiel https://github.com/webgeodatavore/qgis-splash-screens-birthday/raw/master/resized/qgis_version_2.18.png ).
Diese Lösung ist jedoch eine schnelle und schmutzige Umgehung.
Ist es nicht möglich, auf den Begrüßungsbildschirm zuzugreifen, der beim Start der QGIS-App erstellt wurde? Ich habe versucht, mithilfe von Zugriff zu erhalten QgsApplication.instance().findChild(QSplashScreen)
, konnte jedoch keinen Zugriff darauf erhalten.
https://github.com/qgis/QGIS/blob/7bd0285dfdef9456a5929a7b7031270ea0ee2601/src/app/main.cpp#L1286