8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt4.QtCore import QProcess, Qt, QSize |
12 from PyQt4.QtCore import QProcess, Qt, QSize |
13 from PyQt4.QtGui import QMainWindow, QAction, QToolBar, QPlainTextEdit, \ |
13 from PyQt4.QtGui import QAction, QToolBar, QPlainTextEdit, \ |
14 QTextCursor, QBrush, QSpinBox, QComboBox |
14 QTextCursor, QBrush, QSpinBox, QComboBox |
15 |
15 |
16 from E5Gui.E5Application import e5App |
16 from E5Gui.E5Application import e5App |
17 from E5Gui import E5MessageBox |
17 from E5Gui import E5MessageBox |
|
18 from E5Gui.E5MainWindow import E5MainWindow |
18 |
19 |
19 import UI.PixmapCache |
20 import UI.PixmapCache |
20 |
21 |
21 import Preferences |
22 import Preferences |
22 |
23 |
23 |
24 |
24 class HgServeDialog(QMainWindow): |
25 class HgServeDialog(E5MainWindow): |
25 """ |
26 """ |
26 Class implementing a dialog for the Mercurial server. |
27 Class implementing a dialog for the Mercurial server. |
27 """ |
28 """ |
28 def __init__(self, vcs, path, parent=None): |
29 def __init__(self, vcs, path, parent=None): |
29 """ |
30 """ |