use QProcess instead of subprocess
[sface.git] / sfamainscreen.py
1
2 from PyQt4.QtGui import QWidget, QLabel
3
4 from sfadata import SfaData
5 from sfascreen import SfaScreen
6
7
8 class SliceWidget(QWidget):
9     def __init__(self, parent=None):
10         QWidget.__init__(self, parent)
11         label = QLabel("slice widget", self)
12
13
14 class SfaMainScreen(SfaScreen):
15     def __init__(self, parent=None):
16         SfaScreen.__init__(self, parent)
17         slice = SliceWidget(self)
18         self.init(slice, "Main Window", "PlanetLab Federation GUI")