diff -r 9e14817925e5 -r 3885b9d7bd31 src/eric7/Project/ProjectBrowser.py --- a/src/eric7/Project/ProjectBrowser.py Tue Jan 24 10:16:03 2023 +0100 +++ b/src/eric7/Project/ProjectBrowser.py Wed Mar 01 09:05:47 2023 +0100 @@ -50,6 +50,7 @@ @signal designerFile(filename) emitted to open a Qt-Designer file (str) @signal linguistFile(filename) emitted to open a Qt-Linguist (*.ts) file (str) + @signal pdfFile(filename) emitted to open a PDF file (str) @signal pixmapEditFile(filename) emitted to edit a pixmap file (str) @signal pixmapFile(filename) emitted to open a pixmap file (str) @signal preferencesChanged() emitted when the preferences have been changed @@ -80,6 +81,7 @@ closeSourceWindow = pyqtSignal(str) designerFile = pyqtSignal(str) linguistFile = pyqtSignal(str) + pdfFile = pyqtSignal(str) pixmapEditFile = pyqtSignal(str) pixmapFile = pyqtSignal(str) preferencesChanged = pyqtSignal()