-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJAMediaExplorer.py
191 lines (154 loc) · 6.14 KB
/
JAMediaExplorer.py
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# JAMediaExplorer.py por:
# Flavio Danesse <fdanesse@gmail.com>
# Uruguay
# 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 sys
import gtk
from Toolbars import ToolbarSalir
from Toolbars import Toolbar
from Toolbars import ToolbarTry
from Toolbars import ToolbarAccion
from Navegador import Navegador
from JAMFileSystem import get_tamanio
from JAMFileSystem import describe_archivo
from JAMFileSystem import describe_uri
from JAMFileSystem import describe_acceso_uri
from JAMFileSystem import borrar
BASE_PATH = os.path.dirname(os.path.realpath(__file__))
ICONOS = os.path.join(BASE_PATH, "Iconos")
class Ventana(gtk.Window):
def __init__(self):
gtk.Window.__init__(self)
self.set_title("JAMediaExplorer")
self.set_icon_from_file(os.path.join(ICONOS, "JAMediaExplorer.svg"))
self.modify_bg(0, gtk.gdk.Color(65000, 65000, 65000))
self.set_resizable(True)
self.set_size_request(640, 480)
self.set_position(gtk.WIN_POS_CENTER)
self.set_border_width(3)
vbox = gtk.VBox()
self.toolbar = Toolbar()
self.toolbar_accion = ToolbarAccion()
self.toolbar_salir = ToolbarSalir()
self.navegador = Navegador()
self.toolbar_try = ToolbarTry()
vbox.pack_start(self.toolbar, False, False, 0)
vbox.pack_start(self.toolbar_accion, False, False, 0)
vbox.pack_start(self.toolbar_salir, False, False, 0)
vbox.pack_start(self.navegador, True, True, 0)
vbox.pack_end(self.toolbar_try, False, False, 0)
self.add(vbox)
self.show_all()
self.realize()
self.toolbar_accion.hide()
self.toolbar_salir.hide()
self.toolbar.connect('salir', self.__confirmar_salir)
self.toolbar.connect('accion_ver', self.__set_accion)
self.toolbar_accion.connect('borrar', self.__ejecutar_borrar)
self.toolbar_salir.connect('salir', self.__salir)
self.connect("delete-event", self.__salir)
self.navegador.connect('info', self.__get_info)
self.navegador.connect('borrar', self.__set_borrar)
def __set_accion(self, widget, accion, valor):
"""
Cuando se hace click en ver ocultos del menu.
"""
self.get_toplevel().set_sensitive(False)
self.navegador.notebookdirectorios.recargar(valor)
self.get_toplevel().set_sensitive(True)
def __ejecutar_borrar(self, widget, direccion, modelo, iter_):
"""
Ejecuta borrar un archivo o directorio.
"""
self.get_toplevel().set_sensitive(False)
if borrar(direccion):
modelo.remove(iter_)
self.navegador.notebookdirectorios.copiando = False
self.navegador.notebookdirectorios.cortando = False
self.get_toplevel().set_sensitive(True)
def __set_borrar(self, widget, direccion, modelo, iter_):
"""
Setea borrar un archivo en toolbaraccion.
"""
self.toolbar_salir.hide()
self.toolbar_accion.set_accion(direccion, modelo, iter_)
def __confirmar_salir(self, widget=None, senial=None):
self.toolbar_accion.hide()
self.toolbar_salir.run("JAMediaExplorer")
def __ocultar(self, objeto):
if objeto.get_visible():
objeto.hide()
def __mostrar(self, objeto):
if not objeto.get_visible():
objeto.show()
def __get_items(self, directorio, tipo):
if not os.path.exists(directorio) \
or not os.path.isdir(directorio):
return []
items = []
for archivo in os.listdir(directorio):
path = os.path.join(directorio, archivo)
descripcion = describe_archivo(path)
if tipo in descripcion and not 'iso' in descripcion:
items.append([archivo, path])
return items
def __get_info(self, widget, path):
"""
Recibe el path seleccionado en la estructura
de directorios, obtiene información sobre el mismo
y la pasa a infowidget para ser mostrada.
"""
if not path:
return
if not os.path.exists(path):
return
self.toolbar_try.label.set_text(path)
# FIXME: Falla si se movió y no se actualiza
unidad, directorio, archivo, enlace = describe_uri(path)
lectura, escritura, ejecucion = describe_acceso_uri(path)
texto = ""
typeinfo = ""
if enlace:
texto = "Enlace.\n"
else:
if directorio:
texto = "Directorio.\n"
elif archivo:
texto = "Archivo.\n"
texto += "Tipo:\n"
for dato in describe_archivo(path).split(";"):
texto += "\t%s\n" % (dato.strip())
typeinfo += dato
texto += "Tamaño:\n"
texto += "\t%s bytes\n" % (get_tamanio(path))
texto += "Permisos: \n"
texto += "\tLactura: %s\n" % (lectura)
texto += "\tEscritura: %s\n" % (escritura)
texto += "\tEjecución: %s\n" % (ejecucion)
self.navegador.infowidget.set_info(texto, typeinfo)
def __salir(self, widget=None, senial=None):
notebook = self.navegador.notebookdirectorios
paginas = notebook.get_n_pages()
pags = notebook.get_children()
for indice in range(paginas):
pags[indice].get_child().new_handle(False)
sys.exit(0)
gtk.main_quit()
if __name__ == "__main__":
Ventana()
gtk.main()