7959:44e15eda6506 | 7960:e8fc383322f7 |
---|---|
2 | 2 |
3 # Copyright (c) 2006 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> | 3 # Copyright (c) 2006 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing a splashscreen for eric6. | 7 Module implementing a splashscreen for eric. |
8 """ | 8 """ |
9 | 9 |
10 import os.path | 10 import os.path |
11 import logging | 11 import logging |
12 | 12 |
17 from eric6config import getConfig | 17 from eric6config import getConfig |
18 | 18 |
19 | 19 |
20 class SplashScreen(QSplashScreen): | 20 class SplashScreen(QSplashScreen): |
21 """ | 21 """ |
22 Class implementing a splashscreen for eric6. | 22 Class implementing a splashscreen for eric. |
23 """ | 23 """ |
24 def __init__(self): | 24 def __init__(self): |
25 """ | 25 """ |
26 Constructor | 26 Constructor |
27 """ | 27 """ |
52 QApplication.processEvents() | 52 QApplication.processEvents() |
53 | 53 |
54 | 54 |
55 class NoneSplashScreen(object): | 55 class NoneSplashScreen(object): |
56 """ | 56 """ |
57 Class implementing a "None" splashscreen for eric6. | 57 Class implementing a "None" splashscreen for eric. |
58 | 58 |
59 This class implements the same interface as the real splashscreen, | 59 This class implements the same interface as the real splashscreen, |
60 but simply does nothing. | 60 but simply does nothing. |
61 """ | 61 """ |
62 def __init__(self): | 62 def __init__(self): |