Dummy panels for OpenCirrus
[sfa-gui.git] / RequestPanel.py
diff --git a/RequestPanel.py b/RequestPanel.py
new file mode 100644 (file)
index 0000000..b011899
--- /dev/null
@@ -0,0 +1,23 @@
+from pyjamas.ui.VerticalPanel import VerticalPanel
+from pyjamas.ui.HorizontalPanel import HorizontalPanel
+from pyjamas.ui.Button import Button
+from pyjamas.ui.HTML import HTML
+from pyjamas.ui import HasAlignment
+
+class RequestPanel(VerticalPanel):
+    def __init__(self, sfadata):
+        VerticalPanel.__init__(self)
+        self.sfadata = sfadata
+        self.setStyleName("ks-layouts")
+        
+    def refresh(self):
+        pass
+                    
+    def apply(self, sender):
+        self.sfadata.applyRSpec()
+
+    def reset(self, sender):
+        self.sfadata.refreshRSpec()
+        
+
+