Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py68
1 files changed, 68 insertions, 0 deletions
diff --git a/activity.py b/activity.py
new file mode 100644
index 0000000..a0943c6
--- /dev/null
+++ b/activity.py
@@ -0,0 +1,68 @@
+# This program 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 2 of the License, or
+# (at your option) any later version.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+import os
+import gtk
+from sugar.activity import activity
+from sugar.presence import presenceservice
+from sugar.presence.tubeconn import TubeConnection
+import telepathy
+import telepathy.client
+from dbus import Interface
+from dbus.service import method, signal
+from dbus.gobject_service import ExportedGObject
+
+from theme import *
+from flipsticks import flipsticks
+
+class flipsticksActivity(activity.Activity):
+ def __init__(self, handle):
+ activity.Activity.__init__(self,handle)
+ bundle_path = activity.get_bundle_path()
+ os.chdir(bundle_path)
+ self.set_title('FlipSticks')
+ toolbox = activity.ActivityToolbox(self)
+ self.set_toolbox(toolbox)
+ toolbox.show()
+ if hasattr(self, '_jobject'):
+ self._jobject.metadata['title'] = 'FlipSticks'
+ title_widget = toolbox._activity_toolbar.title
+ title_widget.set_size_request(title_widget.get_layout().get_pixel_size()[0] + 20, -1)
+ self.app = flipsticks(self, bundle_path)
+ self.app.insugar = True
+ outerframe = gtk.EventBox()
+ outerframe.modify_bg(gtk.STATE_NORMAL,gtk.gdk.color_parse(BUTTON_BACKGROUND))
+ outerframe.show()
+ innerframe = gtk.EventBox()
+ innerframe.show()
+ ifalign = gtk.Alignment(1.0,1.0,1.0,1.0)
+ ifalign.add(innerframe)
+ ifalign.set_padding(20,20,50,50) # top,bottom,left,right
+ ifalign.show()
+ #innerframe.set_border_width(150)
+ outerframe.add(ifalign)
+ innerframe.add(self.app.main)
+ self.set_canvas(outerframe)
+
+ def read_file(self, filepath):
+ f = file(filepath)
+ sdata = f.read()
+ f.close()
+ self.app.restore(sdata)
+
+ def write_file(self, filepath):
+ sdata = self.app.getsdata()
+ f = open(filepath,'w')
+ f.write(sdata)
+ f.close()