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


Python escutil.GetCursorPosition类代码示例

本文整理汇总了Python中escutil.GetCursorPosition的典型用法代码示例。如果您正苦于以下问题:Python GetCursorPosition类的具体用法?Python GetCursorPosition怎么用?Python GetCursorPosition使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: test_CHA_DefaultParam

 def test_CHA_DefaultParam(self):
   """CHA moves to first column of active line by default."""
   esccmd.CUP(Point(5, 3))
   esccmd.CHA()
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 3)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:cha.py

示例2: test_HVP_ZeroIsTreatedAsOne

 def test_HVP_ZeroIsTreatedAsOne(self):
   """Zero args are treated as 1."""
   esccmd.HVP(Point(6, 3))
   esccmd.HVP(col=0, row=0)
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 1)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:hvp.py

示例3: test_VPR_DefaultParams

  def test_VPR_DefaultParams(self):
    """With no params, VPR moves right by 1."""
    esccmd.CUP(Point(1, 6))
    esccmd.VPR()

    position = GetCursorPosition()
    AssertEQ(position.y(), 7)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:vpr.py

示例4: test_CUB_DefaultParam

 def test_CUB_DefaultParam(self):
   """CUB moves the cursor left 1 with no parameter given."""
   esccmd.CUP(Point(5, 3))
   esccmd.CUB()
   position = GetCursorPosition()
   AssertEQ(position.x(), 4)
   AssertEQ(position.y(), 3)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:cub.py

示例5: test_NEL_Basic

 def test_NEL_Basic(self):
   """Next Line moves the cursor down one line and to the start of the next line."""
   esccmd.CUP(Point(5, 3))
   esccmd.NEL()
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 4)
开发者ID:DanDanHang,项目名称:iTerm2,代码行数:7,代码来源:nel.py

示例6: test_HPR_DefaultParams

  def test_HPR_DefaultParams(self):
    """With no params, HPR moves right by 1."""
    esccmd.CUP(Point(6, 1))
    esccmd.HPR()

    position = GetCursorPosition()
    AssertEQ(position.x(), 7)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:hpr.py

示例7: test_VT_Basic

 def test_VT_Basic(self):
   """VT moves the cursor down one line."""
   esccmd.CUP(Point(5, 3))
   escio.Write(VT)
   position = GetCursorPosition()
   AssertEQ(position.x(), 5)
   AssertEQ(position.y(), 4)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:vt.py

示例8: test_CHA_ExplicitParam

 def test_CHA_ExplicitParam(self):
   """CHA moves to specified column of active line."""
   esccmd.CUP(Point(5, 3))
   esccmd.CHA(10)
   position = GetCursorPosition()
   AssertEQ(position.x(), 10)
   AssertEQ(position.y(), 3)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:cha.py

示例9: test_CPL_DefaultParam

 def test_CPL_DefaultParam(self):
   """CPL moves the cursor up 1 with no parameter given."""
   esccmd.CUP(Point(5, 3))
   esccmd.CPL()
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 2)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:cpl.py

示例10: test_RI_Basic

 def test_RI_Basic(self):
   """Reverse index moves the cursor up one line."""
   esccmd.CUP(Point(5, 3))
   esccmd.RI()
   position = GetCursorPosition()
   AssertEQ(position.x(), 5)
   AssertEQ(position.y(), 2)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:ri.py

示例11: test_CPL_ExplicitParam

 def test_CPL_ExplicitParam(self):
   """CPL moves the cursor up by the passed-in number of lines."""
   esccmd.CUP(Point(6, 5))
   esccmd.CPL(2)
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 3)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:cpl.py

示例12: test_CHA_ZeroParam

 def test_CHA_ZeroParam(self):
   """CHA moves as far left as possible when given a zero parameter."""
   esccmd.CUP(Point(5, 3))
   esccmd.CHA(0)
   position = GetCursorPosition()
   AssertEQ(position.x(), 1)
   AssertEQ(position.y(), 3)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:cha.py

示例13: test_IND_Basic

 def test_IND_Basic(self):
   """Index moves the cursor down one line."""
   esccmd.CUP(Point(5, 3))
   esccmd.IND()
   position = GetCursorPosition()
   AssertEQ(position.x(), 5)
   AssertEQ(position.y(), 4)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:7,代码来源:ind.py

示例14: test_VPA_DoesNotChangeColumn

  def test_VPA_DoesNotChangeColumn(self):
    """VPA moves the specified line and does not change the column."""
    esccmd.CUP(Point(6, 5))
    esccmd.VPA(2)

    position = GetCursorPosition()
    AssertEQ(position.x(), 6)
    AssertEQ(position.y(), 2)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:8,代码来源:vpa.py

示例15: test_VPR_DoesNotChangeColumn

  def test_VPR_DoesNotChangeColumn(self):
    """VPR moves the specified row and does not change the column."""
    esccmd.CUP(Point(5, 6))
    esccmd.VPR(2)

    position = GetCursorPosition()
    AssertEQ(position.x(), 5)
    AssertEQ(position.y(), 8)
开发者ID:AndiDog,项目名称:iTerm2,代码行数:8,代码来源:vpr.py


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