Pulled in funky status icons from gnome-applet-vm distro

This commit is contained in:
berrange@roquette.boston.redhat.com 2006-07-14 09:46:14 -04:00
parent 0ec45880c8
commit 3356caa1c0
8 changed files with 7 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -32,13 +32,13 @@ class vmmConfig:
self.icon_dir = icon_dir
self.status_icons = {
"blocked": gtk.gdk.pixbuf_new_from_file(self.get_icon_dir() + "/state_blocked.png"),
"crashed": gtk.gdk.pixbuf_new_from_file(self.get_icon_dir() + "/state_crashed.png"),
"paused": gtk.gdk.pixbuf_new_from_file(self.get_icon_dir() + "/state_paused.png"),
"running": gtk.gdk.pixbuf_new_from_file(self.get_icon_dir() + "/state_running.png"),
"shutdown": gtk.gdk.pixbuf_new_from_file(self.get_icon_dir() + "/state_shutdown.png"),
"shutoff": gtk.gdk.pixbuf_new_from_file(self.get_icon_dir() + "/state_shutoff.png"),
"idle": gtk.gdk.pixbuf_new_from_file(self.get_icon_dir() + "/state_idle.png"),
"blocked": gtk.gdk.pixbuf_new_from_file_at_size(self.get_icon_dir() + "/state_blocked.png", 18, 18),
"crashed": gtk.gdk.pixbuf_new_from_file_at_size(self.get_icon_dir() + "/state_crashed.png", 18, 18),
"paused": gtk.gdk.pixbuf_new_from_file_at_size(self.get_icon_dir() + "/state_paused.png", 18, 18),
"running": gtk.gdk.pixbuf_new_from_file_at_size(self.get_icon_dir() + "/state_running.png", 18, 18),
"shutdown": gtk.gdk.pixbuf_new_from_file_at_size(self.get_icon_dir() + "/state_shutdown.png", 18, 18),
"shutoff": gtk.gdk.pixbuf_new_from_file_at_size(self.get_icon_dir() + "/state_shutoff.png", 18, 18),
"idle": gtk.gdk.pixbuf_new_from_file_at_size(self.get_icon_dir() + "/state_idle.png", 18, 18),
}