當前位置: 首頁>>代碼示例>>Python>>正文


Python Gcf.get_active方法代碼示例

本文整理匯總了Python中matplotlib._pylab_helpers.Gcf.get_active方法的典型用法代碼示例。如果您正苦於以下問題:Python Gcf.get_active方法的具體用法?Python Gcf.get_active怎麽用?Python Gcf.get_active使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在matplotlib._pylab_helpers.Gcf的用法示例。


在下文中一共展示了Gcf.get_active方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: savefig

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def savefig(self, figure=None, **kwargs):
        """
        Save the Figure instance *figure* to this file as a new page.
        If *figure* is a number, the figure instance is looked up by
        number, and if *figure* is None, the active figure is saved.
        Any other keyword arguments are passed to Figure.savefig.
        """
        if isinstance(figure, Figure):
            figure.savefig(self, format='pdf', **kwargs)
        else:
            if figure is None:
                figureManager = Gcf.get_active()
            else:
                figureManager = Gcf.get_fig_manager(figure)
            if figureManager is None:
                raise ValueError("No such figure: " + repr(figure))
            else:
                figureManager.canvas.figure.savefig(self, format='pdf', **kwargs) 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:20,代碼來源:backend_pdf.py

示例2: awakeFromNib

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def awakeFromNib(self):
        # Get a reference to the active canvas
        NSApp().setDelegate_(self)
        self.app = NSApp()
        self.canvas = Gcf.get_active().canvas
        self.plotView.canvas = self.canvas
        self.canvas.plotView = self.plotView

        self.plotWindow.setAcceptsMouseMovedEvents_(True)
        self.plotWindow.makeKeyAndOrderFront_(self)
        self.plotWindow.setDelegate_(self)#.plotView)

        self.plotView.setImageFrameStyle_(NSImageFrameGroove)
        self.plotView.image_ = NSImage.alloc().initWithSize_((0,0))
        self.plotView.setImage_(self.plotView.image_)

        # Make imageview first responder for key events
        self.plotWindow.makeFirstResponder_(self.plotView)

        # Force the first update
        self.plotView.windowDidResize_(self) 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:23,代碼來源:backend_cocoaagg.py

示例3: draw_if_interactive

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def draw_if_interactive():
    '''Handle whether or not the backend is in interactive mode or not.
    '''
    if matplotlib.is_interactive():
        figManager = Gcf.get_active()
        if figManager:
            figManager.canvas.draw_idle() 
開發者ID:kivy-garden,項目名稱:garden.matplotlib,代碼行數:9,代碼來源:backend_kivy.py

示例4: draw_if_interactive

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def draw_if_interactive():
    if matplotlib.is_interactive():
        figManager =  Gcf.get_active()
        if figManager is not None:
            figManager.show() 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:7,代碼來源:backend_tkagg.py

示例5: draw_if_interactive

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def draw_if_interactive():
    """
    Is called after every pylab drawing command
    """
    if matplotlib.is_interactive():
        figManager = Gcf.get_active()
        if figManager is not None:
            figManager.canvas.draw_idle() 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:10,代碼來源:backend_webagg.py

示例6: draw_if_interactive

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def draw_if_interactive():
    """
    Is called after every pylab drawing command
    """
    if matplotlib.is_interactive():
        figManager =  Gcf.get_active()
        if figManager is not None:
            figManager.canvas.draw_idle() 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:10,代碼來源:backend_gtk.py

示例7: _make_axis_menu

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def _make_axis_menu(self):
        # called by self._update*()

        def toggled(item, data=None):
            if item == self.itemAll:
                for item in items: item.set_active(True)
            elif item == self.itemInvert:
                for item in items:
                    item.set_active(not item.get_active())

            ind = [i for i,item in enumerate(items) if item.get_active()]
            self.set_active(ind)

        menu = gtk.Menu()

        self.itemAll = gtk.MenuItem("All")
        menu.append(self.itemAll)
        self.itemAll.connect("activate", toggled)

        self.itemInvert = gtk.MenuItem("Invert")
        menu.append(self.itemInvert)
        self.itemInvert.connect("activate", toggled)

        items = []
        for i in range(len(self._axes)):
            item = gtk.CheckMenuItem("Axis %d" % (i+1))
            menu.append(item)
            item.connect("toggled", toggled)
            item.set_active(True)
            items.append(item)

        menu.show_all()
        return menu 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:35,代碼來源:backend_gtk.py

示例8: get_active_linestyle

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def get_active_linestyle(self):
        'get the active lineinestyle'
        ind = self.cbox_linestyles.get_active()
        ls = self.linestyles[ind]
        return ls 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:7,代碼來源:backend_gtk.py

示例9: get_active_marker

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def get_active_marker(self):
        'get the active lineinestyle'
        ind = self.cbox_markers.get_active()
        m = self.markers[ind]
        return m 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:7,代碼來源:backend_gtk.py

示例10: _make_axis_menu

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def _make_axis_menu(self):
        # called by self._update*()

        def toggled(item, data=None):
            if item == self.itemAll:
                for item in items: item.set_active(True)
            elif item == self.itemInvert:
                for item in items:
                    item.set_active(not item.get_active())

            ind = [i for i,item in enumerate(items) if item.get_active()]
            self.set_active(ind)

        menu = Gtk.Menu()

        self.itemAll = Gtk.MenuItem("All")
        menu.append(self.itemAll)
        self.itemAll.connect("activate", toggled)

        self.itemInvert = Gtk.MenuItem("Invert")
        menu.append(self.itemInvert)
        self.itemInvert.connect("activate", toggled)

        items = []
        for i in range(len(self._axes)):
            item = Gtk.CheckMenuItem("Axis %d" % (i+1))
            menu.append(item)
            item.connect("toggled", toggled)
            item.set_active(True)
            items.append(item)

        menu.show_all()
        return menu 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:35,代碼來源:backend_gtk3.py

示例11: get_active_line

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def get_active_line(self):
        'get the active line'
        ind = self.cbox_lineprops.get_active()
        line = self.lines[ind]
        return line 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:7,代碼來源:backend_gtk3.py

示例12: draw_if_interactive

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def draw_if_interactive():
    """
    This should be overriden in a windowing environment if drawing
    should be done in interactive python mode
    """
    DEBUG_MSG("draw_if_interactive()", 1, None)

    if matplotlib.is_interactive():

        figManager = Gcf.get_active()
        if figManager is not None:
            figManager.canvas.draw_idle() 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:14,代碼來源:backend_wx.py

示例13: draw_if_interactive

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def draw_if_interactive():
    """
    Is called after every pylab drawing command
    """
    if matplotlib.is_interactive():
        figManager =  Gcf.get_active()
        if figManager != None:
            figManager.canvas.draw_idle() 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:10,代碼來源:backend_qt4.py

示例14: draw_if_interactive

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def draw_if_interactive():
    """
    For performance reasons, we don't want to redraw the figure after
    each draw command. Instead, we mark the figure as invalid, so that
    it will be redrawn as soon as the event loop resumes via PyOS_InputHook.
    This function should be called after each draw event, even if
    matplotlib is not running interactively.
    """
    if matplotlib.is_interactive():
        figManager =  Gcf.get_active()
        if figManager is not None:
            figManager.canvas.invalidate() 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:14,代碼來源:backend_macosx.py

示例15: panx

# 需要導入模塊: from matplotlib._pylab_helpers import Gcf [as 別名]
# 或者: from matplotlib._pylab_helpers.Gcf import get_active [as 別名]
def panx(self, direction):
        axes = self.canvas.figure.axes
        selected = self.get_active()
        for i in selected:
            axes[i].xaxis.pan(direction)
        self.canvas.invalidate() 
開發者ID:ktraunmueller,項目名稱:Computable,代碼行數:8,代碼來源:backend_macosx.py


注:本文中的matplotlib._pylab_helpers.Gcf.get_active方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。