From 4e2df4e10931eac04393c3cc8abe99953b17dcc6 Mon Sep 17 00:00:00 2001 From: Daniel Francis Date: Fri, 29 Jun 2012 21:25:58 +0000 Subject: A lot of pep8 corrections I'm porting Speak Activity to Gtk3, this patch is the first step. I have these pending steps to do: . Remove the toolkit modules and migrate the activity to sugar-toolkit . Migrate from Hippo to Gtk . Convert the activity to PyGI; Gtk3 Port Start . Use gi.repository.Gst in the place of pygst . Extra corrections; Finishing port Signed-off-by: Daniel Francis --- (limited to 'eye.py') diff --git a/eye.py b/eye.py index 954e68a..7b78aad 100644 --- a/eye.py +++ b/eye.py @@ -12,12 +12,12 @@ # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# +# # Speak.activity 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 Speak.activity. If not, see . @@ -115,8 +115,12 @@ class Eye(gtk.DrawingArea): self.context = widget.window.cairo_create() #self.context.set_antialias(cairo.ANTIALIAS_NONE) - #set a clip region for the expose event. This reduces redrawing work (and time) - self.context.rectangle(event.area.x, event.area.y, event.area.width, event.area.height) + #set a clip region for the expose event. + #This reduces redrawing work (and time) + self.context.rectangle(event.area.x, + event.area.y, + event.area.width, + event.area.height) self.context.clip() # background @@ -125,13 +129,21 @@ class Eye(gtk.DrawingArea): self.context.fill() # eye ball - self.context.arc(bounds.width / 2, bounds.height / 2, eyeSize / 2 - outlineWidth / 2, 0, 360) + self.context.arc(bounds.width / 2, + bounds.height / 2, + eyeSize / 2 - outlineWidth / 2, + 0, + 360) self.context.set_source_rgb(1, 1, 1) self.context.fill() # outline self.context.set_line_width(outlineWidth) - self.context.arc(bounds.width / 2, bounds.height / 2, eyeSize / 2 - outlineWidth / 2, 0, 360) + self.context.arc(bounds.width / 2, + bounds.height / 2, + eyeSize / 2 - outlineWidth / 2, + 0, + 360) self.context.set_source_rgb(0, 0, 0) self.context.stroke() -- cgit v0.9.1