12 |
12 |
13 from PyQt4.QtCore import Qt |
13 from PyQt4.QtCore import Qt |
14 from PyQt4.QtGui import QApplication, QPixmap, QSplashScreen, QColor |
14 from PyQt4.QtGui import QApplication, QPixmap, QSplashScreen, QColor |
15 |
15 |
16 from eric5config import getConfig |
16 from eric5config import getConfig |
|
17 |
17 |
18 |
18 class SplashScreen(QSplashScreen): |
19 class SplashScreen(QSplashScreen): |
19 """ |
20 """ |
20 Class implementing a splashscreen for eric5. |
21 Class implementing a splashscreen for eric5. |
21 """ |
22 """ |
44 """ |
45 """ |
45 Public method to clear the message shown. |
46 Public method to clear the message shown. |
46 """ |
47 """ |
47 QSplashScreen.clearMessage(self) |
48 QSplashScreen.clearMessage(self) |
48 QApplication.processEvents() |
49 QApplication.processEvents() |
|
50 |
49 |
51 |
50 class NoneSplashScreen(object): |
52 class NoneSplashScreen(object): |
51 """ |
53 """ |
52 Class implementing a "None" splashscreen for eric5. |
54 Class implementing a "None" splashscreen for eric5. |
53 |
55 |