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