1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
#!/usr/bin/env python
"""
demo.py - Demonstrates the simplest use of the plplot canvas widget with gtk.
Copyright (C) 2004, 2005 Thomas J. Duck
All rights reserved.
Thomas J. Duck <tom.duck@dal.ca>
Department of Physics and Atmospheric Science,
Dalhousie University, Halifax, Nova Scotia, Canada, B3H 3J5
$Author: airwin $
$Revision: 10568 $
$Date: 2009-11-09 16:05:09 -0800 (Mon, 09 Nov 2009) $
$Name$
NOTICE
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301 USA
"""
import plplot_python_start
import plplot_py_demos
import plplotcanvas
import gtk
import sys
# The width and height of the plplot canvas widget
WIDTH = 1000 # 500
HEIGHT = 600 # 300
# Delete event callback
def delete_event(widget, event, data=None):
return False
# Destroy event calback
def destroy(widget, data=None):
gtk.main_quit()
# Parse the options
plplot_py_demos.plparseopts(sys.argv,plplot_py_demos.PL_PARSE_FULL);
# The data to plot
x = plplot_py_demos.arange(11)
y = x**2/10.
# Create the canvas and set its size; during the creation process,
# the gcw driver is loaded into plplot, and plinit() is invoked.
canvas=plplotcanvas.Canvas()
canvas.set_size(WIDTH,HEIGHT)
# Create a new window and stuff the canvas into it
window = gtk.Window(gtk.WINDOW_TOPLEVEL)
window.set_border_width(10)
window.add(canvas)
# Connect the signal handlers to the window decorations
window.connect("delete_event",delete_event)
window.connect("destroy",destroy)
# Display everything
window.show_all()
# Draw on the canvas with Plplot
canvas.adv(0) # Advance the page
canvas.col0(15) # Set color to black
canvas.wid(2) # Set the pen width
canvas.vsta() # Set the viewport
canvas.wind(0.,10.,0.,10.); # Set the window
canvas.box("bcnst",0.,0,"bcnstv",0.,0); # Set the box
canvas.lab("x-axis","y-axis","A Simple Plot") # Draw some labels
# Draw the line
canvas.col0(1) # Set the pen color
canvas.line(x,y)
# Advancing the page finalizes this plot
canvas.adv(0)
# Start the gtk main loop
gtk.main()
|