comparison sat/tools/xml_tools.py @ 2737:5c2ed8a5ae22

frontends (XMLUI): TabsContainer can now be the main container (Primitivus keep the old behaviour and always use VerticalContainer as main container)
author Goffi <goffi@goffi.org>
date Wed, 02 Jan 2019 18:32:16 +0100
parents c274201cea94
children 1797671827b9
comparison
equal deleted inserted replaced
2736:df2bc2e704bc 2737:5c2ed8a5ae22
691 class HorizontalContainer(Container): 691 class HorizontalContainer(Container):
692 type = "horizontal" 692 type = "horizontal"
693 693
694 694
695 class PairsContainer(Container): 695 class PairsContainer(Container):
696 """Container with series of 2 elements"""
696 type = "pairs" 697 type = "pairs"
697 698
698 699
699 class LabelContainer(Container): 700 class LabelContainer(Container):
701 """Like PairsContainer, but first element can only be a label"""
700 type = "label" 702 type = "label"
701 703
702 704
703 class TabsContainer(Container): 705 class TabsContainer(Container):
704 type = "tabs" 706 type = "tabs"