当前位置: 首页>>代码示例>>Python>>正文


Python FigureCanvasBase.button_press_event方法代码示例

本文整理汇总了Python中matplotlib.backend_bases.FigureCanvasBase.button_press_event方法的典型用法代码示例。如果您正苦于以下问题:Python FigureCanvasBase.button_press_event方法的具体用法?Python FigureCanvasBase.button_press_event怎么用?Python FigureCanvasBase.button_press_event使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在matplotlib.backend_bases.FigureCanvasBase的用法示例。


在下文中一共展示了FigureCanvasBase.button_press_event方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: button_press_event

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def button_press_event(self, widget, event):
     if _debug: print 'FigureCanvasGTK.%s' % fn_name()
     x = event.x
     # flipy so y=0 is bottom of canvas
     y = self.allocation.height - event.y
     FigureCanvasBase.button_press_event(self, x, y, event.button, guiEvent=event)
     return False  # finish event propagation?
开发者ID:AndreI11,项目名称:SatStressGui,代码行数:9,代码来源:backend_gtk.py

示例2: mouseDoubleClickEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def mouseDoubleClickEvent(self, event):
     x, y = self.mouseEventCoords(event.pos())
     button = self.buttond.get(event.button())
     if button is not None:
         FigureCanvasBase.button_press_event(self, x, y,
                                             button, dblclick=True,
                                             guiEvent=event)
开发者ID:endolith,项目名称:matplotlib,代码行数:9,代码来源:backend_qt5.py

示例3: mousePressEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def mousePressEvent( self, event ):
     x = event.pos().x()
     # flipy so y=0 is bottom of canvas
     y = self.figure.bbox.height - event.pos().y()
     button = self.buttond[event.button()]
     FigureCanvasBase.button_press_event( self, x, y, button )
     if DEBUG: print 'button pressed:', event.button()
开发者ID:qsnake,项目名称:matplotlib,代码行数:9,代码来源:backend_qt4.py

示例4: mouseDoubleClickEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def mouseDoubleClickEvent( self, event ):
     x = event.pos().x()
     # flipy so y=0 is bottom of canvas
     y = self.figure.bbox.height - event.pos().y()
     button = self.buttond[event.button()]
     FigureCanvasBase.button_press_event( self, x, y, button, dblclick=True )
     if DEBUG: print('button doubleclicked:', event.button())
开发者ID:BlackEarth,项目名称:portable-python-win32,代码行数:9,代码来源:backend_qt.py

示例5: button_press_event

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def button_press_event(self, widget, event):
     x = event.x
     # flipy so y=0 is bottom of canvas
     y = self.get_allocation().height - event.y
     FigureCanvasBase.button_press_event(
         self, x, y, event.button, guiEvent=event)
     return False  # finish event propagation?
开发者ID:QuLogic,项目名称:matplotlib,代码行数:9,代码来源:backend_gtk3.py

示例6: mousePressEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def mousePressEvent(self, event):
     x, y = self.mouseEventCoords(event.pos())
     button = self.buttond.get(event.button())
     if button is not None:
         FigureCanvasBase.button_press_event(self, x, y, button,
                                             guiEvent=event)
     if DEBUG:
         print('button pressed:', event.button())
开发者ID:kshramt,项目名称:matplotlib,代码行数:10,代码来源:backend_qt5.py

示例7: mousePressEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def mousePressEvent( self, event ):
     x = event.pos().x()
     # flipy so y=0 is bottom of canvas
     y = self.figure.bbox.height - event.pos().y()
     button = self.buttond.get(event.button())
     if button is not None: # only three buttons supported by MouseEvent
         FigureCanvasBase.button_press_event( self, x, y, button )
     if DEBUG: print('button pressed:', event.button())
开发者ID:KiranPanesar,项目名称:wolfpy,代码行数:10,代码来源:backend_qt4.py

示例8: mousePressEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def mousePressEvent(self, event):
     x = event.pos().x()
     # flipy so y=0 is bottom of canvas
     y = self.figure.bbox.height - event.pos().y()
     button = self.buttond.get(event.button())
     if button is not None:
         FigureCanvasBase.button_press_event(self, x, y, button)
     if DEBUG:
         print("button pressed:", event.button())
开发者ID:bgamari,项目名称:matplotlib,代码行数:11,代码来源:backend_qt4.py

示例9: mouseDoubleClickEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def mouseDoubleClickEvent(self, event):
     x = event.pos().x()
     # flipy so y=0 is bottom of canvas
     y = self.figure.bbox.height - event.pos().y()
     button = self.buttond.get(event.button())
     if button is not None:
         FigureCanvasBase.button_press_event(self, x, y, button, dblclick=True, guiEvent=event)
     if DEBUG:
         print("button doubleclicked:", event.button())
开发者ID:zaherabdulazeez,项目名称:matplotlib,代码行数:11,代码来源:backend_qt5.py

示例10: button_press_event

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
    def button_press_event(self, event, dblclick=False):
        x = event.x
        # flipy so y=0 is bottom of canvas
        y = self.figure.bbox.height - event.y
        num = getattr(event, 'num', None)

        if sys.platform == 'darwin':
            # 2 and 3 were reversed on the OSX platform I tested under tkagg.
            if num == 2: num = 3
            elif num == 3: num = 2

        FigureCanvasBase.button_press_event(self, x, y, num, dblclick=dblclick, guiEvent=event)
开发者ID:pwuertz,项目名称:matplotlib,代码行数:14,代码来源:_backend_tk.py

示例11: mousePressEvent

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
    def mousePressEvent(self, event):
        """Left-click is handled by MPL, right-click not."""

        x = event.pos().x()
        # flipy so y=0 is bottom of canvas
        y = self.figure.bbox.height - event.pos().y()

        if event.button()==1:
            button = self.buttond[event.button()]
            FigureCanvasBase.button_press_event( self, x, y, button )
        else:
            if event.button()==2:
                try:
                    xdata, ydata = self.ax.transData.inverted().\
                         transform_point((x, y))
                except ValueError:
                    xdata  = None
                    ydata  = None
                self.marker = [int(xdata), int(ydata)]
                self.drawMarker()
开发者ID:edjoesu,项目名称:odysseus,代码行数:22,代码来源:mplwidgets.py

示例12: button_press_event

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
 def button_press_event(self, widget, event):
     x = event.x
     # flipy so y=0 is bottom of canvas
     y = self.allocation.height - event.y
     dblclick = (event.type == gdk._2BUTTON_PRESS)
     if not dblclick:
         # GTK is the only backend that generates a DOWN-UP-DOWN-DBLCLICK-UP  event
         # sequence for a double click.  All other backends have a DOWN-UP-DBLCLICK-UP
         # sequence.  In order to provide consistency to matplotlib users, we will
         # eat the extra DOWN event in the case that we detect it is part of a double
         # click.
         # first, get the double click time in milliseconds.
         current_time  = event.get_time()
         last_time     = self.last_downclick.get(event.button,0)
         dblclick_time = gtk.settings_get_for_screen(gdk.screen_get_default()).get_property('gtk-double-click-time')
         delta_time    = current_time-last_time
         if delta_time < dblclick_time:
             del self.last_downclick[event.button] # we do not want to eat more than one event.
             return False                          # eat.
         self.last_downclick[event.button] = current_time
     FigureCanvasBase.button_press_event(self, x, y, event.button, dblclick=dblclick, guiEvent=event)
     return False  # finish event propagation?
开发者ID:Eric89GXL,项目名称:matplotlib,代码行数:24,代码来源:backend_gtk.py

示例13: handle

# 需要导入模块: from matplotlib.backend_bases import FigureCanvasBase [as 别名]
# 或者: from matplotlib.backend_bases.FigureCanvasBase import button_press_event [as 别名]
    def handle(self, event):
        x=Fltk.Fl.event_x()
        y=Fltk.Fl.event_y()
        yf=self._source.figure.bbox.height - y
        if event == Fltk.FL_FOCUS or event == Fltk.FL_UNFOCUS:
            return 1
        elif event == Fltk.FL_KEYDOWN:
            ikey= Fltk.Fl.event_key()
            if(ikey<=255):
                self._key=chr(ikey)
            else:
                try:
                    self._key=special_key[ikey]
                except:
                    self._key=None
            
            # TODO: Handle ctrl, alt, super modifiers.
            FigureCanvasBase.key_press_event(self._source, self._key)
            return 1
        elif event == Fltk.FL_KEYUP:
            FigureCanvasBase.key_release_event(self._source, self._key)
            self._key=None
        elif event == Fltk.FL_PUSH:
            self.window().make_current()
            if Fltk.Fl.event_button1():
                self._button = 1
            elif  Fltk.Fl.event_button2():
                self._button = 2
            elif  Fltk.Fl.event_button3():
                self._button = 3
            else:
                self._button = None

            if self._draw_overlay:
                self._oldx=x
                self._oldy=y
            if Fltk.Fl.event_clicks():  # according to docs, event_clicks() returns nonzero if this is a double click.
                FigureCanvasBase.button_press_event(self._source, x, yf, self._button, dblclick=True)
                return 1
            else:
                FigureCanvasBase.button_press_event(self._source, x, yf, self._button)
                return 1
        elif event == Fltk.FL_ENTER:
            self.take_focus()
            return 1
        elif event == Fltk.FL_LEAVE:
            return 1
        elif event == Fltk.FL_MOVE:
            FigureCanvasBase.motion_notify_event(self._source, x, yf)
            return 1
        elif event == Fltk.FL_DRAG:
            self.window().make_current()
            if self._draw_overlay:
                self._dx=Fltk.Fl.event_x()-self._oldx
                self._dy=Fltk.Fl.event_y()-self._oldy
                Fltk.fl_overlay_rect(self._oldx,self._oldy,self._dx,self._dy)
            FigureCanvasBase.motion_notify_event(self._source, x, yf)
            return 1
        elif event == Fltk.FL_RELEASE:
            self.window().make_current()
            if self._draw_overlay:
                Fltk.fl_overlay_clear()
            FigureCanvasBase.button_release_event(self._source, x, yf, self._button)
            self._button = None
            return 1
        return 0
开发者ID:jcmdev0,项目名称:matplotlib,代码行数:68,代码来源:backend_fltkagg.py


注:本文中的matplotlib.backend_bases.FigureCanvasBase.button_press_event方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。