Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/glasses.py
diff options
context:
space:
mode:
Diffstat (limited to 'glasses.py')
-rw-r--r--glasses.py24
1 files changed, 7 insertions, 17 deletions
diff --git a/glasses.py b/glasses.py
index 5ac1f10..399c01a 100644
--- a/glasses.py
+++ b/glasses.py
@@ -7,17 +7,17 @@
#
# Parts of Speak.activity are based on code from Measure.activity
# Copyright (C) 2007 Arjun Sarwal - arjun@laptop.org
-#
+#
# Speak.activity 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 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 <http://www.gnu.org/licenses/>.
@@ -46,12 +46,8 @@ class Glasses(Eye):
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
@@ -67,19 +63,13 @@ class Glasses(Eye):
self.context.curve_to(x1, y2, x1, y2, x1, (y1 + y2) / 2.)
# eye ball
- roundrect(outlineWidth,
- outlineWidth,
- bounds.width - outlineWidth,
- bounds.height - outlineWidth)
+ roundrect(outlineWidth, outlineWidth, bounds.width - outlineWidth, bounds.height - outlineWidth)
self.context.set_source_rgb(1, 1, 1)
self.context.fill()
# outline
self.context.set_line_width(outlineWidth)
- roundrect(outlineWidth,
- outlineWidth,
- bounds.width - outlineWidth,
- bounds.height - outlineWidth)
+ roundrect(outlineWidth, outlineWidth, bounds.width - outlineWidth, bounds.height - outlineWidth)
#roundrect(0,0, bounds.width,bounds.height)
self.context.set_source_rgb(0, 0, 0)
self.context.stroke()