Replies: 1 comment 2 replies
-
The major roadblock to enhancing SWT's API has always been the fact that one has to implement the new API with 3 different WSs - win32, gtk and cocoa. Finding someone that can do it for all 3 happens to be close to impossible task but the other option (organizing different people to implement it for different WSs) is not easier unfortunately. |
Beta Was this translation helpful? Give feedback.
-
I'm currently in the situation of computing some size of text, and stumbled about SWT FontMetrics but it only offers very general information, also a lot of helper functions are used around the place e.g. in SWT to do some guesswork.
Looking at the AWT FontMetrics I used in the "swing days" it offers much more advanced function especially getStringBounds and a like what in SWT is somehow connected to the GC object... So I wonder if there is a possibility to enhance
SWT FontMetrics
in a similar way (e.g. working on theFontData
) that does not require a fullGC
object?Beta Was this translation helpful? Give feedback.
All reactions