Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2012-04-04 20:15:29 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2012-04-04 20:15:29 (GMT)
commit76c827aed1d2a5147f3b142504a67724c5cabb7f (patch)
tree2c4f0c686dc400240799676b18184fcc3aa19d4c
parent2611a1c8f37e12926aced3f811e793e8606a1e17 (diff)
Comments changedHEADmaster
Signed-off-by: Manuel Quiñones <manuq@laptop.org>
-rw-r--r--paintwithme.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/paintwithme.py b/paintwithme.py
index 7c2464d..4a6d201 100644
--- a/paintwithme.py
+++ b/paintwithme.py
@@ -16,6 +16,14 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+"""
+PaintWithMe Activity
+
+This is my testbed for a shareable painting activity. It also
+features Cairo painting and storing/restoring the tool being used.
+
+"""
+
from gettext import gettext as _
import logging
import json
@@ -38,10 +46,10 @@ PATH = '/org/augarlabs/PaintWithMeActivity'
class PaintWithMeActivity(activity.Activity):
- """Attempt to make a shareable painting activity."""
+ """A shareable painting activity."""
def __init__(self, handle):
- """Init activity, add toolbars and drawing widget."""
+ """Init activity, add toolbars and area for drawing."""
super(PaintWithMeActivity, self).__init__(handle)
toolbar_box = PaintToolbar(self)