Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/agenda.py
blob: 618a308415d7fac393cde63702f378d16356a67b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Ignacio Rodríguez <nachoel01@gmail.com>
# Rafael Cordano <rafael.cordano@gmail.com>
# Agustin Zubiaga <aguz@sugarlabs.org>
# CeibalJAM! - Uruguay 2013

# 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

import gtk
from sugar.activity import activity
from sugar.activity.widgets import StopButton
from sugar.activity.widgets import ActivityToolbarButton
from sugar.graphics.toolbutton import ToolButton
from sugar.graphics.toolbarbox import ToolbarBox
from gettext import gettext as _
from agendacanvas import Canvas
import agendacanvas
import simplejson
import os
from agendacanvas import AddTelephoneArea



class Agenda(activity.Activity):

    def __init__(self, handle):
        super(Agenda, self).__init__(handle, True)
        
        tool = ToolbarBox()
        toolbar = tool.toolbar

        activitybtn = ActivityToolbarButton(self)
        toolbar.insert(activitybtn, 0)
        toolbar.insert(gtk.SeparatorToolItem(), -1)

        addbtn = ToolButton('add')
        addbtn.set_tooltip(_('New contact'))
        toolbar.insert(addbtn, -1)

        remove = ToolButton('remove')
        remove.set_tooltip(_('Remove this contact'))
        toolbar.insert(remove, -1)

        separator = gtk.SeparatorToolItem()
        separator.props.draw = False
        separator.set_expand(True)
        toolbar.insert(separator, -1)

        stpbtn = StopButton(self)
        toolbar.insert(stpbtn, -1)

        self._canvas = Canvas(remove)
        addbtn.connect('clicked', lambda w: self._canvas.add())    

        self.set_toolbar_box(tool)
        self.set_canvas(self._canvas)
        self.show_all()

    def read_file(self, file_path):
        fd = open(file_path, 'r')
        text = fd.read()
        data = simplejson.loads(text)
        fd.close()
        c = 0
        for x in data['avatars']:
	        if os.path.exists(x):
		        pass
	        else:
		        data['avatars'].__setitem__(c, os.path.join(os.getcwd(),
			        'avatars','none.svg'))
        c += 1
        current = 0
        for x in data['names']:
            numero = data['telephones'][current]
            edad = data['ages'][current]
            email = data['emails'][current]
            direction = data['directions'][current]
            avatar = data['avatars'][current]
            self._canvas._add(x, numero, edad, email, direction, avatar)
            current += 1

    def write_file(self, file_path):
        data = {}
        data['names'] = agendacanvas.NAMES
        data['telephones'] = agendacanvas.NUMBERS
        data['ages'] = agendacanvas.AGES
        data['emails'] = agendacanvas.EMAILS
        data['directions'] = agendacanvas.DIRECTIONS
        data['avatars'] = agendacanvas.AVATARS

        fd = open(file_path, 'w')
        text = simplejson.dumps(data)
        fd.write(text)
        fd.close()

    def destroy(self):
        for x in os.listdir('.'):
            if 'pyo' in x:
                os.remove(x)