Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Compress.py
blob: f4145f755b87e8798bb24a0306fbe2fe23ebe7ea (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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Ignacio Rodríguez <nachoel01@gmail.com>
# Rafael Cordano <rafael.cordano@gmail.com>
# Ezequiel Pereira <eze2307@gmail.com>
 
# 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 _    # Traduccion
import utils
from utils import Boton
Abrir = Boton(_("Open"), "Abrir")      
Arriba = Boton(_('Up'), 'up')
Home = Boton(_('Zip directory'), 'gtk-home')
Add = Boton(_('Add file'), "add")
save  = Boton(_('Save file:'))
newdirectory = Boton(_('New directory'),'nuevodirectorio')
Barra = ToolbarBox()
from CompressCanvas import Canvas_box as PyApp
from CompressCanvas import *
class Compress(activity.Activity):
		def __init__(self, handle):
			activity.Activity.__init__(self, handle, True)
			canvas = PyApp(self, activity.get_bundle_path())
			Actividad = ActivityToolbarButton(self)
			Parar = StopButton(self)
			#<-------------Separadores------------->#
			Separador = gtk.SeparatorToolItem()
			Separador2  = gtk.SeparatorToolItem()
			Separador3 = gtk.SeparatorToolItem()

			Separador.set_expand(True)
			Separador.props.draw = False

			Separador3.set_expand(True)
			Separador3.props.draw = False
			Barra.toolbar.insert(Actividad, 0)      
			Barra.toolbar.insert(Separador2, 1)
			Barra.toolbar.insert(Add, 2)
			Barra.toolbar.insert(Home,3)  
			Barra.toolbar.insert(Arriba,4)
			Barra.toolbar.insert(Separador, 5)
			Barra.toolbar.insert(newdirectory, 6)
			Barra.toolbar.insert(Separador, 7)
			Barra.toolbar.insert(Abrir, 8) 
			Barra.toolbar.insert(save,9)     
			Barra.toolbar.insert(Separador3, 10)
			Barra.toolbar.insert(Parar, 11) 
			self.set_toolbar_box(Barra) # Barra
			self.set_canvas(canvas)
			self.show_all()
			save.hide()