Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)