From 15c7b915523ee1262e02cee2828cfb55116c1e35 Mon Sep 17 00:00:00 2001 From: Agustin Zubiaga Date: Sat, 22 Dec 2012 15:25:28 +0000 Subject: Base de la actividad Signed-off-by: Agustin Zubiaga --- diff --git a/activity.py b/activity.py new file mode 100644 index 0000000..6cb0836 --- /dev/null +++ b/activity.py @@ -0,0 +1,53 @@ +# Copyright (C) 2012 Agustin Zubiaga +# Copyright (C) 2012 Gonzalo Odiard + +# 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 3 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 + +from gi.repository import Gtk +from sugar3.activity import activity +from sugar3.activity.widgets import StopButton +from sugar3.activity.widgets import ActivityToolbarButton +from sugar3.graphics.toolbarbox import ToolbarBox + + +class HNDViewer(activity.Activity): + + def __init__(self, handle): + activity.Activity.__init__(self, handle, True) + + self.max_participants = 1 + + # Toolbar + toolbarbox = ToolbarBox() + + activity_button = ActivityToolbarButton(self) + toolbarbox.toolbar.insert(activity_button, 0) + + separator = Gtk.SeparatorToolItem() + separator.set_expand(True) + separator.set_draw(False) + toolbarbox.toolbar.insert(separator, -1) + + stopbtn = StopButton(self) + toolbarbox.toolbar.insert(stopbtn, -1) + + self.set_toolbar_box(toolbarbox) + self.show_all() + + def read_file(self, file_path): + return + + def write_file(self, file_path): + return diff --git a/activity/activity.info b/activity/activity.info new file mode 100644 index 0000000..14bbe6a --- /dev/null +++ b/activity/activity.info @@ -0,0 +1,7 @@ +[Activity] +name = HNDViewer +activity_version = 1 +bundle_id = org.laptop.HNDViewer +exec = sugar-activity activity.HNDViewer -s +icon = icon +license = GPLv3+ diff --git a/activity/icon.svg b/activity/icon.svg new file mode 100755 index 0000000..8da7c63 --- /dev/null +++ b/activity/icon.svg @@ -0,0 +1,26 @@ + + +]> + + + + + + + + + + + + + + diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..530f97c --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python + +# Copyright (C) 2006, Red Hat, Inc. +# +# 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 + +from sugar.activity import bundlebuilder + +bundlebuilder.start() -- cgit v0.9.1