本文整理匯總了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