Server IP : 127.0.0.2 / Your IP : 3.142.242.51 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/python-gobject-2/examples/ |
Upload File : |
#!/usr/bin/env python """Based on cairo-demo/X11/cairo-demo.c """ import pygtk pygtk.require('2.0') import cairo from gi.repository import Gdk, Gtk SIZE = 30 def triangle(ctx): ctx.move_to(SIZE, 0) ctx.rel_line_to(SIZE, 2*SIZE) ctx.rel_line_to(-2*SIZE, 0) ctx.close_path() def square(ctx): ctx.move_to(0, 0) ctx.rel_line_to(2*SIZE, 0) ctx.rel_line_to(0, 2*SIZE) ctx.rel_line_to(-2*SIZE, 0) ctx.close_path() def bowtie(ctx): ctx.move_to(0, 0) ctx.rel_line_to(2*SIZE, 2*SIZE) ctx.rel_line_to(-2*SIZE, 0) ctx.rel_line_to(2*SIZE, -2*SIZE) ctx.close_path() def inf(ctx): ctx.move_to(0, SIZE) ctx.rel_curve_to(0,SIZE, SIZE,SIZE, 2*SIZE,0) ctx.rel_curve_to(SIZE,-SIZE, 2*SIZE,-SIZE, 2*SIZE,0) ctx.rel_curve_to(0,SIZE, -SIZE,SIZE, -2*SIZE,0) ctx.rel_curve_to(-SIZE,-SIZE, -2*SIZE,-SIZE, -2*SIZE,0) ctx.close_path() def draw_shapes(ctx, x, y, fill): ctx.save() ctx.new_path() ctx.translate(x+SIZE, y+SIZE) bowtie(ctx) if fill: ctx.fill() else: ctx.stroke() ctx.new_path() ctx.translate(3*SIZE, 0) square(ctx) if fill: ctx.fill() else: ctx.stroke() ctx.new_path() ctx.translate(3*SIZE, 0) triangle(ctx) if fill: ctx.fill() else: ctx.stroke() ctx.new_path() ctx.translate(3*SIZE, 0) inf(ctx) if fill: ctx.fill() else: ctx.stroke() ctx.restore() def fill_shapes(ctx, x, y): draw_shapes(ctx, x, y, True) def stroke_shapes(ctx, x, y): draw_shapes(ctx, x, y, False) def expose (da, event): ctx = Gdk.cairo_create(da.window) ctx.set_source_rgb(0, 0, 0) ctx.set_line_width(SIZE / 4) ctx.set_tolerance(0.1) ctx.set_line_join(cairo.LINE_JOIN_ROUND) ctx.set_dash([SIZE/4.0, SIZE/4.0], 0) stroke_shapes(ctx, 0, 0) ctx.set_dash([], 0) stroke_shapes(ctx, 0, 3*SIZE) ctx.set_line_join(cairo.LINE_JOIN_BEVEL) stroke_shapes(ctx, 0, 6*SIZE) ctx.set_line_join(cairo.LINE_JOIN_MITER) stroke_shapes(ctx, 0, 9*SIZE) fill_shapes(ctx, 0, 12*SIZE) ctx.set_line_join(cairo.LINE_JOIN_BEVEL) fill_shapes(ctx, 0, 15*SIZE) ctx.set_source_rgb(1,0,0) stroke_shapes(ctx, 0, 15*SIZE) def main(): win = Gtk.Window() win.connect('destroy', lambda w: Gtk.main_quit()) win.set_default_size(450, 550) drawingarea = Gtk.DrawingArea() win.add(drawingarea) drawingarea.connect('expose_event', expose) win.show_all() Gtk.main() if __name__ == '__main__': main()