本文整理汇总了Python中muntjac.api.Label.setSizeFull方法的典型用法代码示例。如果您正苦于以下问题:Python Label.setSizeFull方法的具体用法?Python Label.setSizeFull怎么用?Python Label.setSizeFull使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类muntjac.api.Label
的用法示例。
在下文中一共展示了Label.setSizeFull方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from muntjac.api import Label [as 别名]
# 或者: from muntjac.api.Label import setSizeFull [as 别名]
def __init__(self):
super(SplitPanelPositioningExample, self).__init__()
self.setStyleName('split-panel-positioning-example')
self.setSpacing(True)
controls = HorizontalLayout()
controls.setSpacing(True)
self.addComponent(controls)
self._verticalSplitPanel = VerticalSplitPanel()
self._verticalSplitPanel.setSplitPosition(100, ISizeable.UNITS_PIXELS)
self._verticalSplitPanel.setLocked(True)
self._verticalSplitPanel.setHeight('450px')
self._verticalSplitPanel.setWidth('100%')
self.addComponent(self._verticalSplitPanel)
# Add some content to the top
topArea = Label()
topArea.setStyleName('top-area')
topArea.addStyleName('measured-from-top')
topArea.setSizeFull()
self._verticalSplitPanel.addComponent(topArea)
# Add a horizontal split panel in the bottom area
self._horizontalSplitPanel = HorizontalSplitPanel()
self._horizontalSplitPanel.setSplitPosition(30,
ISizeable.UNITS_PERCENTAGE)
self._horizontalSplitPanel.setSizeFull()
self._horizontalSplitPanel.setLocked(True)
self._verticalSplitPanel.addComponent(self._horizontalSplitPanel)
# Add some content to the left and right sides of the vertical layout
leftArea = Label()
leftArea.setStyleName('left-area')
leftArea.addStyleName('measured-from-left')
leftArea.setSizeFull()
self._horizontalSplitPanel.addComponent(leftArea)
rightArea = Label()
rightArea.setStyleName('right-area')
rightArea.setSizeFull()
self._horizontalSplitPanel.addComponent(rightArea)
# Allow user to set the splitter positioning
self._measurePositionFromLeft = OptionGroup('Horizontal split position',
['30% from left', '30% from right'])
self._measurePositionFromLeft.setValue('30% from left')
self._measurePositionFromLeft.setImmediate(True)
l = LeftRightListener(self, leftArea, rightArea)
self._measurePositionFromLeft.addListener(l, IValueChangeListener)
controls.addComponent(self._measurePositionFromLeft)
controls.setComponentAlignment(self._measurePositionFromLeft,
Alignment.MIDDLE_CENTER)
self._measurePositionFromTop = OptionGroup('Vertical split position',
['100px from top', '100px from bottom'])
self._measurePositionFromTop.setValue('100px from top')
self._measurePositionFromTop.setImmediate(True)
l = TopBottomListener(self, leftArea, rightArea, topArea)
self._measurePositionFromTop.addListener(l, IValueChangeListener)
controls.addComponent(self._measurePositionFromTop)
controls.setComponentAlignment(self._measurePositionFromTop,
Alignment.MIDDLE_CENTER)