c176e224ff89fe8daa1cf39f2b4cf1da3a37883e
[sface.git] / sfaconfigscreen.py
1
2 from PyQt4.QtGui import QWidget, QLabel
3
4 from sfadata import SfaData
5 from sfascreen import SfaScreen
6
7 class ConfigWidget(QWidget):
8     def __init__(self, parent=None):
9         QWidget.__init__(self, parent)
10         label = QLabel("config widget", self)
11
12
13 class SfaConfigScreen(SfaScreen):
14     def __init__(self, parent=None):
15         SfaScreen.__init__(self, parent)
16         config = ConfigWidget(self)
17         self.init(config, "Configure", "Configure the PlanetLab Federation GUI")