More Image List stuff.

This commit is contained in:
Pietro Gagliardi 2014-08-16 11:26:55 -04:00
parent dc281043e3
commit 3ac3a72471
1 changed files with 12 additions and 1 deletions

View File

@ -24,4 +24,15 @@ For Tree, there is a field ImageIndex which contains the index of the entry.
Note the name of the methods on both being LoadImageList(): the image list is copied, and any future changes will **not** be reflected. (This is to accomodate check boxes in Table, which must be done manually.)
TODO appropriate size of images in an ImageList
Icons scale automatically to the best possible size.
On Windows this is GetSystemMetrics(SM_CX/YSMICON)
On GTK+ this will be determined by trial and error
[11:14] <LiamW> andlabs: probably
[11:14] <LiamW> GTK_ICON_SIZE_SMALL_TOOLBAR
[11:15] <baedert> the procedure is to just try all of them and see what looks best :p
On Mac OS X this is rowHeight
TODO which side does the scaling, C or Go?