2 |
2 |
3 # Copyright (c) 2002 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
3 # Copyright (c) 2002 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing the project browser part of the eric6 UI. |
7 Module implementing the project browser part of the eric UI. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import Qt |
10 from PyQt5.QtCore import Qt |
11 from PyQt5.QtGui import QColor |
11 from PyQt5.QtGui import QColor |
12 from PyQt5.QtWidgets import QApplication |
12 from PyQt5.QtWidgets import QApplication |
24 ) |
24 ) |
25 |
25 |
26 |
26 |
27 class ProjectBrowser(E5TabWidget): |
27 class ProjectBrowser(E5TabWidget): |
28 """ |
28 """ |
29 Class implementing the project browser part of the eric6 UI. |
29 Class implementing the project browser part of the eric UI. |
30 |
30 |
31 It generates a widget with up to seven tabs. The individual tabs contain |
31 It generates a widget with up to seven tabs. The individual tabs contain |
32 the project sources browser, the project forms browser, |
32 the project sources browser, the project forms browser, |
33 the project resources browser, the project translations browser, |
33 the project resources browser, the project translations browser, |
34 the project interfaces (IDL) browser and a browser for stuff, |
34 the project interfaces (IDL) browser and a browser for stuff, |