Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristian García <cristian@cristian.(none)>2013-04-14 01:08:58 (GMT)
committer Cristian García <cristian@cristian.(none)>2013-04-14 01:08:58 (GMT)
commit8d99ccbc8d644bde3a7cd20a86162cf76eda47a1 (patch)
treec7b5a3faef4f5336125253e16657c7a759a84d6b
parent17e360bb14fd43bf4f6d197ef050c9fe17b70155 (diff)
Cambiando el color a Negro y Verde
-rw-r--r--Archivos.py29
-rw-r--r--Archivos.pycbin16433 -> 16335 bytes
-rw-r--r--CExplorer.css27
-rw-r--r--Iconos/audio.svg89
-rw-r--r--Iconos/borrar_archivo.svg43
-rw-r--r--Iconos/borrar_directorio.svg12
-rw-r--r--Iconos/compressed.svg36
-rw-r--r--Iconos/desconocido.svg99
-rw-r--r--Iconos/directory.svg12
-rw-r--r--Iconos/directory_dennied.svg11
-rw-r--r--Iconos/file_dennied.svg41
-rw-r--r--Iconos/html.svg69
-rw-r--r--Iconos/mas.svg8
-rw-r--r--Iconos/pdf.svg155
-rw-r--r--Iconos/pendrive.svg67
-rw-r--r--Iconos/plain.svg95
-rw-r--r--Iconos/preferencias.svg47
-rw-r--r--Iconos/python.svg84
-rw-r--r--Iconos/sound.svg89
-rw-r--r--Iconos/video.svg135
-rw-r--r--Iconos/xo.svg66
-rw-r--r--Iconos/zip.svg36
-rw-r--r--Widgets.py16
-rw-r--r--Widgets.pycbin12014 -> 12223 bytes
-rw-r--r--window.py49
25 files changed, 928 insertions, 387 deletions
diff --git a/Archivos.py b/Archivos.py
index 16a3a56..27fa096 100644
--- a/Archivos.py
+++ b/Archivos.py
@@ -19,7 +19,7 @@ PENDRIVE = os.path.join(DIRECCION, 'pendrive.svg')
DIR_SIN_PER = os.path.join(DIRECCION, 'directory_dennied.svg')
FILE_SIN_PER = os.path.join(DIRECCION, 'file_dennied.svg')
-images = ('svg', 'png', 'gif', 'jpg', 'xmp', 'ico')
+images = ('svg', 'png', 'gif', 'jpg', 'jpeg', 'xmp', 'ico')
videos = ('flv', '.mp4', '.mpa', '.mpe', '.mpeg', '.mpg')
local = os.path.expanduser('~/.local')
@@ -37,13 +37,14 @@ if os.path.exists(aplicaciones) and os.path.isdir(aplicaciones):
if os.path.isfile(direccion):
texto = open(direccion).read()
- if 'MimeType' in texto or 'mime-type' in texto or 'mime-type' in texto:
+ if 'MimeType' in texto or 'mime-type' in texto:
programas_instalados.append(texto)
direcciones_prgramas.append(direccion)
def intentar_abrir(direccion):
"""Por ahora no hace nada"""
+ """
tipo = commands.getoutput('file %s --mime-type -b' % direccion)
tipo = tipo.split('/')[0]
@@ -54,14 +55,24 @@ def intentar_abrir(direccion):
aplicaciones_utiles.append(x)
texto = aplicaciones_utiles[0]
- print texto
- """
- for linea in aplicaciones_utiles[0].splitlines:
+
+ direccion = False
+ for linea in texto.splitlines():
if 'exec' in linea:
+ if 'exec=' in linea:
+ direccion = linea.split('exec=')
+
+ if direccion:
commands.getoutput(direcciones_prgramas[numero] + ' ' + direccion)
break
+
"""
+ if ' ' in direccion:
+ direccion = direccion.replace(' ', '\ ')
+
+ commands.getoutput('gnome-open %s' % direccion)
+
def crear_papelera():
"""Crea los directorios de la papelera"""
@@ -168,7 +179,10 @@ def get_pixbuf(direccion):
extension = direccion.split('.')[-1]
extension += '.svg'
- if 'image' in tipo or extension in images:
+ if get_carpeta_contenedora(direccion) == '/home/cristian/Imágenes/':
+ print tipo
+
+ if 'image' in images:
pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size(direccion, 64, 64)
if 'video' in tipo or extension in videos:
@@ -263,9 +277,6 @@ class Archivos():
elif self.accion == 'cortar' and os.path.exists(cortar):
os.system('mv %s %s' % (cortar, direccion))
- else:
- print('El origen no existe')
-
def borrar(self, archivo):
if os.path.exists(archivo):
Borrar(archivo)
diff --git a/Archivos.pyc b/Archivos.pyc
index a5a5bfa..f843a72 100644
--- a/Archivos.pyc
+++ b/Archivos.pyc
Binary files differ
diff --git a/CExplorer.css b/CExplorer.css
new file mode 100644
index 0000000..61c4322
--- /dev/null
+++ b/CExplorer.css
@@ -0,0 +1,27 @@
+/* Configuracion de tema de colores para CExplorer */
+
+GtkWindow, GtkEntry, GtkIconView, GtkButton, GtkToolButton, GtkToolbar, GtkMenu, GtkTreeView, GtkPaned {
+ background-color: black;
+ color: green;
+}
+
+GtkSeparatorToolItem {
+ background-color: green;
+ color: green;
+}
+
+GtkLabel {
+ background-color: black;
+ color: green;
+}
+
+GtkScrolledWindow {
+ -GtkRange-slider-width: 10;
+ -GtkRange-trough-border: 0;
+ -GtkRange-stepper-size: 0;
+ -GtkScrollbar-min-slider-length: 45;
+ -GtkScrollbar-has-forward-stepper: 0;
+ -GtkScrollbar-has-backward-stepper: 0;
+ -GtkScrollbar-has-secondary-forward-stepper: 0;
+ -GtkScrollbar-has-secondary-backward-stepper: 0;
+}
diff --git a/Iconos/audio.svg b/Iconos/audio.svg
index 5a3756b..386e629 100644
--- a/Iconos/audio.svg
+++ b/Iconos/audio.svg
@@ -1,14 +1,75 @@
-<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
- <!ENTITY stroke_color "#010101">
- <!ENTITY fill_color "#FFFFFF">
-]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="clipping-audio">
- <g display="inline">
- <g>
- <polygon fill="&fill_color;" points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 " stroke="&stroke_color;" stroke-width="3.5"/>
- <polyline fill="none" points="43.818,18.027 31.874,18.027 31.874,6.088 " stroke="&stroke_color;" stroke-width="3.5"/>
- </g>
- </g>
- <path d="M28.325,39.697c-0.511-1.457-3.21-1.073-4.41-0.07 c-2.4,2.009-0.424,4.396,2.324,3.277C27.803,42.266,28.835,41.156,28.325,39.697z" display="inline" fill="&stroke_color;" stroke="&stroke_color;" stroke-width="3.5"/>
- <line display="inline" fill="none" stroke="&stroke_color;" stroke-width="2.25" x1="28.941" x2="28.941" y1="39.806" y2="26.967"/>
- <polygon display="inline" fill="&stroke_color;" points="35.047,25.036 27.838,28.595 27.838,24.728 35.047,21.166 "/>
-</g></svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ enable-background="new 0 0 55 55"
+ height="55px"
+ version="1.1"
+ viewBox="0 0 55 55"
+ width="55px"
+ x="0px"
+ xml:space="preserve"
+ y="0px"
+ id="svg2"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="audio.svg"><metadata
+ id="metadata23"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+ id="defs21">
+
+
+
+
+
+
+
+
+
+ </defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="809"
+ inkscape:window-height="480"
+ id="namedview19"
+ showgrid="false"
+ inkscape:zoom="4.2909091"
+ inkscape:cx="33.934345"
+ inkscape:cy="27.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polygon9"
+ points="31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " /><polyline
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polyline11"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 " /><path
+ style="fill:#00ff00;stroke:#00ff00;stroke-width:3.50000000000000000;display:inline"
+ inkscape:connector-curvature="0"
+ id="path13"
+ display="inline"
+ d="m 28.325,39.697 c -0.511,-1.457 -3.21,-1.073 -4.41,-0.07 -2.4,2.009 -0.424,4.396 2.324,3.277 1.564,-0.638 2.596,-1.748 2.086,-3.207 z" /><line
+ style="fill:#00ff00;stroke:#00ff00;stroke-width:2.25000000000000000;display:inline"
+ id="line15"
+ y2="26.966999"
+ y1="39.806"
+ x2="28.941"
+ x1="28.941"
+ display="inline" /><polygon
+ style="fill:#00ff00;display:inline"
+ id="polygon17"
+ points="27.838,24.728 35.047,21.166 35.047,25.036 27.838,28.595 "
+ display="inline" /></svg> \ No newline at end of file
diff --git a/Iconos/borrar_archivo.svg b/Iconos/borrar_archivo.svg
index b9189dc..4c10a11 100644
--- a/Iconos/borrar_archivo.svg
+++ b/Iconos/borrar_archivo.svg
@@ -17,10 +17,10 @@
y="0px"
id="svg2"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="texto.svg"><metadata
+ sodipodi:docname="borrar_archivo.svg"><metadata
id="metadata23"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs21">
@@ -28,7 +28,12 @@
-</defs><sodipodi:namedview
+
+
+
+
+
+ </defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
@@ -47,37 +52,29 @@
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="0"
- inkscape:current-layer="svg2" /><g
- style="display:inline"
- id="g5"
- display="inline"
- transform="matrix(0.68291947,0,0,0.68291947,2.4998165,2.928975)">
- <g
- id="g7">
- <polygon
- style="fill:#ffffff;stroke:#010101;stroke-width:3.5"
- id="polygon9"
- points="31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " />
- <polyline
- style="fill:none;stroke:#010101;stroke-width:3.5"
- id="polyline11"
- points="43.818,18.027 31.874,18.027 31.874,6.088 " />
- </g>
- </g><path
- style="fill:#010101;fill-opacity:1;display:inline"
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polygon9"
+ points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 "
+ transform="matrix(0.68291947,0,0,0.68291947,2.4998165,2.928975)" /><polyline
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polyline11"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 "
+ transform="matrix(0.68291947,0,0,0.68291947,2.4998165,2.928975)" /><path
+ style="fill:#00ff00;fill-opacity:1;display:inline"
inkscape:connector-curvature="0"
id="path5-2"
display="inline"
d="M 15.683831,2.981779 C 13.183724,0.48138796 9.1313277,0.48252576 6.6329285,2.9812097 4.1322528,5.4818854 4.1319681,9.5331436 6.6323591,12.033535 c 2.5003911,2.500107 6.5513649,2.499823 9.0520399,-8.53e-4 2.4984,-2.4986844 2.499823,-6.5507966 -5.68e-4,-9.050903 z m -3.61234,7.71537 c -5.69e-4,0.504629 -0.409052,0.914818 -0.91425,0.91425 -0.252883,2.84e-4 -0.481588,-0.102121 -0.647143,-0.267676 -0.165555,-0.16527 -0.267391,-0.393975 -0.267391,-0.645721 l 0,-2.3172 H 7.925508 C 7.673478,8.3805182 7.4450579,8.2786816 7.2795029,8.1134113 7.113948,7.9475717 7.0115429,7.7185829 7.0115429,7.4659835 c 0,-0.5043447 0.4093357,-0.9139651 0.9151029,-0.9133958 H 10.242992 V 4.236241 c -8.54e-4,-0.5051978 0.409051,-0.9151029 0.91368,-0.9151029 0.504629,0 0.915387,0.4090511 0.914534,0.9145345 l 2.85e-4,2.3169151 2.3172,2.847e-4 c 0.504914,-0.00146 0.91368,0.4090511 0.913965,0.9139642 5.69e-4,0.5049143 -0.409905,0.9142501 -0.914535,0.9145347 h -2.316345 v 2.3157777 z" /><rect
ry="1.000953"
- style="fill:#000000;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3073"
width="2.0019059"
height="8.2930231"
x="10.157025"
y="3.3170733" /><rect
ry="1.000953"
- style="fill:#ffffff;fill-opacity:1"
+ style="fill:#000000;fill-opacity:1"
id="rect3075"
width="2.0019059"
height="8.2930231"
diff --git a/Iconos/borrar_directorio.svg b/Iconos/borrar_directorio.svg
index de3b27f..1fb61ca 100644
--- a/Iconos/borrar_directorio.svg
+++ b/Iconos/borrar_directorio.svg
@@ -17,10 +17,10 @@
y="0px"
id="svg2"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="mas.svg"><metadata
+ sodipodi:docname="borrar_directorio.svg"><metadata
id="metadata11"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs9">
</defs><sodipodi:namedview
@@ -44,10 +44,10 @@
inkscape:window-maximized="1"
inkscape:current-layer="svg2" /><path
id="path4"
- style="fill:#ffffff;stroke:#010101;stroke-width:2.23581004;stroke-linecap:round;stroke-linejoin:round"
+ style="fill:#000000;stroke:#00ff00;stroke-width:2.23581004000000005;stroke-linecap:round;stroke-linejoin:round"
d="m 2.9229898,12.41147 3.7263496,-3.7263509 7.4526996,0 3.72635,3.7263509 14.9054,0 0,23.10337 -29.8107992,0 z"
inkscape:connector-curvature="0" /><path
- style="fill:#010101;fill-opacity:1;display:inline"
+ style="fill:#00ff00;fill-opacity:1;display:inline"
inkscape:connector-curvature="0"
id="path5-2"
display="inline"
@@ -66,14 +66,14 @@
style="fill:#ffffff;fill-opacity:1"
ry="1.097025" /><rect
ry="1.097025"
- style="fill:#000000;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3073"
width="2.1940501"
height="9.0889921"
x="31.06402"
y="7.8789682" /><rect
ry="1.097025"
- style="fill:#ffffff;fill-opacity:1"
+ style="fill:#000000;fill-opacity:1"
id="rect3075"
width="2.1940501"
height="9.0889921"
diff --git a/Iconos/compressed.svg b/Iconos/compressed.svg
index d998fc5..38a341c 100644
--- a/Iconos/compressed.svg
+++ b/Iconos/compressed.svg
@@ -17,7 +17,7 @@
y="0px"
id="svg3050"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="zip.svg"><metadata
+ sodipodi:docname="compressed.svg"><metadata
id="metadata3071"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
@@ -46,7 +46,7 @@
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3050" /><rect
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3086"
width="36.524017"
height="3.8222809"
@@ -57,7 +57,7 @@
height="3.8222809"
width="29.728853"
id="rect3088"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
transform="matrix(0,1,-1,0,0,0)"
inkscape:transform-center-y="14.864426" /><rect
y="45.556622"
@@ -65,10 +65,10 @@
height="3.8222809"
width="36.524017"
id="rect2991"
- style="fill:#010101;fill-opacity:1" /><rect
+ style="fill:#00ff00;fill-opacity:1" /><rect
inkscape:transform-center-y="14.864426"
transform="matrix(0,1,-1,0,0,0)"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect2993"
width="29.728853"
height="3.8222809"
@@ -76,7 +76,7 @@
y="-42.021709" /><rect
inkscape:transform-center-y="-3.3565009"
transform="matrix(0.76689995,-0.64176667,0.64176667,0.76689995,0,0)"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3009"
width="10.460194"
height="3.8222809"
@@ -89,7 +89,7 @@
height="3.8222809"
width="10.460194"
id="rect3011"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
transform="matrix(0.76689995,-0.64176667,0.64176667,0.76689995,0,0)"
inkscape:transform-center-y="-3.3565009" /><rect
y="12.932533"
@@ -97,18 +97,18 @@
height="3.8222809"
width="37.054348"
id="rect3013"
- style="fill:#010101;fill-opacity:1" /><rect
+ style="fill:#00ff00;fill-opacity:1" /><rect
y="-50.054855"
x="12.925936"
height="3.8222809"
width="29.728853"
id="rect3015"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
transform="matrix(0,1,-1,0,0,0)"
inkscape:transform-center-y="14.864426" /><rect
inkscape:transform-center-y="-3.3565009"
transform="matrix(0.76689995,-0.64176667,0.64176667,0.76689995,0,0)"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3017"
width="10.460194"
height="3.8222809"
@@ -117,7 +117,7 @@
inkscape:transform-center-x="-4.0109611" /><rect
inkscape:transform-center-y="-3.1137721"
transform="matrix(0.71716338,-0.69690508,0.67227098,0.74030516,0,0)"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3019"
width="8.9360065"
height="1.7827625"
@@ -130,19 +130,19 @@
height="0"
x="0"
y="0" /><path
- style="fill:#ffffff;fill-opacity:1"
+ style="fill:#000000;fill-opacity:1"
d="m 7.6432831,34.524458 0,-11.136932 15.2911839,0 15.291185,0 0,11.136932 0,11.136932 -15.291185,0 -15.2911839,0 0,-11.136932 z"
id="path2994"
inkscape:connector-curvature="0" /><path
- style="fill:#ffffff;fill-opacity:1"
- d="m 10.47171,19.429177 c 0,-0.03809 0.666034,-0.634716 1.480074,-1.325826 l 1.480074,-1.256562 6.514648,0 6.514647,0 -1.316977,1.325825 -1.316977,1.325825 -6.677744,0 c -3.67276,0 -6.677745,-0.03117 -6.677745,-0.06926 z"
+ style="fill:#000000;fill-opacity:1"
+ d="m 9.9413799,19.596718 c 0,-0.04317 0.7249431,-0.719344 1.6109811,-1.502602 l 1.610983,-1.424104 7.090846,0 7.090846,0 -1.433459,1.502602 -1.433459,1.502602 -7.268369,0 c -3.997603,0 -7.2683691,-0.03533 -7.2683691,-0.0785 z"
id="path2996"
inkscape:connector-curvature="0" /><path
- style="fill:#ffffff;fill-opacity:1"
- d="m 27.97762,18.170449 1.32799,-1.327991 6.699701,0.04636 6.6997,0.04636 -1.522054,1.281631 -1.522053,1.281631 -6.505637,0 -6.505638,0 1.327991,-1.32799 z"
+ style="fill:#000000;fill-opacity:1"
+ d="m 27.85933,18.170449 1.386477,-1.504768 6.994767,0.05254 6.994767,0.05252 -1.589087,1.452237 -1.589088,1.452237 -6.792156,0 -6.792158,0 1.386478,-1.504767 z"
id="path2998"
inkscape:connector-curvature="0" /><path
- style="fill:#ffffff;fill-opacity:1"
- d="m 42.114739,33.397433 0,-10.693014 1.635184,-1.3688 c 0.899352,-0.75284 1.814171,-1.527827 2.032932,-1.722193 l 0.397748,-0.353393 -0.0032,10.769999 -0.0032,10.769999 -1.708319,1.414214 c -0.939575,0.777817 -1.852938,1.518161 -2.029696,1.645207 -0.309657,0.222571 -0.321378,-0.159 -0.321378,-10.462019 z"
+ style="fill:#000000;fill-opacity:1"
+ d="m 41.937962,33.626384 0,-10.999891 1.706279,-1.408084 c 0.938455,-0.774445 1.893048,-1.571674 2.121321,-1.771617 l 0.415041,-0.363536 -0.0033,11.079087 -0.0033,11.079086 -1.782594,1.454801 c -0.980426,0.800139 -1.933501,1.56173 -2.117944,1.692423 -0.32312,0.228957 -0.335351,-0.163564 -0.335351,-10.762269 z"
id="path3000"
inkscape:connector-curvature="0" /></svg> \ No newline at end of file
diff --git a/Iconos/desconocido.svg b/Iconos/desconocido.svg
index c094044..1f3e9ef 100644
--- a/Iconos/desconocido.svg
+++ b/Iconos/desconocido.svg
@@ -1,15 +1,84 @@
-<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
- <!ENTITY stroke_color "#010101">
- <!ENTITY fill_color "#FFFFFF">
-]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="clipping-data">
- <g>
- <g>
- <polygon fill="&fill_color;" points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 " stroke="&stroke_color;" stroke-width="3.5"/>
- <polyline fill="none" points="43.818,18.027 31.874,18.027 31.874,6.088 " stroke="&stroke_color;" stroke-width="3.5"/>
- </g>
- </g>
- <rect fill="&stroke_color;" height="5.5" width="5.5" x="16.441" y="34.625"/>
- <rect fill="&stroke_color;" height="5.5" width="5.5" x="21.941" y="29.125"/>
- <rect fill="&stroke_color;" height="5.5" width="5.5" x="27.441" y="34.625"/>
- <rect fill="&stroke_color;" height="5.5" width="5.5" x="32.941" y="29.125"/>
-</g></svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ enable-background="new 0 0 55 55"
+ height="55px"
+ version="1.1"
+ viewBox="0 0 55 55"
+ width="55px"
+ x="0px"
+ xml:space="preserve"
+ y="0px"
+ id="svg2"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="desconocido.svg"><metadata
+ id="metadata25"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+ id="defs23">
+
+
+
+
+
+
+
+
+
+
+ </defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="640"
+ inkscape:window-height="480"
+ id="namedview21"
+ showgrid="false"
+ inkscape:zoom="4.2909091"
+ inkscape:cx="27.5"
+ inkscape:cy="27.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polygon9"
+ points="31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " /><polyline
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polyline11"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 " /><rect
+ style="fill:#00ff00"
+ id="rect13"
+ y="34.625"
+ x="16.441"
+ width="5.5"
+ height="5.5" /><rect
+ style="fill:#00ff00"
+ id="rect15"
+ y="29.125"
+ x="21.941"
+ width="5.5"
+ height="5.5" /><rect
+ style="fill:#00ff00"
+ id="rect17"
+ y="34.625"
+ x="27.441"
+ width="5.5"
+ height="5.5" /><rect
+ style="fill:#00ff00"
+ id="rect19"
+ y="29.125"
+ x="32.941002"
+ width="5.5"
+ height="5.5" /></svg> \ No newline at end of file
diff --git a/Iconos/directory.svg b/Iconos/directory.svg
index 688ffc3..448a4c3 100644
--- a/Iconos/directory.svg
+++ b/Iconos/directory.svg
@@ -12,8 +12,8 @@
width="55px"
id="svg2"
version="1.1"
- inkscape:version="0.48.1 r9760"
- sodipodi:docname="user-documents.svg">
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="directory.svg">
<metadata
id="metadata18">
<rdf:RDF>
@@ -36,19 +36,19 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
- inkscape:window-width="1200"
- inkscape:window-height="837"
+ inkscape:window-width="1024"
+ inkscape:window-height="545"
id="namedview14"
showgrid="false"
inkscape:zoom="4.2909091"
inkscape:cx="27.966102"
inkscape:cy="27.5"
inkscape:window-x="0"
- inkscape:window-y="31"
+ inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
d="m 7,14 5,-5 10,0 5,5 20,0 0,31 -40,0 z"
- style="fill:#FFFFFF;stroke:#010101;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
+ style="fill:#000000;stroke:#00ff00;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
id="path4" />
</svg>
diff --git a/Iconos/directory_dennied.svg b/Iconos/directory_dennied.svg
index 7936e8b..884ae86 100644
--- a/Iconos/directory_dennied.svg
+++ b/Iconos/directory_dennied.svg
@@ -37,7 +37,7 @@
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1024"
- inkscape:window-height="541"
+ inkscape:window-height="545"
id="namedview14"
showgrid="false"
inkscape:zoom="4.2909091"
@@ -49,11 +49,12 @@
inkscape:current-layer="svg2" />
<path
d="m 7,14 5,-5 10,0 5,5 20,0 0,31 -40,0 z"
- style="fill:#FFFFFF;stroke:#010101;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
+ style="fill:#000000;stroke:#00ff00;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
id="path4" />
<g
id="g2986"
- transform="matrix(1.2871121,0,0,1.2871121,35.049817,-7.784965)">
+ transform="matrix(1.1997237,0,0,1.1997237,34.859518,-5.4922731)"
+ style="fill:#00ff00">
<rect
transform="matrix(0.74971562,-0.66176015,0.66176015,0.74971562,0,0)"
y="15.74616"
@@ -61,9 +62,9 @@
height="3.3626575"
width="28.429741"
id="rect2982"
- style="fill:#ff0000;fill-rule:evenodd;stroke:none" />
+ style="fill:#00ff00;fill-rule:evenodd;stroke:none" />
<rect
- style="fill:#ff0000;fill-rule:evenodd;stroke:none"
+ style="fill:#00ff00;fill-rule:evenodd;stroke:none"
id="rect2984"
width="28.429741"
height="3.3626575"
diff --git a/Iconos/file_dennied.svg b/Iconos/file_dennied.svg
index bfe0ee9..83b4834 100644
--- a/Iconos/file_dennied.svg
+++ b/Iconos/file_dennied.svg
@@ -17,16 +17,21 @@
y="0px"
id="svg2"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="plain.svg"><metadata
+ sodipodi:docname="file_dennied.svg"><metadata
id="metadata23"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs21">
-</defs><sodipodi:namedview
+
+
+
+
+
+ </defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
@@ -45,32 +50,24 @@
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="0"
- inkscape:current-layer="svg2" /><g
- style="display:inline"
- id="g5"
- display="inline">
- <g
- id="g7">
- <polygon
- style="fill:#ffffff;stroke:#010101;stroke-width:3.5"
- id="polygon9"
- points="43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 31.874,6.088 " />
- <polyline
- style="fill:none;stroke:#010101;stroke-width:3.5"
- id="polyline11"
- points="43.818,18.027 31.874,18.027 31.874,6.088 " />
- </g>
- </g><g
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polygon9"
+ points="31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " /><polyline
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polyline11"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 " /><g
id="g2986"
- transform="translate(33.360168,4.0760146)"><rect
+ transform="translate(33.360168,4.0760146)"
+ style="fill:#00ff00"><rect
transform="matrix(0.74971562,-0.66176015,0.66176015,0.74971562,0,0)"
y="15.74616"
x="-38.146233"
height="3.3626575"
width="28.429741"
id="rect2982"
- style="fill:#ff0000;fill-rule:evenodd;stroke:none" /><rect
- style="fill:#ff0000;fill-rule:evenodd;stroke:none"
+ style="fill:#00ff00;fill-rule:evenodd;stroke:none" /><rect
+ style="fill:#00ff00;fill-rule:evenodd;stroke:none"
id="rect2984"
width="28.429741"
height="3.3626575"
diff --git a/Iconos/html.svg b/Iconos/html.svg
index dfc5af1..7469f95 100644
--- a/Iconos/html.svg
+++ b/Iconos/html.svg
@@ -17,7 +17,7 @@
y="0px"
id="svg2"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="texto-html.svg"><metadata
+ sodipodi:docname="html.svg"><metadata
id="metadata35"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
@@ -43,7 +43,12 @@
-</defs><sodipodi:namedview
+
+
+
+
+
+ </defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
@@ -58,27 +63,19 @@
showgrid="false"
inkscape:zoom="4.2909091"
inkscape:cx="57.730702"
- inkscape:cy="22.391784"
+ inkscape:cy="13.06975"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="0"
- inkscape:current-layer="svg2" /><g
- style="display:inline"
- display="inline"
- id="g3054"
- transform="translate(2.8313498,-0.00100006)">
- <g
- id="g3056">
- <polygon
- style="fill:#ffffff;stroke:#010101;stroke-width:3.5"
- points="43.818,48.914 10.932,48.914 10.932,6.088 31.874,6.088 43.818,18.027 "
- id="polygon3058" />
- <polyline
- style="fill:none;stroke:#010101;stroke-width:3.5"
- points="43.818,18.027 31.874,18.027 31.874,6.088 "
- id="polyline3060" />
- </g>
- </g><circle
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.5"
+ points="10.932,48.914 10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 "
+ id="polygon3058"
+ transform="translate(1.4330449,1.1642542)" /><polyline
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.5"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 "
+ id="polyline3060"
+ transform="translate(0.26779047,2.7956105)" /><circle
cx="29.122999"
cy="28.4"
r="6.4689999"
@@ -88,25 +85,25 @@
sodipodi:cy="28.4"
sodipodi:rx="6.4689999"
sodipodi:ry="6.4689999"
- style="fill:#010101;fill-opacity:1"
- transform="matrix(1.7203268,0,0,1.7203268,-19.571415,-16.464073)" /><path
- style="fill:#010101;fill-opacity:1;stroke:#ffffff;stroke-width:1.67731869"
+ style="fill:#00ff00;fill-opacity:1;stroke:#000000"
+ transform="matrix(1.7203268,0,0,1.7203268,-21.435822,-13.667463)" /><path
+ style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1.67731869"
inkscape:connector-curvature="0"
id="path23-7"
- d="m 30.531383,21.266134 c 0,0 6.186295,5.111091 6.186295,11.168362 0,6.060711 -6.186295,11.087506 -6.186295,11.087506" /><path
- style="fill:#010101;fill-opacity:1;stroke:#ffffff;stroke-width:1.67731869"
+ d="m 28.666976,24.062744 c 0,0 6.186295,5.111091 6.186295,11.168362 0,6.060711 -6.186295,11.087506 -6.186295,11.087506" /><path
+ style="fill:#00ff00;fill-opacity:1;stroke:#000000;stroke-width:1.67731869"
inkscape:connector-curvature="0"
id="path25-9"
- d="m 30.531383,21.266134 c 0,0 -6.26543,4.693052 -6.26543,11.168362 0,6.47703 6.26543,11.087506 6.26543,11.087506" /><line
- style="fill:none;stroke:#ffffff;stroke-width:1.67731869"
+ d="m 28.666976,24.062744 c 0,0 -6.26543,4.693052 -6.26543,11.168362 0,6.47703 6.26543,11.087506 6.26543,11.087506" /><line
+ style="fill:none;stroke:#000000;stroke-width:1.67731869"
id="line27-4"
- y2="43.522003"
- y1="21.266132"
- x2="30.531384"
- x1="30.531384" /><line
- style="fill:none;stroke:#ffffff;stroke-width:1.67731869"
+ y2="46.318615"
+ y1="24.062742"
+ x2="28.666977"
+ x1="28.666977" /><line
+ style="fill:none;stroke:#000000;stroke-width:1.67731869"
id="line29-0"
- y2="32.394066"
- y1="32.394066"
- x2="41.424541"
- x1="19.168676" /></svg> \ No newline at end of file
+ y2="35.190678"
+ y1="35.190678"
+ x2="39.560135"
+ x1="17.30427" /></svg> \ No newline at end of file
diff --git a/Iconos/mas.svg b/Iconos/mas.svg
index cff6fb7..57bb53d 100644
--- a/Iconos/mas.svg
+++ b/Iconos/mas.svg
@@ -44,10 +44,10 @@
inkscape:window-maximized="1"
inkscape:current-layer="svg2" /><path
id="path4"
- style="fill:#ffffff;stroke:#010101;stroke-width:2.23581004;stroke-linecap:round;stroke-linejoin:round"
+ style="fill:#000000;stroke:#00ff00;stroke-width:2.23581004000000005;stroke-linecap:round;stroke-linejoin:round"
d="m 2.9229898,12.41147 3.7263496,-3.7263509 7.4526996,0 3.72635,3.7263509 14.9054,0 0,23.10337 -29.8107992,0 z"
inkscape:connector-curvature="0" /><path
- style="fill:#010101;fill-opacity:1;display:inline"
+ style="fill:#00ff00;fill-opacity:1;display:inline"
inkscape:connector-curvature="0"
id="path5-2"
display="inline"
@@ -63,10 +63,10 @@
height="9.0889921"
width="2.1940501"
id="rect3063"
- style="fill:#ffffff;fill-opacity:1"
+ style="fill:#000000;fill-opacity:1"
ry="1.097025" /><rect
ry="1.097025"
- style="fill:#ffffff;fill-opacity:1"
+ style="fill:#000000;fill-opacity:1"
id="rect3069"
width="2.1940501"
height="9.0889921"
diff --git a/Iconos/pdf.svg b/Iconos/pdf.svg
index 62fbd8f..a7f28cb 100644
--- a/Iconos/pdf.svg
+++ b/Iconos/pdf.svg
@@ -17,11 +17,11 @@
y="0px"
id="svg2"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="texto-python.svg"><metadata
- id="metadata23"><rdf:RDF><cc:Work
- rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
- id="defs21">
+ sodipodi:docname="pdf.svg"><metadata
+ id="metadata23"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+ id="defs21">
@@ -30,79 +30,78 @@
-</defs><sodipodi:namedview
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1"
- objecttolerance="10"
- gridtolerance="10"
- guidetolerance="10"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:window-width="1024"
- inkscape:window-height="545"
- id="namedview19"
- showgrid="false"
- inkscape:zoom="4.2909091"
- inkscape:cx="-18.276501"
- inkscape:cy="40.853356"
- inkscape:window-x="0"
- inkscape:window-y="27"
- inkscape:window-maximized="1"
- inkscape:current-layer="svg2"
- inkscape:snap-nodes="false"
- inkscape:object-paths="true"
- inkscape:snap-intersection-paths="true"
- inkscape:object-nodes="true"
- inkscape:snap-bbox="false" /><g
- style="display:inline"
- id="g5"
- display="inline"
- transform="translate(0.93220339,-0.46610169)">
- <g
- id="g7">
- <polygon
- style="fill:#ffffff;stroke:#010101;stroke-width:3.5"
+
+
+
+
+
+ </defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1024"
+ inkscape:window-height="545"
+ id="namedview19"
+ showgrid="false"
+ inkscape:zoom="4.2909091"
+ inkscape:cx="12.41149"
+ inkscape:cy="35.496814"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ inkscape:snap-nodes="false"
+ inkscape:object-paths="true"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-nodes="true"
+ inkscape:snap-bbox="false" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.5"
id="polygon9"
- points="10.932,48.914 10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 " />
- <polyline
- style="fill:none;stroke:#010101;stroke-width:3.5"
+ points="10.932,48.914 10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 "
+ transform="translate(3.4957627,0)" /><polyline
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.5"
id="polyline11"
- points="43.818,18.027 31.874,18.027 31.874,6.088 " />
- </g>
- </g><rect
- style="fill:#010101;fill-opacity:1"
- id="rect3205"
- width="26.800848"
- height="13.050849"
- x="3.7288134"
- y="10.25424"
- rx="4.9749885" /><text
- xml:space="preserve"
- style="font-size:10px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
- x="5.3601699"
- y="20.275421"
- id="text3207"
- sodipodi:linespacing="125%"><tspan
- sodipodi:role="line"
- id="tspan3209"
- x="5.3601699"
- y="20.275421">PDF</tspan></text>
+ points="43.818,18.027 31.874,18.027 31.874,6.088 "
+ transform="translate(2.5635593,1.1652542)" /><rect
+ style="fill:#010101;fill-opacity:1;stroke:#00ff00;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none"
+ id="rect3205"
+ width="26.800848"
+ height="13.050849"
+ x="3.9618642"
+ y="9.3220367"
+ rx="4.9749885" /><path
+ inkscape:connector-curvature="0"
+ id="path2995"
+ style="font-size:10px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#00ff00;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ d="m 6.7442401,12.05318 3.1201171,0 c 0.9277298,7e-6 1.6389918,0.206713 2.1337888,0.620117 0.498041,0.410163 0.747063,0.9961 0.74707,1.757813 -7e-6,0.764978 -0.249029,1.35417 -0.74707,1.767578 -0.494797,0.410159 -1.206059,0.615237 -2.1337888,0.615234 l -1.2402343,0 0,2.529297 -1.8798828,0 0,-7.290039 m 1.8798828,1.362305 0,2.036133 1.040039,0 c 0.3645791,3e-6 0.6461541,-0.08789 0.8447271,-0.263672 0.198562,-0.179032 0.297846,-0.431311 0.297851,-0.756836 -5e-6,-0.325516 -0.09929,-0.576167 -0.297851,-0.751953 -0.198573,-0.175776 -0.480148,-0.263666 -0.8447271,-0.263672 l -1.040039,0" /><path
+ inkscape:connector-curvature="0"
+ id="path2997"
+ style="font-size:10px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#00ff00;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ d="m 15.948341,13.474079 0,4.448242 0.673828,0 c 0.768225,1e-6 1.354162,-0.190428 1.757813,-0.571289 0.406895,-0.380857 0.610346,-0.934242 0.610352,-1.660157 -6e-6,-0.722651 -0.201829,-1.272781 -0.605469,-1.65039 -0.403651,-0.377599 -0.991215,-0.566401 -1.762696,-0.566406 l -0.673828,0 m -1.879882,-1.420899 1.982421,0 c 1.106767,7e-6 1.930334,0.07976 2.470704,0.239258 0.543613,0.156257 1.009108,0.423184 1.396484,0.800781 0.34179,0.328782 0.595696,0.708014 0.761719,1.137695 0.166008,0.429693 0.249015,0.916346 0.249023,1.459961 -8e-6,0.550134 -0.08301,1.04167 -0.249023,1.47461 -0.166023,0.429689 -0.419929,0.80892 -0.761719,1.137695 -0.390632,0.377605 -0.859381,0.646159 -1.40625,0.805664 -0.54688,0.15625 -1.367192,0.234375 -2.460938,0.234375 l -1.982421,0 0,-7.290039" /><path
+ inkscape:connector-curvature="0"
+ id="path2999"
+ style="font-size:10px;font-style:normal;font-weight:bold;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#00ff00;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold"
+ d="m 22.36924,12.05318 5.073242,0 0,1.420899 -3.193359,0 0,1.357421 3.002929,0 0,1.420899 -3.002929,0 0,3.09082 -1.879883,0 0,-7.290039" />
<path
- sodipodi:type="star"
- style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- id="path3367"
- sodipodi:sides="3"
- sodipodi:cx="-98.580505"
- sodipodi:cy="19.110168"
- sodipodi:r1="15.335383"
- sodipodi:r2="7.6676917"
- sodipodi:arg1="-0.2929124"
- sodipodi:arg2="0.75428515"
- inkscape:flatsided="true"
- inkscape:rounded="-0.28"
- inkscape:randomized="0"
- d="m -83.898302,14.682202 c -2.147449,-7.12049 -25.428828,17.656611 -18.188578,19.357111 7.240254,1.700499 -2.57666,-30.8503136 -7.66946,-25.4303227 -5.0928,5.4199907 28.005488,13.1937027 25.858038,6.0732117 z"
- inkscape:transform-center-x="-0.63949326"
- inkscape:transform-center-y="-6.3722688"
- transform="matrix(0.35646604,-0.77477054,0.7339345,0.11249894,50.500387,-42.216027)" /></svg> \ No newline at end of file
+ sodipodi:type="star"
+ style="fill:#000000;fill-rule:evenodd;stroke:#00ff00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ id="path3367"
+ sodipodi:sides="3"
+ sodipodi:cx="-98.580505"
+ sodipodi:cy="19.110168"
+ sodipodi:r1="15.335383"
+ sodipodi:r2="7.6676917"
+ sodipodi:arg1="-0.2929124"
+ sodipodi:arg2="0.75428515"
+ inkscape:flatsided="true"
+ inkscape:rounded="-0.28"
+ inkscape:randomized="0"
+ d="m -83.898302,14.682202 c -2.147449,-7.12049 -25.428828,17.656611 -18.188578,19.357111 7.240254,1.700499 -2.57666,-30.8503136 -7.66946,-25.4303227 -5.0928,5.4199907 28.005488,13.1937027 25.858038,6.0732117 z"
+ inkscape:transform-center-x="-0.63949326"
+ inkscape:transform-center-y="-6.3722688"
+ transform="matrix(0.35646604,-0.77477054,0.7339345,0.11249894,53.063946,-41.749925)" /></svg> \ No newline at end of file
diff --git a/Iconos/pendrive.svg b/Iconos/pendrive.svg
index 2fd43a1..2780762 100644
--- a/Iconos/pendrive.svg
+++ b/Iconos/pendrive.svg
@@ -1,9 +1,58 @@
-<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
- <!ENTITY stroke_color "#010101">
- <!ENTITY fill_color "#ffffff">
-]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="media-flash-usb">
- <g display="inline">
- <path d="M15.885,16.723c-6.641,0-12.023,5.385-12.023,12.025 c0,6.639,5.383,12.023,12.023,12.023h0.014h27.259V16.723H15.899" fill="&fill_color;" stroke="&stroke_color;" stroke-width="3.5"/>
- <rect fill="&fill_color;" height="14.182" stroke="&stroke_color;" stroke-width="3.5" width="9.14" x="43.722" y="21.731"/>
- </g>
-</g></svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ enable-background="new 0 0 55 55"
+ height="55px"
+ version="1.1"
+ viewBox="0 0 55 55"
+ width="55px"
+ x="0px"
+ xml:space="preserve"
+ y="0px"
+ id="svg2"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="pendrive.svg"><metadata
+ id="metadata15"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+ id="defs13">
+
+
+
+
+ </defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="640"
+ inkscape:window-height="480"
+ id="namedview11"
+ showgrid="false"
+ inkscape:zoom="4.2909091"
+ inkscape:cx="27.5"
+ inkscape:cy="27.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" /><path
+ d="m 15.885,16.723 c -6.641,0 -12.023,5.385 -12.023,12.025 0,6.639 5.383,12.023 12.023,12.023 h 0.014 27.259 V 16.723 H 15.899"
+ id="path7"
+ inkscape:connector-curvature="0"
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000" /><rect
+ height="14.182"
+ width="9.1400003"
+ x="43.722"
+ y="21.731001"
+ id="rect9"
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000" /></svg> \ No newline at end of file
diff --git a/Iconos/plain.svg b/Iconos/plain.svg
index ae37e77..b503891 100644
--- a/Iconos/plain.svg
+++ b/Iconos/plain.svg
@@ -1,14 +1,81 @@
-<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
- <!ENTITY stroke_color "#010101">
- <!ENTITY fill_color "#FFFFFF">
-]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="clipping-text">
- <g display="inline">
- <g>
- <polygon fill="&fill_color;" points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 " stroke="&stroke_color;" stroke-width="3.5"/>
- <polyline fill="none" points="43.818,18.027 31.874,18.027 31.874,6.088 " stroke="&stroke_color;" stroke-width="3.5"/>
- </g>
- </g>
- <line display="inline" fill="none" stroke="&stroke_color;" stroke-width="3.5" x1="17.875" x2="36.875" y1="26.25" y2="26.25"/>
- <line display="inline" fill="none" stroke="&stroke_color;" stroke-width="3.5" x1="17.875" x2="36.875" y1="33.25" y2="33.25"/>
- <line display="inline" fill="none" stroke="&stroke_color;" stroke-width="3.5" x1="17.875" x2="36.875" y1="40.25" y2="40.25"/>
-</g></svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ enable-background="new 0 0 55 55"
+ height="55px"
+ version="1.1"
+ viewBox="0 0 55 55"
+ width="55px"
+ x="0px"
+ xml:space="preserve"
+ y="0px"
+ id="svg2"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="plain.svg"><metadata
+ id="metadata23"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+ id="defs21">
+
+
+
+
+
+
+
+
+
+ </defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="809"
+ inkscape:window-height="480"
+ id="namedview19"
+ showgrid="false"
+ inkscape:zoom="4.2909091"
+ inkscape:cx="71.197034"
+ inkscape:cy="27.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.5"
+ id="polygon9"
+ points="31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " /><polyline
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.5"
+ id="polyline11"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 "
+ transform="translate(-1.1652542,1.3983051)" /><line
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000;display:inline"
+ id="line13"
+ y2="26.25"
+ y1="26.25"
+ x2="36.875"
+ x1="17.875"
+ display="inline" /><line
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000;display:inline"
+ id="line15"
+ y2="33.25"
+ y1="33.25"
+ x2="36.875"
+ x1="17.875"
+ display="inline" /><line
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000;display:inline"
+ id="line17"
+ y2="40.25"
+ y1="40.25"
+ x2="36.875"
+ x1="17.875"
+ display="inline" /></svg> \ No newline at end of file
diff --git a/Iconos/preferencias.svg b/Iconos/preferencias.svg
index 01d93a6..ebb4ebe 100644
--- a/Iconos/preferencias.svg
+++ b/Iconos/preferencias.svg
@@ -17,16 +17,21 @@
xml:space="preserve"
y="0px"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="preferences-system.svg"><metadata
+ sodipodi:docname="preferencias.svg"><metadata
id="metadata3034"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs3032">
-</defs><sodipodi:namedview
+
+
+
+
+
+ </defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
@@ -45,42 +50,34 @@
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
- inkscape:current-layer="Layer_1" /><g
- style="display:inline"
- display="inline"
- id="g3104"
- transform="matrix(0.75622041,0,0,0.75622041,0.01671723,-0.15681713)">
- <g
- id="g3106">
- <polygon
- style="fill:#ffffff;stroke:#010101;stroke-width:3.5"
- points="43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 31.874,6.088 "
- id="polygon3108" />
- <polyline
- style="fill:none;stroke:#010101;stroke-width:3.5"
- points="43.818,18.027 31.874,18.027 31.874,6.088 "
- id="polyline3110" />
- </g>
- </g><g
+ inkscape:current-layer="Layer_1" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ points="31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 "
+ id="polygon3108"
+ transform="matrix(0.75622041,0,0,0.75622041,0.01671723,-0.15681713)" /><polyline
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 "
+ id="polyline3110"
+ transform="matrix(0.75622041,0,0,0.75622041,0.01671723,-0.15681713)" /><g
transform="matrix(0.38454406,0,0,0.38454406,10.48663,13.769352)"
- style="fill:#010101;fill-opacity:1;display:block"
+ style="fill:#00ff00;fill-opacity:1;display:block"
id="g3132"
display="block">
<path
inkscape:connector-curvature="0"
id="path3134"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
d="m 51.103,50.895 c -2.343,2.343 -6.143,2.343 -8.485,0 L 19.813,28.091 c -2.343,-2.343 -2.343,-6.143 0,-8.485 l 0,0 c 2.343,-2.343 6.143,-2.343 8.485,0 L 51.102,42.41 c 2.343,2.342 2.343,6.142 0.001,8.485 l 0,0 z" />
<g
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="g3136">
<g
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="g3138">
<path
inkscape:connector-curvature="0"
id="path3140"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
d="m 17.813,2.254 c -0.804,0 -1.587,0.081 -2.358,0.2 L 26.012,13.012 13.22,25.804 2.662,15.246 c -0.119,0.771 -0.2,1.555 -0.2,2.36 0,8.479 6.873,15.352 15.351,15.352 8.478,0 15.351,-6.873 15.351,-15.352 0,-8.479 -6.873,-15.352 -15.351,-15.352 z" />
</g>
</g>
diff --git a/Iconos/python.svg b/Iconos/python.svg
index 225d792..565eacc 100644
--- a/Iconos/python.svg
+++ b/Iconos/python.svg
@@ -17,15 +17,24 @@
y="0px"
id="svg2"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="texto.svg"><metadata
+ sodipodi:docname="python.svg"><metadata
id="metadata23"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs21">
+
+
+
+
+
+
+
+
+
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@@ -45,46 +54,31 @@
inkscape:window-x="206"
inkscape:window-y="65"
inkscape:window-maximized="0"
- inkscape:current-layer="svg2" /><g
- style="display:inline"
- id="g5"
- display="inline"
- transform="translate(0.93220339,-0.46610169)">
- <g
- id="g7">
- <polygon
- style="fill:#ffffff;stroke:#010101;stroke-width:3.5"
- id="polygon9"
- points="10.932,48.914 10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 " />
- <polyline
- style="fill:none;stroke:#010101;stroke-width:3.5"
- id="polyline11"
- points="43.818,18.027 31.874,18.027 31.874,6.088 " />
- </g>
- </g><g
- id="activity-pippy"
- display="block"
- style="display:block"
- transform="matrix(0.48221939,0,0,0.48221939,14.65323,19.103125)">
- <path
- id="path3086"
- d="m 28.497,48.507 c 5.988,0 14.88,-2.838 14.88,-11.185 0,-9.285 -7.743,-10.143 -10.954,-11.083 -3.549,-0.799 -5.913,-1.914 -6.055,-3.455 -0.243,-2.642 1.158,-3.671 3.946,-3.671 0,0 6.632,3.664 12.266,0.74 1.588,-0.823 4.432,-4.668 4.432,-7.32 0,-2.653 -9.181,-5.719 -11.967,-5.719 -2.788,0 -5.159,3.847 -5.159,3.847 -5.574,0 -11.149,5.306 -11.149,10.612 0,5.305 5.333,9.455 11.707,10.612 2.963,0.469 5.441,2.22 4.878,5.438 -0.457,2.613 -2.995,5.306 -8.361,5.306 -4.252,0 -13.3,-0.219 -14.745,-4.079 -0.929,-2.486 0.168,-5.205 1.562,-5.205 l -0.027,-0.16 c -1.42,-0.158 -5.548,0.16 -5.548,5.465 -10e-4,6.802 9.144,9.857 20.294,9.857 z"
- inkscape:connector-curvature="0"
- style="fill:#ffffff;stroke:#010101;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round" />
- <path
- id="path3088"
- d="m 42.579,19.854 c -2.623,-0.287 -6.611,-2 -7.467,-5.022"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#010101;stroke-width:3;stroke-linecap:round" />
- <circle
- id="circle3090"
- r="1.676"
- cy="10.96"
- cx="35.805"
- sodipodi:cx="35.805"
- sodipodi:cy="10.96"
- sodipodi:rx="1.676"
- sodipodi:ry="1.676"
- style="fill:#010101"
- d="m 37.481,10.96 c 0,0.925629 -0.75037,1.676 -1.676,1.676 -0.925629,0 -1.676,-0.750371 -1.676,-1.676 0,-0.925629 0.750371,-1.676 1.676,-1.676 0.92563,0 1.676,0.750371 1.676,1.676 z" />
-</g></svg> \ No newline at end of file
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polygon9"
+ points="43.818,48.914 10.932,48.914 10.932,6.088 31.874,6.088 43.818,18.027 "
+ transform="translate(0.93220339,-0.46610169)" /><polyline
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polyline11"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 "
+ transform="translate(0.93220339,-0.46610169)" /><path
+ style="fill:#000000;stroke:#00ff00;stroke-width:1.68776785999999990;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0"
+ d="m 28.395036,42.494141 c 2.88753,0 7.175424,-1.368539 7.175424,-5.393624 0,-4.477407 -3.733824,-4.891151 -5.282231,-5.344437 -1.711396,-0.385294 -2.851363,-0.922968 -2.919838,-1.666068 -0.117179,-1.274024 0.55841,-1.770228 1.902838,-1.770228 0,0 3.198079,1.766852 5.914903,0.356843 0.765764,-0.396867 2.137196,-2.251001 2.137196,-3.529846 0,-1.279328 -4.427256,-2.757813 -5.770719,-2.757813 -1.344428,0 -2.48777,1.855098 -2.48777,1.855098 -2.687891,0 -5.376264,2.558656 -5.376264,5.117312 0,2.558174 2.571676,4.559384 5.645342,5.117312 1.428816,0.226161 2.623756,1.070527 2.352266,2.622309 -0.220374,1.26004 -1.444247,2.558656 -4.031836,2.558656 -2.050397,0 -6.413518,-0.105606 -7.110325,-1.966973 -0.447982,-1.198797 0.08101,-2.509951 0.753227,-2.509951 l -0.01302,-0.07716 c -0.684752,-0.07619 -2.675353,0.07716 -2.675353,2.635329 -4.83e-4,3.280057 4.409414,4.753237 9.78616,4.753237 z"
+ id="path3086" /><path
+ style="fill:none;stroke:#00ff00;stroke-width:1.44665813000000010;stroke-linecap:round"
+ inkscape:connector-curvature="0"
+ d="M 35.185649,28.677109 C 33.920788,28.538712 31.997697,27.71267 31.584917,26.255403"
+ id="path3088" /><circle
+ d="m 37.481,10.96 c 0,0.925629 -0.75037,1.676 -1.676,1.676 -0.925629,0 -1.676,-0.750371 -1.676,-1.676 0,-0.925629 0.750371,-1.676 1.676,-1.676 0.92563,0 1.676,0.750371 1.676,1.676 z"
+ style="fill:#00ff00"
+ sodipodi:ry="1.676"
+ sodipodi:rx="1.676"
+ sodipodi:cy="10.96"
+ sodipodi:cx="35.805"
+ cx="35.805"
+ cy="10.96"
+ r="1.676"
+ id="circle3090"
+ transform="matrix(0.48221939,0,0,0.48221939,14.65323,19.103125)" /></svg> \ No newline at end of file
diff --git a/Iconos/sound.svg b/Iconos/sound.svg
index 5a3756b..386e629 100644
--- a/Iconos/sound.svg
+++ b/Iconos/sound.svg
@@ -1,14 +1,75 @@
-<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
- <!ENTITY stroke_color "#010101">
- <!ENTITY fill_color "#FFFFFF">
-]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="clipping-audio">
- <g display="inline">
- <g>
- <polygon fill="&fill_color;" points="10.932,6.088 31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 " stroke="&stroke_color;" stroke-width="3.5"/>
- <polyline fill="none" points="43.818,18.027 31.874,18.027 31.874,6.088 " stroke="&stroke_color;" stroke-width="3.5"/>
- </g>
- </g>
- <path d="M28.325,39.697c-0.511-1.457-3.21-1.073-4.41-0.07 c-2.4,2.009-0.424,4.396,2.324,3.277C27.803,42.266,28.835,41.156,28.325,39.697z" display="inline" fill="&stroke_color;" stroke="&stroke_color;" stroke-width="3.5"/>
- <line display="inline" fill="none" stroke="&stroke_color;" stroke-width="2.25" x1="28.941" x2="28.941" y1="39.806" y2="26.967"/>
- <polygon display="inline" fill="&stroke_color;" points="35.047,25.036 27.838,28.595 27.838,24.728 35.047,21.166 "/>
-</g></svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ enable-background="new 0 0 55 55"
+ height="55px"
+ version="1.1"
+ viewBox="0 0 55 55"
+ width="55px"
+ x="0px"
+ xml:space="preserve"
+ y="0px"
+ id="svg2"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="audio.svg"><metadata
+ id="metadata23"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+ id="defs21">
+
+
+
+
+
+
+
+
+
+ </defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="809"
+ inkscape:window-height="480"
+ id="namedview19"
+ showgrid="false"
+ inkscape:zoom="4.2909091"
+ inkscape:cx="33.934345"
+ inkscape:cy="27.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polygon9"
+ points="31.874,6.088 43.818,18.027 43.818,48.914 10.932,48.914 10.932,6.088 " /><polyline
+ style="fill:none;stroke:#00ff00;stroke-width:3.50000000000000000"
+ id="polyline11"
+ points="43.818,18.027 31.874,18.027 31.874,6.088 " /><path
+ style="fill:#00ff00;stroke:#00ff00;stroke-width:3.50000000000000000;display:inline"
+ inkscape:connector-curvature="0"
+ id="path13"
+ display="inline"
+ d="m 28.325,39.697 c -0.511,-1.457 -3.21,-1.073 -4.41,-0.07 -2.4,2.009 -0.424,4.396 2.324,3.277 1.564,-0.638 2.596,-1.748 2.086,-3.207 z" /><line
+ style="fill:#00ff00;stroke:#00ff00;stroke-width:2.25000000000000000;display:inline"
+ id="line15"
+ y2="26.966999"
+ y1="39.806"
+ x2="28.941"
+ x1="28.941"
+ display="inline" /><polygon
+ style="fill:#00ff00;display:inline"
+ id="polygon17"
+ points="27.838,24.728 35.047,21.166 35.047,25.036 27.838,28.595 "
+ display="inline" /></svg> \ No newline at end of file
diff --git a/Iconos/video.svg b/Iconos/video.svg
index a20349c..2ff84fb 100644
--- a/Iconos/video.svg
+++ b/Iconos/video.svg
@@ -1,17 +1,118 @@
-<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
- <!ENTITY stroke_color "#010101">
- <!ENTITY fill_color "#FFFFFF">
-]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="clipping-video">
- <g display="inline">
- <g>
- <polygon fill="&fill_color;" points="48.788,43.944 48.788,23.002 36.849,11.058 5.962,11.058 5.962,43.944 " stroke="&stroke_color;" stroke-width="3.5"/>
- <polyline fill="none" points="36.849,11.058 36.849,23.002 48.788,23.002 " stroke="&stroke_color;" stroke-width="3.5"/>
- </g>
- </g>
- <path d="M27.504,24.842c-4.757,0-8.72,4.744-8.72,4.744s3.963,4.767,8.72,4.764 c4.757-0.004,8.722-4.77,8.722-4.77S32.262,24.839,27.504,24.842z M27.504,32.932c-1.842,0-3.335-1.494-3.335-3.336 c0-1.839,1.493-3.336,3.335-3.336c1.839,0,3.333,1.497,3.333,3.336C30.838,31.438,29.344,32.932,27.504,32.932z" display="inline" fill="&stroke_color;"/>
- <circle cx="27.505" cy="29.597" display="inline" fill="&stroke_color;" r="1.514"/>
- <circle cx="14.875" cy="29.597" display="inline" fill="&stroke_color;" r="1.514"/>
- <circle cx="10.375" cy="29.597" display="inline" fill="&stroke_color;" r="1.514"/>
- <circle cx="43.875" cy="29.597" display="inline" fill="&stroke_color;" r="1.514"/>
- <circle cx="39.375" cy="29.597" display="inline" fill="&stroke_color;" r="1.514"/>
-</g></svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ enable-background="new 0 0 55 55"
+ height="55px"
+ version="1.1"
+ viewBox="0 0 55 55"
+ width="55px"
+ x="0px"
+ xml:space="preserve"
+ y="0px"
+ id="svg2"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="video.svg"><metadata
+ id="metadata29"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+ id="defs27">
+
+
+
+
+
+
+
+
+
+
+
+
+ </defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="640"
+ inkscape:window-height="480"
+ id="namedview25"
+ showgrid="false"
+ inkscape:zoom="4.2909091"
+ inkscape:cx="27.5"
+ inkscape:cy="24.237607"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg2" /><polygon
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.5"
+ id="polygon9"
+ points="48.788,23.002 36.849,11.058 5.962,11.058 5.962,43.944 48.788,43.944 " /><polyline
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.5"
+ id="polyline11"
+ points="36.849,11.058 36.849,23.002 48.788,23.002 "
+ transform="translate(-1.1652542,0.93220339)" /><path
+ style="fill:#00ff00;display:inline"
+ inkscape:connector-curvature="0"
+ id="path13"
+ display="inline"
+ d="m 27.504,24.842 c -4.757,0 -8.72,4.744 -8.72,4.744 0,0 3.963,4.767 8.72,4.764 4.757,-0.004 8.722,-4.77 8.722,-4.77 0,0 -3.964,-4.741 -8.722,-4.738 z m 0,8.09 c -1.842,0 -3.335,-1.494 -3.335,-3.336 0,-1.839 1.493,-3.336 3.335,-3.336 1.839,0 3.333,1.497 3.333,3.336 0.001,1.842 -1.493,3.336 -3.333,3.336 z" /><circle
+ style="fill:#00ff00;display:inline"
+ sodipodi:ry="1.5140001"
+ sodipodi:rx="1.5140001"
+ sodipodi:cy="29.597"
+ sodipodi:cx="27.504999"
+ id="circle15"
+ r="1.5140001"
+ display="inline"
+ cy="29.597"
+ cx="27.504999" /><circle
+ style="fill:#00ff00;display:inline"
+ sodipodi:ry="1.5140001"
+ sodipodi:rx="1.5140001"
+ sodipodi:cy="29.597"
+ sodipodi:cx="14.875"
+ id="circle17"
+ r="1.5140001"
+ display="inline"
+ cy="29.597"
+ cx="14.875" /><circle
+ style="fill:#00ff00;display:inline"
+ sodipodi:ry="1.5140001"
+ sodipodi:rx="1.5140001"
+ sodipodi:cy="29.597"
+ sodipodi:cx="10.375"
+ id="circle19"
+ r="1.5140001"
+ display="inline"
+ cy="29.597"
+ cx="10.375" /><circle
+ style="fill:#00ff00;display:inline"
+ sodipodi:ry="1.5140001"
+ sodipodi:rx="1.5140001"
+ sodipodi:cy="29.597"
+ sodipodi:cx="43.875"
+ id="circle21"
+ r="1.5140001"
+ display="inline"
+ cy="29.597"
+ cx="43.875" /><circle
+ style="fill:#00ff00;display:inline"
+ sodipodi:ry="1.5140001"
+ sodipodi:rx="1.5140001"
+ sodipodi:cy="29.597"
+ sodipodi:cx="39.375"
+ id="circle23"
+ r="1.5140001"
+ display="inline"
+ cy="29.597"
+ cx="39.375" /></svg> \ No newline at end of file
diff --git a/Iconos/xo.svg b/Iconos/xo.svg
index 7abe926..91fbeba 100644
--- a/Iconos/xo.svg
+++ b/Iconos/xo.svg
@@ -1,7 +1,59 @@
-<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
- <!ENTITY stroke_color "#666666">
- <!ENTITY fill_color "#ffffff">
-]><svg enable-background="new 0 0 55 55" height="55px" id="Layer_1" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="module-about_x5F_me_1_">
- <path d="M33.359,35.101L43.46,45.201c0.752,0.75,1.217,1.784,1.217,2.932 c0,2.287-1.855,4.143-4.146,4.143c-1.145,0-2.178-0.463-2.932-1.211L27.498,40.963l-10.1,10.1c-0.75,0.75-1.787,1.211-2.933,1.211 c-2.285,0-4.143-1.854-4.143-4.141c0-1.146,0.465-2.184,1.212-2.934l10.104-10.101L11.535,24.997 c-0.747-0.749-1.212-1.785-1.212-2.93c0-2.289,1.854-4.145,4.146-4.145c1.143,0,2.18,0.465,2.93,1.214l10.099,10.101l10.101-10.102 c0.754-0.749,1.787-1.214,2.934-1.214c2.289,0,4.146,1.856,4.146,4.145c0,1.145-0.467,2.179-1.217,2.93L33.359,35.101z" fill="&fill_color;" stroke="&stroke_color;" stroke-width="3.5"/>
- <circle cx="27.497" cy="10.849" fill="&fill_color;" r="8.122" stroke="&stroke_color;" stroke-width="3.5"/>
-</g></svg> \ No newline at end of file
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ enable-background="new 0 0 55 55"
+ height="55px"
+ id="Layer_1"
+ version="1.1"
+ viewBox="0 0 55 55"
+ width="55px"
+ x="0px"
+ xml:space="preserve"
+ y="0px"
+ inkscape:version="0.48.3.1 r9886"
+ sodipodi:docname="xo.svg"><metadata
+ id="metadata12"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
+ id="defs10">
+
+
+</defs><sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="640"
+ inkscape:window-height="480"
+ id="namedview8"
+ showgrid="false"
+ inkscape:zoom="4.2909091"
+ inkscape:cx="27.5"
+ inkscape:cy="27.5"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="Layer_1" /><path
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ inkscape:connector-curvature="0"
+ id="path4"
+ d="m 33.359,35.101 10.101,10.1 c 0.752,0.75 1.217,1.784 1.217,2.932 0,2.287 -1.855,4.143 -4.146,4.143 -1.145,0 -2.178,-0.463 -2.932,-1.211 l -10.101,-10.102 -10.1,10.1 c -0.75,0.75 -1.787,1.211 -2.933,1.211 -2.285,0 -4.143,-1.854 -4.143,-4.141 0,-1.146 0.465,-2.184 1.212,-2.934 L 21.638,35.098 11.535,24.997 c -0.747,-0.749 -1.212,-1.785 -1.212,-2.93 0,-2.289 1.854,-4.145 4.146,-4.145 1.143,0 2.18,0.465 2.93,1.214 L 27.498,29.237 37.599,19.135 c 0.754,-0.749 1.787,-1.214 2.934,-1.214 2.289,0 4.146,1.856 4.146,4.145 0,1.145 -0.467,2.179 -1.217,2.93 L 33.359,35.101 z" /><circle
+ style="fill:#000000;stroke:#00ff00;stroke-width:3.50000000000000000"
+ sodipodi:ry="8.1219997"
+ sodipodi:rx="8.1219997"
+ sodipodi:cy="10.849"
+ sodipodi:cx="27.497"
+ id="circle6"
+ r="8.1219997"
+ cy="10.849"
+ cx="27.497" /></svg> \ No newline at end of file
diff --git a/Iconos/zip.svg b/Iconos/zip.svg
index d998fc5..38a341c 100644
--- a/Iconos/zip.svg
+++ b/Iconos/zip.svg
@@ -17,7 +17,7 @@
y="0px"
id="svg3050"
inkscape:version="0.48.3.1 r9886"
- sodipodi:docname="zip.svg"><metadata
+ sodipodi:docname="compressed.svg"><metadata
id="metadata3071"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
@@ -46,7 +46,7 @@
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg3050" /><rect
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3086"
width="36.524017"
height="3.8222809"
@@ -57,7 +57,7 @@
height="3.8222809"
width="29.728853"
id="rect3088"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
transform="matrix(0,1,-1,0,0,0)"
inkscape:transform-center-y="14.864426" /><rect
y="45.556622"
@@ -65,10 +65,10 @@
height="3.8222809"
width="36.524017"
id="rect2991"
- style="fill:#010101;fill-opacity:1" /><rect
+ style="fill:#00ff00;fill-opacity:1" /><rect
inkscape:transform-center-y="14.864426"
transform="matrix(0,1,-1,0,0,0)"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect2993"
width="29.728853"
height="3.8222809"
@@ -76,7 +76,7 @@
y="-42.021709" /><rect
inkscape:transform-center-y="-3.3565009"
transform="matrix(0.76689995,-0.64176667,0.64176667,0.76689995,0,0)"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3009"
width="10.460194"
height="3.8222809"
@@ -89,7 +89,7 @@
height="3.8222809"
width="10.460194"
id="rect3011"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
transform="matrix(0.76689995,-0.64176667,0.64176667,0.76689995,0,0)"
inkscape:transform-center-y="-3.3565009" /><rect
y="12.932533"
@@ -97,18 +97,18 @@
height="3.8222809"
width="37.054348"
id="rect3013"
- style="fill:#010101;fill-opacity:1" /><rect
+ style="fill:#00ff00;fill-opacity:1" /><rect
y="-50.054855"
x="12.925936"
height="3.8222809"
width="29.728853"
id="rect3015"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
transform="matrix(0,1,-1,0,0,0)"
inkscape:transform-center-y="14.864426" /><rect
inkscape:transform-center-y="-3.3565009"
transform="matrix(0.76689995,-0.64176667,0.64176667,0.76689995,0,0)"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3017"
width="10.460194"
height="3.8222809"
@@ -117,7 +117,7 @@
inkscape:transform-center-x="-4.0109611" /><rect
inkscape:transform-center-y="-3.1137721"
transform="matrix(0.71716338,-0.69690508,0.67227098,0.74030516,0,0)"
- style="fill:#010101;fill-opacity:1"
+ style="fill:#00ff00;fill-opacity:1"
id="rect3019"
width="8.9360065"
height="1.7827625"
@@ -130,19 +130,19 @@
height="0"
x="0"
y="0" /><path
- style="fill:#ffffff;fill-opacity:1"
+ style="fill:#000000;fill-opacity:1"
d="m 7.6432831,34.524458 0,-11.136932 15.2911839,0 15.291185,0 0,11.136932 0,11.136932 -15.291185,0 -15.2911839,0 0,-11.136932 z"
id="path2994"
inkscape:connector-curvature="0" /><path
- style="fill:#ffffff;fill-opacity:1"
- d="m 10.47171,19.429177 c 0,-0.03809 0.666034,-0.634716 1.480074,-1.325826 l 1.480074,-1.256562 6.514648,0 6.514647,0 -1.316977,1.325825 -1.316977,1.325825 -6.677744,0 c -3.67276,0 -6.677745,-0.03117 -6.677745,-0.06926 z"
+ style="fill:#000000;fill-opacity:1"
+ d="m 9.9413799,19.596718 c 0,-0.04317 0.7249431,-0.719344 1.6109811,-1.502602 l 1.610983,-1.424104 7.090846,0 7.090846,0 -1.433459,1.502602 -1.433459,1.502602 -7.268369,0 c -3.997603,0 -7.2683691,-0.03533 -7.2683691,-0.0785 z"
id="path2996"
inkscape:connector-curvature="0" /><path
- style="fill:#ffffff;fill-opacity:1"
- d="m 27.97762,18.170449 1.32799,-1.327991 6.699701,0.04636 6.6997,0.04636 -1.522054,1.281631 -1.522053,1.281631 -6.505637,0 -6.505638,0 1.327991,-1.32799 z"
+ style="fill:#000000;fill-opacity:1"
+ d="m 27.85933,18.170449 1.386477,-1.504768 6.994767,0.05254 6.994767,0.05252 -1.589087,1.452237 -1.589088,1.452237 -6.792156,0 -6.792158,0 1.386478,-1.504767 z"
id="path2998"
inkscape:connector-curvature="0" /><path
- style="fill:#ffffff;fill-opacity:1"
- d="m 42.114739,33.397433 0,-10.693014 1.635184,-1.3688 c 0.899352,-0.75284 1.814171,-1.527827 2.032932,-1.722193 l 0.397748,-0.353393 -0.0032,10.769999 -0.0032,10.769999 -1.708319,1.414214 c -0.939575,0.777817 -1.852938,1.518161 -2.029696,1.645207 -0.309657,0.222571 -0.321378,-0.159 -0.321378,-10.462019 z"
+ style="fill:#000000;fill-opacity:1"
+ d="m 41.937962,33.626384 0,-10.999891 1.706279,-1.408084 c 0.938455,-0.774445 1.893048,-1.571674 2.121321,-1.771617 l 0.415041,-0.363536 -0.0033,11.079087 -0.0033,11.079086 -1.782594,1.454801 c -0.980426,0.800139 -1.933501,1.56173 -2.117944,1.692423 -0.32312,0.228957 -0.335351,-0.163564 -0.335351,-10.762269 z"
id="path3000"
inkscape:connector-curvature="0" /></svg> \ No newline at end of file
diff --git a/Widgets.py b/Widgets.py
index 02c8e1b..d67c53e 100644
--- a/Widgets.py
+++ b/Widgets.py
@@ -165,6 +165,22 @@ class Area(Gtk.IconView):
self.lista_archivos = []
self.connect('button-press-event', self.click)
+ self.connect('selection-changed', self.changed)
+
+ def changed(self, *args):
+
+ pass
+ """
+ if os.path.isfile(direccion):
+ tamanio = Archivos.get_tamanio(direccion)
+ string = ' - ' + tamanio
+
+ elif os.path.isdir(direccion) or os.path.ismount(direccion):
+ archivos = Archivos.get_tamanio(direccion)
+ string = ' - ' + archivos
+
+ self.padre.b_estado.set_text('Se ha seleccionado: ', direccion, string)
+ """
def agregar(self, nombre, direccion):
"""Agrega el icono de una carpeta o un archivo"""
diff --git a/Widgets.pyc b/Widgets.pyc
index 493f7a1..e75ec20 100644
--- a/Widgets.pyc
+++ b/Widgets.pyc
Binary files differ
diff --git a/window.py b/window.py
index e4b34d8..d227cd5 100644
--- a/window.py
+++ b/window.py
@@ -19,16 +19,34 @@ from Widgets import Barra_de_Estado
from Widgets import DialogoError
+screen = Gdk.Screen.get_default()
+css_provider = Gtk.CssProvider()
+
+style_path = 'CExplorer.css'
+
+css_provider.load_from_path(style_path)
+context = Gtk.StyleContext()
+
+context.add_provider_for_screen(
+ screen,
+ css_provider,
+ Gtk.STYLE_PROVIDER_PRIORITY_USER)
+
+
class CExplorer(Gtk.Window):
__gsignals__ = {
'change-directory': (GObject.SIGNAL_RUN_FIRST,
+ GObject.TYPE_NONE, []),
+ 'statete-changed': (GObject.SIGNAL_RUN_FIRST,
GObject.TYPE_NONE, [])}
def __init__(self):
Gtk.Window.__init__(self)
+ self.set_size_request(600, 400)
+
self.ocultos = False
self.direccion = os.path.expanduser('~')
@@ -41,6 +59,7 @@ class CExplorer(Gtk.Window):
scrolled = Gtk.ScrolledWindow()
self.area_montajes = Area_de_Montajes(self)
self.area = Area(self)
+ self.spinner = Gtk.Spinner()
self.entrada.connect('activate', self.nueva_direccion)
self.entrada.connect('icon-release', self.nueva_direccion)
@@ -60,6 +79,7 @@ class CExplorer(Gtk.Window):
b_create = Gtk.ToolButton()
b_remove = Gtk.ToolButton()
b_preferences = Gtk.ToolButton()
+ item = Gtk.ToolItem()
b_harddisk.connect('clicked', self.nueva_direccion, '/')
b_home.connect('clicked', self.nueva_direccion, '~')
@@ -76,11 +96,14 @@ class CExplorer(Gtk.Window):
b_refresh.set_tooltip_text('Recargar')
b_ocults.set_tooltip_text('Mostrar archivos ocultos')
+ item.add(self.spinner)
+
toolbar.insert(b_harddisk, -1)
toolbar.insert(b_home, -1)
toolbar.insert(b_go_up, -1)
toolbar.insert(b_refresh, -1)
toolbar.insert(b_ocults, -1)
+ toolbar.insert(item, -1)
#****** Otros Widgets ******
paned = Gtk.Paned()
@@ -121,6 +144,7 @@ class CExplorer(Gtk.Window):
self.entrada.set_text(directorio)
self.emit('change-directory')
+ self.estado_cambiado()
for objeto in os.listdir(directorio):
direccion = os.path.join(directorio, objeto)
@@ -150,6 +174,7 @@ class CExplorer(Gtk.Window):
elif os.path.isfile(directorio):
Archivos.intentar_abrir(directorio)
+ self.estado_cambiado()
else:
texto = 'inexistente'
@@ -163,8 +188,24 @@ class CExplorer(Gtk.Window):
self.abrir(self.direccion)
except:
- direccion = Archivos.get_direccion_arriba(self.direccion)
- self.abrir(direccion)
+ try:
+ direccion = Archivos.get_direccion_arriba(self.direccion)
+ self.abrir(direccion)
+
+ except:
+ self.abrir(os.path.expanduser('~'))
+
+ self.estado_cambiado()
+
+ self.estado_cambiado()
+
+ def estado_cambiado(self, *args):
+
+ if self.spinner.get_state() == Gtk.StateType(0):
+ self.spinner.start()
+
+ else:
+ self.spinner.stop()
def tecla_presionada(self, widget, event):
@@ -218,6 +259,10 @@ class CExplorer(Gtk.Window):
borrar.connect('borrado', self.update)
borrar.show_all()
+ def state_changed(self, widget, state):
+
+ pass
+
def preferencias(self, *args):
direccion = self.get_nueva_direccion()