X-Git-Url: http://git.onelab.eu/?p=sfa-gui.git;a=blobdiff_plain;f=HelpPanel.py;fp=HelpPanel.py;h=2237aed1dbc0c543955b53cc2355f2df14cf664d;hp=0000000000000000000000000000000000000000;hb=dd75c282952182b904fbfd26b2f87f5d39552630;hpb=9b1e2b7e901d9a7edc707916c52efe808cae6cfc diff --git a/HelpPanel.py b/HelpPanel.py new file mode 100644 index 0000000..2237aed --- /dev/null +++ b/HelpPanel.py @@ -0,0 +1,22 @@ +from pyjamas.ui.VerticalPanel import VerticalPanel +from pyjamas.ui.HTML import HTML +from pyjamas.ui import HasAlignment + +class HelpPanel(VerticalPanel): + def __init__(self): + VerticalPanel.__init__(self) + + def refresh(self): + pass + +class PlanetLabHelpPanel(HelpPanel): + def __init__(self): + HelpPanel.__init__(self) + self.add(HTML("This is the PlanetLab help panel")) + +class VINIHelpPanel(HelpPanel): + def __init__(self): + HelpPanel.__init__(self) + self.add(HTML("This is the VINI help panel")) + +