Skip to content

Commit

Permalink
added refactored qt backend
Browse files Browse the repository at this point in the history
svn path=/trunk/matplotlib/; revision=964
  • Loading branch information
jdh2358 committed Feb 13, 2005
1 parent c05fd7a commit 3e315fb
Show file tree
Hide file tree
Showing 3 changed files with 372 additions and 313 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG
@@ -1,12 +1,14 @@
New entries should be added at the top


2005-02-11 updated qtagg backend from Ted - JDH

2005-02-11 matshow fixes for figure numbering, return value and docs - FP

2005-02-09 new zorder example for fine control in zorder_demo.py - FP

2005-02-09 backend renderer draw_lines now has transform in backend,


2005-02-09 backend renderer draw_lines now has transform in backend,
as in draw_markers; use numerix in _backend_agg, aded small
line optimization to agg
Expand Down
280 changes: 280 additions & 0 deletions lib/matplotlib/backends/backend_qt.py
@@ -0,0 +1,280 @@
from __future__ import division
import os, math
import sys
import matplotlib
from matplotlib import verbose, MPLError
from matplotlib.numerix import asarray, fromstring, UInt8, zeros, \
where, transpose, nonzero, indices, ones, nx
import matplotlib.numerix as numerix
from matplotlib.cbook import is_string_like, enumerate, onetrue
from matplotlib.font_manager import fontManager
from matplotlib.backend_bases import RendererBase, GraphicsContextBase, \
FigureManagerBase, FigureCanvasBase, NavigationToolbar2, cursors
from matplotlib._pylab_helpers import Gcf
from matplotlib.figure import Figure
from matplotlib.mathtext import math_parse_s_ft2font
import qt

backend_version = "0.9"
def fn_name(): return sys._getframe(1).f_code.co_name

DEBUG = False

cursord = {
cursors.MOVE : qt.Qt.PointingHandCursor,
cursors.HAND : qt.Qt.WaitCursor,
cursors.POINTER : qt.Qt.ArrowCursor,
cursors.SELECT_REGION : qt.Qt.CrossCursor,
}

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()

def show( mainloop=True ):
"""
Show all the figures and enter the qt main loop
This should be the last line of your script
"""
for manager in Gcf.get_all_fig_managers():
manager.window.show()

if DEBUG: print 'Inside show'
figManager = Gcf.get_active()
if figManager != None:
figManager.canvas.draw()
#if ( createQApp ):
# qtapplication.setMainWidget( figManager.canvas )

if mainloop and createQApp:
qt.QObject.connect( qtapplication, qt.SIGNAL( "lastWindowClosed()" ),
qtapplication, qt.SLOT( "quit()" ) )
qtapplication.exec_loop()


def new_figure_manager( num, *args, **kwargs ):
"""
Create a new figure manager instance
"""
thisFig = Figure( *args, **kwargs )
canvas = FigureCanvasQT( thisFig )
manager = FigureManagerQT( canvas, num )
return manager


class FigureCanvasQT( qt.QWidget, FigureCanvasBase ):
keyvald = { qt.Qt.Key_Control : 'control',
qt.Qt.Key_Shift : 'shift',
qt.Qt.Key_Alt : 'alt',
}

def __init__( self, figure ):
if DEBUG: print 'FigureCanvasQt: ', figure
FigureCanvasBase.__init__( self, figure )
qt.QWidget.__init__( self, None, "QWidget figure" )
self.figure = figure
self.setMouseTracking( True )

w,h = self.figure.get_width_height()
self.resize( w, h )

def mousePressEvent( self, event ):
x = event.pos().x()
# flipy so y=0 is bottom of canvas
y = self.figure.bbox.height() - event.pos().y()
FigureCanvasBase.button_press_event( self, x, y, event.button() )
if DEBUG: print 'button pressed'

def mouseMoveEvent( self, event ):
x = event.x()
# flipy so y=0 is bottom of canvas
y = self.figure.bbox.height() - event.y()
FigureCanvasBase.motion_notify_event( self, x, y )
if DEBUG: print 'mouse move'

def mouseReleaseEvent( self, event ):
x = event.x()
# flipy so y=0 is bottom of canvas
y = self.figure.bbox.height() - event.y()
FigureCanvasBase.button_release_event( self, x, y, event.button() )
if DEBUG: print 'button released'
self.draw()

def keyPressEvent( self, event ):
key = self._get_key( event )
FigureCanvasBase.key_press_event( self, key )
if DEBUG: print 'key press', key

def keyReleaseEvent( self, event ):
key = self._get_key(event)
FigureCanvasBase.key_release_event( self, key )
if DEBUG: print 'key release', key

def _get_key( self, event ):
if event.key() < 256:
key = event.text().latin1()
elif self.keyvald.has_key( event.key() ):
key = self.keyvald[ event.key() ]
else:
key = None

return key

class FigureManagerQT( FigureManagerBase ):
"""
Public attributes
canvas : The FigureCanvas instance
num : The Figure number
toolbar : The qt.QToolBar
window : The qt.QMainWindow
"""

def __init__( self, canvas, num ):
if DEBUG: print 'FigureManagerQT.%s' % fn_name()
FigureManagerBase.__init__( self, canvas, num )
self.canvas = canvas
self.window = qt.QMainWindow()

self.canvas.reparent( self.window, qt.QPoint( 0, 0 ) )
# Give the keyboard focus to the figure instead of the manager
self.canvas.grabKeyboard()
self.window.setCaption( "Figure %d" % num )
self.window.setCentralWidget( self.canvas )

if matplotlib.rcParams['toolbar'] == 'classic':
print "Classic toolbar is not yet supported"
#self.toolbar = NavigationToolbar( canvas, self.window )
self.toolbar = None
elif matplotlib.rcParams['toolbar'] == 'toolbar2':
self.toolbar = NavigationToolbar2QT( canvas, self.window )
else:
self.toolbar = None

self.window.resize( self.canvas.size() )

if matplotlib.is_interactive():
self.window.show()

def notify_axes_change( fig ):
# This will be called whenever the current axes is changed
if self.toolbar != None: self.toolbar.update()
self.canvas.figure.add_axobserver( notify_axes_change )

#def destroy( self, *args ):
# if DEBUG: print "destroy figure manager"
# self.window.exit()

class NavigationToolbar2QT( NavigationToolbar2, qt.QToolBar ):
# list of toolitems to add to the toolbar, format is:
# text, tooltip_text, image_file, callback(str)
toolitems = (
('Home', 'Reset original view', 'home.png', 'home'),
('Back', 'Back to previous view','back.png', 'back'),
('Forward', 'Forward to next view','forward.png', 'forward'),
(None, None, None, None),
('Pan', 'Pan axes with left mouse, zoom with right', 'move.png', 'pan'),
('Zoom', 'Zoom to rectangle','zoom_to_rect.png', 'zoom'),
(None, None, None, None),
('Save', 'Save the figure','filesave.png', 'save_figure'),
)

def __init__( self, canvas, window ):
self.window = window
self.canvas = canvas
qt.QToolBar.__init__( self, "Navigator2", window, qt.Qt.DockBottom )
NavigationToolbar2.__init__( self, canvas )

def _init_toolbar( self ):
self.window.setUsesTextLabel( False )
basedir = matplotlib.rcParams[ 'datapath' ]

for text, tooltip_text, image_file, callback in self.toolitems:
if text == None:
self.addSeparator()
continue

fname = os.path.join( basedir, image_file )
image = qt.QPixmap()
image.load( fname )
a = qt.QAction( qt.QIconSet( image ), text, qt.QKeySequence('M'),
self.window )
a.setToolTip( tooltip_text )
qt.QObject.connect( a, qt.SIGNAL( 'activated()' ),
getattr( self, callback ) )
a.addTo( self )

def dynamic_update( self ):
self.canvas.draw()

def set_message( self, s ):
self.window.statusBar().message( s )

def set_cursor( self, cursor ):
if DEBUG: print 'Set cursor' , cursor
#qt.QApplication.restoreOverrideCursor()
#qt.QApplication.setOverrideCursor( qt.QCursor( cursord[cursor] ) )

def draw_rubberband( self, event, x0, y0, x1, y1 ):
height = self.canvas.figure.bbox.height()
y1 = height - y1
y0 = height - y0

w = abs(x1 - x0)
h = abs(y1 - y0)

rect = [ int(val)for val in min(x0,x1), min(y0, y1), w, h ]
self.canvas.drawRectangle( rect )

def save_figure( self ):
self.canvas.releaseKeyboard()
fname = qt.QFileDialog.getSaveFileName()

if fname:
self.canvas.print_figure( fname.latin1() )
self.canvas.grabKeyboard()

# set icon used when windows are minimized
try:
qt.window_set_default_icon_from_file (
os.path.join( matplotlib.rcParams['datapath'], 'matplotlib.svg' ) )
except:
verbose.report( 'Could not load matplotlib icon: %s' % sys.exc_info()[1] )


def error_msg_qt( msg, parent=None ):
if not is_string_like( msg ):
msg = ','.join( map( str,msg ) )

qt.QMessageBox.warning( None, "Matplotlib", msg, qt.QMessageBox.Ok )

def exception_handler( type, value, tb ):
"""Handle uncaught exceptions
It does not catch SystemExit
"""
msg = ''
# get the filename attribute if available (for IOError)
if hasattr(value, 'filename') and value.filename != None:
msg = value.filename + ': '
if hasattr(value, 'strerror') and value.strerror != None:
msg += value.strerror
else:
msg += str(value)

if len( msg ) : error_msg( msg )


FigureManager = FigureManagerQT
error_msg = error_msg_qt

# We need one and only one QApplication before we can build any Qt widgets
# Detect if a QApplication exists.
createQApp = qt.QApplication.startingUp()
if createQApp:
if DEBUG: print "Starting up QApplication"
qtapplication = qt.QApplication( [" "] )

0 comments on commit 3e315fb

Please sign in to comment.