本文整理汇总了Python中pyjamas.ui.AbsolutePanel.AbsolutePanel.setPixelSize方法的典型用法代码示例。如果您正苦于以下问题:Python AbsolutePanel.setPixelSize方法的具体用法?Python AbsolutePanel.setPixelSize怎么用?Python AbsolutePanel.setPixelSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyjamas.ui.AbsolutePanel.AbsolutePanel
的用法示例。
在下文中一共展示了AbsolutePanel.setPixelSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from pyjamas.ui.AbsolutePanel import AbsolutePanel [as 别名]
# 或者: from pyjamas.ui.AbsolutePanel.AbsolutePanel import setPixelSize [as 别名]
def __init__(self, dragController):
Example.__init__(self, dragController)
self.addStyleName(self.CSS_DEMO_ABSOLUTE_POSITION_EXAMPLE)
# use the drop target as this composite's widget
positioningDropTarget = AbsolutePanel()
positioningDropTarget.setPixelSize(400, 200)
self.setWidget(positioningDropTarget)
# instantiate our drop controller
self.absposdc = AbsolutePositionDropController(positioningDropTarget)
dragController.registerDropController(self.absposdc)
示例2: dragStart
# 需要导入模块: from pyjamas.ui.AbsolutePanel import AbsolutePanel [as 别名]
# 或者: from pyjamas.ui.AbsolutePanel.AbsolutePanel import setPixelSize [as 别名]
def dragStart(self):
super.dragStart()
WidgetLocation currentDraggableLocation = WidgetLocation(context.draggable,
context.boundaryPanel)
if getBehaviorDragProxy():
movablePanel = newDragProxy(context)
context.boundaryPanel.add(movablePanel, currentDraggableLocation.getLeft(),
currentDraggableLocation.getTop())
else:
saveSelectedWidgetsLocationAndStyle()
AbsolutePanel container = AbsolutePanel()
DOM.setStyleAttribute(container.getElement(), "overflow", "visible")
container.setPixelSize(context.draggable.getOffsetWidth(),
context.draggable.getOffsetHeight())
context.boundaryPanel.add(container, currentDraggableLocation.getLeft(),
currentDraggableLocation.getTop())
int draggableAbsoluteLeft = context.draggable.getAbsoluteLeft()
int draggableAbsoluteTop = context.draggable.getAbsoluteTop()
for Iterator iterator = context.selectedWidgets.iterator(); iterator.hasNext();:
Widget widget = (Widget) iterator.next()
if widget != context.draggable:
int relativeX = widget.getAbsoluteLeft() - draggableAbsoluteLeft
int relativeY = widget.getAbsoluteTop() - draggableAbsoluteTop
container.add(widget, relativeX, relativeY)
container.add(context.draggable, 0, 0)
movablePanel = container