本文整理汇总了Python中matplotlib.backends.backend_gtkagg.NavigationToolbar2GTKAgg._init_toolbar方法的典型用法代码示例。如果您正苦于以下问题:Python NavigationToolbar2GTKAgg._init_toolbar方法的具体用法?Python NavigationToolbar2GTKAgg._init_toolbar怎么用?Python NavigationToolbar2GTKAgg._init_toolbar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.backends.backend_gtkagg.NavigationToolbar2GTKAgg
的用法示例。
在下文中一共展示了NavigationToolbar2GTKAgg._init_toolbar方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _init_toolbar
# 需要导入模块: from matplotlib.backends.backend_gtkagg import NavigationToolbar2GTKAgg [as 别名]
# 或者: from matplotlib.backends.backend_gtkagg.NavigationToolbar2GTKAgg import _init_toolbar [as 别名]
def _init_toolbar(self):
NavigationToolbar._init_toolbar(self)
image = gtk.Image()
image.set_from_stock(gtk.STOCK_PRINT, 22)
tbutton = gtk.ToolButton(image, 'Print')
self.insert(tbutton, -1)
tbutton.connect('clicked', getattr(self, 'print_canvas'))
if not _new_tooltip_api:
tbutton.set_tooltip(self.tooltips, 'Print current view',
'Private')
else:
tbutton.set_tooltip_text('Print current view')
image = gtk.Image()
image.set_from_stock(edit_img, 22)
tbutton = gtk.ToolButton(image, 'Comments')
self.insert(tbutton, -1)
if not _new_tooltip_api:
tbutton.set_tooltip(self.tooltips, 'Insert Comment to Plot',
'Private')
else:
tbutton.set_tooltip_text('Insert Comment to Plot')
tbutton.connect('clicked', getattr(self,'insert_comments'))
self.show_all()