use new icons

This commit is contained in:
Hylke Bons 2010-05-09 01:47:23 +01:00
parent ae08032bf1
commit e8c13c4aff
2 changed files with 9 additions and 3 deletions

View file

@ -20,6 +20,7 @@ uninstall:
rm /usr/local/share/sparkleshare/SparkleShare.exe.mdb
rmdir /usr/local/share/sparkleshare
rm /usr/share/icons/hicolor/*x*/places/folder-sparkleshare.png
rm /usr/share/icons/hicolor/*x*/places/folder-sync*.png
rm /usr/share/icons/hicolor/*x*/status/document-*ed.png
rm /usr/share/icons/hicolor/*x*/status/avatar-default.png
rm /usr/share/icons/hicolor/*x*/emblems/emblem-sync*.png

View file

@ -25,13 +25,18 @@ namespace SparkleShare {
}
public void SetIdleState () {
IconName = "folder-sparkleshare";
IconName = "folder-synced";
Tooltip = "SparkleShare, all up to date";
}
public void SetSyncingState () {
IconName = "view-refresh"; // Massively abusing this icon here :)
Tooltip = "SparkleShare, updating changes...";
IconName = "folder-syncing";
Tooltip = "SparkleShare, updating files...";
}
public void SetErrorState () {
IconName = "folder-sync-error";
Tooltip = "SparkleShare, something went wrong";
}
}