Rachel--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
In UI, we use the system font.
I don't think you can get a 100% pixel perfect match per platform, even if you matched styles and fonts, because the platform rendering routines are different too. I don't believe 100% fidelity is desirable though, since we typically lean towards matching the system.
Nico
When you create a GTK label or button or whatever, you can use the
..._set_markup() APIs which let you specify the contents in an
HTML-like form. Use '<span size="large">My text</span>' for large
text.
I don't think you can get a 100% pixel perfect match per platform, even if you matched styles and fonts, because the platform rendering routines are different too. I don't believe 100% fidelity is desirable though, since we typically lean towards matching the system.I'm not looking for pixel-perfect, but I'd like "not completely different".
I'm not looking for pixel-perfect, but I'd like "not completely different".Why?Or to be clearer -- if using the default system font/size/style results in more fidelity to native dialogs but dramatic differences between platforms, why would we think that a bad thing?
I'm not looking for pixel-perfect, but I'd like "not completely different".Why?Or to be clearer -- if using the default system font/size/style results in more fidelity to native dialogs but dramatic differences between platforms, why would we think that a bad thing?I consider that a bad thing since dramatic differences _should_ mean (possibly) a different design. (I.e. you might want to change margins, alignments, etc.).