当前位置: 首页>>代码示例>>Python>>正文


Python Box.handles方法代码示例

本文整理汇总了Python中gaphas.examples.Box.handles方法的典型用法代码示例。如果您正苦于以下问题:Python Box.handles方法的具体用法?Python Box.handles怎么用?Python Box.handles使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gaphas.examples.Box的用法示例。


在下文中一共展示了Box.handles方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_minimal_se

# 需要导入模块: from gaphas.examples import Box [as 别名]
# 或者: from gaphas.examples.Box import handles [as 别名]
    def test_minimal_se(self):
        """
        Test resizing of element by dragging it SE handle.
        """
        canvas = Canvas()
        box = Box()
        handles = box.handles()

        canvas.add(box)

        h_nw, h_ne, h_se, h_sw = handles
        assert h_nw is handles[NW]
        assert h_ne is handles[NE]
        assert h_sw is handles[SW]
        assert h_se is handles[SE]

        h_se.pos.x -= 20      # h.se.{x,y} == -10
        h_se.pos.y -= 20
        assert h_se.pos.x == h_se.pos.y == -10

        box.request_update()
        canvas.update()

        self.assertEquals(10, h_se.pos.x) # h_se changed above, should be 10
        self.assertEquals(10, h_se.pos.y)

        self.assertEquals(10, h_ne.pos.x)
        self.assertEquals(10, h_sw.pos.y)
开发者ID:adrianboguszewski,项目名称:gaphas,代码行数:30,代码来源:test_element.py

示例2: test_creation_with_size

# 需要导入模块: from gaphas.examples import Box [as 别名]
# 或者: from gaphas.examples.Box import handles [as 别名]
    def test_creation_with_size(self):
        """
        Test if initial size holds when added to a canvas.
        """
        canvas = Canvas()
        box = Box(150, 153)

        assert box.width == 150, box.width
        assert box.height == 153, box.height
        assert box.handles()[SE].pos.x == 150, box.handles()[SE].pos.x
        assert box.handles()[SE].pos.y == 153, box.handles()[SE].pos.y

        canvas.add(box)

        assert box.width == 150, box.width
        assert box.height == 153, box.height
        assert box.handles()[SE].pos.x == 150, box.handles()[SE].pos.x
        assert box.handles()[SE].pos.y == 153, box.handles()[SE].pos.y
开发者ID:adrianboguszewski,项目名称:gaphas,代码行数:20,代码来源:test_element.py

示例3: test_get_handle_at_point

# 需要导入模块: from gaphas.examples import Box [as 别名]
# 或者: from gaphas.examples.Box import handles [as 别名]
    def test_get_handle_at_point(self):
        canvas = Canvas()
        view = GtkView(canvas)
        window = gtk.Window(gtk.WINDOW_TOPLEVEL)
        window.add(view)
        window.show_all()

        box = Box()
        box.min_width = 20
        box.min_height = 30
        box.matrix.translate(20, 20)
        box.matrix.rotate(math.pi/1.5)
        canvas.add(box)

        i, h = view.get_handle_at_point((20, 20))
        assert i is box
        assert h is box.handles()[0]
开发者ID:pcakapratibha,项目名称:gaphas,代码行数:19,代码来源:test_view.py

示例4: test_line_projection

# 需要导入模块: from gaphas.examples import Box [as 别名]
# 或者: from gaphas.examples.Box import handles [as 别名]
    def test_line_projection(self):
        """Test projection with line's handle on element's side"""
        line = Line()
        line.matrix.translate(15, 50)
        h1, h2 = line.handles()
        h1.x, h1.y = 0, 0
        h2.x, h2.y = 20, 20

        box = Box()
        box.matrix.translate(10, 10)
        box.width = 40
        box.height = 20
        h_nw, h_ne, h_se, h_sw = box.handles()

        canvas = Canvas()
        canvas.add(line)
        canvas.add(box)

        # move line's second handle on box side
        h2.x, h2.y = 5, -20
开发者ID:adrianboguszewski,项目名称:gaphas,代码行数:22,代码来源:test_canvas.py

示例5: test_resize_se

# 需要导入模块: from gaphas.examples import Box [as 别名]
# 或者: from gaphas.examples.Box import handles [as 别名]
    def test_resize_se(self):
        """
        Test resizing of element by dragging it SE handle.
        """
        canvas = Canvas()
        box = Box()
        handles = box.handles()

        canvas.add(box)

        h_nw, h_ne, h_se, h_sw = handles
        assert h_nw is handles[NW]
        assert h_ne is handles[NE]
        assert h_sw is handles[SW]
        assert h_se is handles[SE]

        # to see how many solver was called:
        # GAPHAS_TEST_COUNT=3 nosetests -s --with-prof --profile-restrict=gaphas gaphas/tests/test_element.py | grep -e '\<solve\>' -e dirty

        count = getenv('GAPHAS_TEST_COUNT')
        if count:
            count = int(count)
        else:
            count = 1

        for i in range(count):
            h_se.pos.x += 100      # h.se.{x,y} = 10, now
            h_se.pos.y += 100
            box.request_update()
            canvas.update()

        self.assertEquals(110 * count, h_se.pos.x) # h_se changed above, should remain the same
        self.assertEquals(110 * count, float(h_se.pos.y))

        self.assertEquals(110 * count, float(h_ne.pos.x))
        self.assertEquals(110 * count, float(h_sw.pos.y))
开发者ID:adrianboguszewski,项目名称:gaphas,代码行数:38,代码来源:test_element.py

示例6: CanvasBox

# 需要导入模块: from gaphas.examples import Box [as 别名]
# 或者: from gaphas.examples.Box import handles [as 别名]
class CanvasBox(object):
    def __init__(self):
        self.canvas = Canvas()
        self.box = Box()
        self.handles = self.box.handles()
开发者ID:amolenaar,项目名称:gaphas,代码行数:7,代码来源:test_element.py


注:本文中的gaphas.examples.Box.handles方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。