- icon = self.MakeIcon(images.getRobinImage())
- self.SetIcon(icon, "This is a new icon")
+ names = [ "WXPdemo", "WXP", "Mondrian", "Test2m",
+ "Blom08m", "Blom10m", "Blom15m" ]
+ name = names[self.imgidx]
+
+ getFunc = getattr(images, "get%sImage" % name)
+ self.imgidx += 1
+ if self.imgidx >= len(names):
+ self.imgidx = 0
+
+ icon = self.MakeIcon(getFunc())
+ self.SetIcon(icon, "This is a new icon: " + name)