Imagewidget: Do no longer show the text, just the icons, and a ballon help with the text for saving space.
Moved the three open, save, remove buttons under the picture, because horicontal space is short.
Changing some tooltips.
You need a special noimage.png for a placeholder picture on empty elements. In the next patch I provide one.
diff against r411
Logged In: YES
user_id=586300
Originator: NO
I that now that we modify the image widget, why not making it using an .UI file, like other "complex" widgets? Do you think you can do it?
Also in the patch I see:
+ pix = QPixmap()
+ self.image = file('ui/images/noimage.png').read()
+ pix.loadFromData(self.image)
You can load the image with QPixmap's load function directly. This will allow using resource files which Python can't handle.
Logged In: YES
user_id=1433673
Originator: YES
Ok, I will give it a try to make the imagewidget to an ui/image.ui file. Maybe next week.