本文整理汇总了Python中panel.Panel.rungit方法的典型用法代码示例。如果您正苦于以下问题:Python Panel.rungit方法的具体用法?Python Panel.rungit怎么用?Python Panel.rungit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类panel.Panel
的用法示例。
在下文中一共展示了Panel.rungit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_panels
# 需要导入模块: from panel import Panel [as 别名]
# 或者: from panel.Panel import rungit [as 别名]
def create_panels(self):
"""Creates a graphical-like UI:
┌────────┐┌────────────────────────────────┐
│Branches││Log history │
│> master││ │
│> devel ││ │
│ ││ │
│Remotes ││ │
│> origin│└────────────────────────────────┘
│ │┌───────────────┐┌───────────────┐
│Tags ││ Staged files ││ │
│ │└───────────────┘│ Diff of │
│Stashes │┌───────────────┐│ selected file │
│ ││ Changed files ││ │
└────────┘└───────────────┘└───────────────┘
"""
height, width = self.stdscr.getmaxyx()
if height < 8 or width < 40:
raise Exception("Height and width must be at least 8x40.\
Currently: %sx%s" % (height, width))
# Following sizes are percentages (e.g. w_30 is 30% of screen width)
w_20 = min(max(width // 5, 20), 25)
w_30 = width // 3
w_50 = width - w_30 - w_20
h_49 = height // 2
h_51 = height - h_49
h_25 = h_51 // 2
h_26 = h_51 - h_25
h_l = height // 5
h_br = height - 4 * h_l
self['branches'] = StateLinePanel(self.stdscr, h_br, w_20, 0, 0, title='Branches')
self['remotes'] = Panel(self.stdscr, h_l, w_20, h_br, 0, title='Remotes')
self['stashes'] = Panel(self.stdscr, h_l, w_20, h_br+h_l, 0, title='Stashes')
self['submodules'] = Panel(self.stdscr, h_l, w_20, h_br+2*h_l, 0, title='Submodules')
self['tags'] = StateLinePanel(self.stdscr, h_l, w_20, h_br+3*h_l, 0, title='Tags')
self['log'] = StateLinePanel(self.stdscr, h_49, w_30 + w_50, 0, w_20, title='History')
self['stage'] = StagerUnstager(self, self.stdscr, h_25, w_30, h_49, w_20, title='Staging Area')
self['changes'] = StagerUnstager(self, self.stdscr, h_26, w_30, h_49 + h_25, w_20, title='Local Changes')
self['diff'] = Diff(self.stdscr, h_51, w_50, h_49, w_20 + w_30, title='Diff View')
self['changes'].rungit = rungit.git_changed
self['stage'].rungit = rungit.git_staged
self['log'].rungit = rungit.git_history
self['branches'].rungit = rungit.git_branches
self['remotes'].rungit = rungit.git_remotes
self['stashes'].rungit = rungit.git_stashes
self['submodules'].rungit = rungit.git_submodules
self['tags'].rungit = rungit.git_tags
self['diff'].rungit = rungit.git_diff
self['changes'].action = self.stage_file
self['stage'].action = self.unstage_file