Delphi: Handling user's font preference - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:19:18Z http://stackoverflow.com/feeds/question/401075 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/401075/delphi-handling-users-font-preference 5 Delphi: Handling user's font preference Ian Boyd 2008-12-30T18:40:31Z 2009-01-15T21:43:45Z <p>I've come up with the call that gets the user's UI font preference (as opposed to Borland's hard-coded choice of "MS Sans Serif").</p> <p>Let's pretend the user's font preference is:</p> <pre><code>Segoe Print, 15pt </code></pre> <p>I set the font of all items, on all forms, in all applications to:</p> <pre><code>Segoe Print, 15pt </code></pre> <p>Problem is that things are now cut off. Buttons are too small - too narrow, too short. Text in labels is cut off, etc..</p> <p>The form has it's Scaled property, but that doesn't change depending on font sizes. The scaled property scaled the form when it is serialized in based on the height of the numeral "0".</p> <p>I can't find anything in the help for how Borland intended me to support the user's Windows application preferences.</p> <p>How do I handle user font preferences? </p> <p><strong>Note:</strong> I cross posted this from Embargadero's news group server, since Embargadero's news server seems to be dying, or censoring, or broken, or requiring a login.</p> <p><hr /></p> <h2>Update 1</h2> <p>i'm talking about a user's font preference, not DPI settings. i.e.: imagine the following <strong>language neutral</strong> pseudo-code:</p> <pre><code>procedure TForm1.FormCreate(Sender: TObject); var FontFace: string; FontHeight: Integer; begin GetUserFontPreference(out FontFace, out FontHeight); Self.Font.Name := FontFace; Self.Font.Height := FontHeight; end; </code></pre> <p><strong>Note:</strong> This isn't my actual code (it is language neutral pseudo-code after all). But additionally, you need to recursivly go through every control on the form, changing the font when it needs to be changed. When a font has a different style applied than its parent (e.g. bold), and no longer inherits from its parent, it needs to be manually set.</p> <p><hr /></p> <p>As per <a href="http://stackoverflow.com/users/30176/lkessler">lkessler</a>'s request, here's the code to retrieve the user's UI font preference from Windows:</p> <pre><code>procedure GetUserFontPreference(out FaceName: string; out PixelHeight: Integer); var lf: LOGFONT; begin ZeroMemory(@lf, SizeOf(lf)); //Yes IconTitleFont (not SPI_GETNONCLIENTMETRICS MessageFont) if SystemParametersInfo(SPI_GETICONTITLELOGFONT, SizeOf(lf), @lf, 0) then begin FaceName := PChar(Addr(lf.lfFaceName[0])); PixelHeight := lf.lfHeight; end else begin { If we can't get it, then assume the same non-user preferences that everyone else does. } FaceName := 'MS Shell Dlg 2'; PixelHeight := 8; end; end; </code></pre> <h2>Related questions</h2> <ul> <li><a href="http://stackoverflow.com/questions/196606/-net-2-0-winform-supporting-dpi-and-default-font-changes">.NET 2.0 WinForm: Supporting DPI and Default Font Changes</a></li> <li><a href="http://stackoverflow.com/questions/203577/-net-winforms-graphics-measurestring-returns-different-values-than-win32-gettext">.NET WinForms: Graphics.MeasureString returns different values than Win32 GetTextExtent</a></li> <li><a href="http://stackoverflow.com/questions/395195/wpf-how-to-layout-a-dialogs-in-xaml">WPF: How to layout a dialogs in XAML?</a></li> </ul> http://stackoverflow.com/questions/401075/delphi-handling-users-font-preference/401115#401115 7 Answer by Nick Hodges for Delphi: Handling user's font preference Nick Hodges 2008-12-30T19:02:45Z 2008-12-30T20:25:53Z <p>First, just so we are clear, Borland doesn't own Delphi anymore. Embarcadero now owns Delphi, and we are in safe, secure hands now.</p> <p>Okay, on to your question.</p> <p>The trick is to set TForm.AutoScroll to False AND make sure that your development machine is set to Small fonts. Leaving TForm.Scaled alone (it's default value is True).</p> <p>That's how we do it internally here, and the IDE handles everything just fine. </p> http://stackoverflow.com/questions/401075/delphi-handling-users-font-preference/401396#401396 1 Answer by mghie for Delphi: Handling user's font preference mghie 2008-12-30T20:24:06Z 2008-12-30T20:24:06Z <p>I'm feeling with you. But in all fairness: Proper GUI layout simply can not be created with a pixel-based layout mechanism as employed by the VCL. What is needed is a dynamic layout engine, which lays out controls only after</p> <ol> <li><p>the proper font has been set for each control (this depends on Windows version, user preferences, and last but not least on the type of control); and</p></li> <li><p>the text in the control has been translated to the current locale, because this may decrease or increase the space necessary for the control.</p></li> </ol> <p>Since this is all depending on run-time properties creating dialogs by placing controls can not work. Layout mechanisms like those of GTK and QT or the sizers in wxWidgets are better suited.</p> <p>I know of no such thing for Delphi programs. What I do in some programs is manual sizing and positioning of controls after font setting and translation of text. A lot of work, but depending on your audience it may be worth it.</p> <p>You could also look into the code Jordan Russell has written for Inno Setup. He does not use the Scaled property of forms, but has written code for custom scaling of controls. Maybe it will also work for very large fonts on high DPI screens; I notice that at least on my 124 DPI laptop screen setup dialogs look quite good.</p> http://stackoverflow.com/questions/401075/delphi-handling-users-font-preference/401503#401503 2 Answer by JosephStyons for Delphi: Handling user's font preference JosephStyons 2008-12-30T21:03:36Z 2008-12-30T21:03:36Z <p>To do this right, I think you would have to:</p> <p>1 - Load the user's font preference</p> <p>2 - Apply it as you've described</p> <p>3 - Determine the width and height of all captions (in pixels) and compare that to the control's width &amp; height, and adjust accordingly.</p> <p>Unfortunately, the "adjust accordingly" part is hard. You could widen a button, but then you'd have to check whether that is overlapping with another control.</p> <p>Your best bet might be to create slightly oversized controls, and hope the user doesn't choose a 32-point font size.</p> http://stackoverflow.com/questions/401075/delphi-handling-users-font-preference/401892#401892 2 Answer by lkessler for Delphi: Handling user's font preference lkessler 2008-12-30T23:59:14Z 2008-12-30T23:59:14Z <p>Kogus had the right idea, but left out the function you need to use. It would be the Windows <a href="http://msdn.microsoft.com/en-us/library/ms534223(VS.85).aspx" rel="nofollow">GetTextExtentPoint32</a> routine. You pass it a string and it calculates the width and height of the string using the currently selected font. You'll find it in Windows.pas.</p> <p>You might want to calculate in advance what the maximum space you would need for fonts you allow. </p> <p>Or you might use the function to dynamically adjust the size of the area displaying the text so that it fits.</p> <p>This would be fine for one or two controls, but either method would be a lot of work if you're trying to do this on your whole user interface.</p> http://stackoverflow.com/questions/401075/delphi-handling-users-font-preference/402662#402662 0 Answer by mj2008 for Delphi: Handling user's font preference mj2008 2008-12-31T10:13:25Z 2008-12-31T10:13:25Z <p>I'd say this was similar to translation. In our app, we have made the buttons, labels, edits, everything that little bit bigger so that longer words that are needed by some languages can be easily accommodated. It doesn't hurt the design a bit.</p> http://stackoverflow.com/questions/401075/delphi-handling-users-font-preference/448574#448574 1 Answer by Zoxc for Delphi: Handling user's font preference Zoxc 2009-01-15T21:43:45Z 2009-01-15T21:43:45Z <p>I like using this function. It's based on Graphics.GetFontData</p> <pre><code>procedure SystemFont(Font: TFont); var LogFont: TLogFont; begin if SystemParametersInfo(SPI_GETICONTITLELOGFONT, SizeOf(TLogFont), @LogFont, 0) then begin Font.Height := LogFont.lfHeight; Font.Orientation := LogFont.lfOrientation; Font.Charset := TFontCharset(LogFont.lfCharSet); Font.Name := PChar(@LogFont.lfFaceName); Font.Style := []; if LogFont.lfWeight &gt;= FW_BOLD then Font.Style := Font.Style + [fsBold]; if LogFont.lfItalic = 1 then Font.Style := Font.Style + [fsItalic]; if LogFont.lfUnderline = 1 then Font.Style := Font.Style + [fsUnderline]; if LogFont.lfStrikeOut = 1 then Font.Style := Font.Style + [fsStrikeOut]; case LogFont.lfPitchAndFamily and $F of VARIABLE_PITCH: Font.Pitch := fpVariable; FIXED_PITCH: Font.Pitch := fpFixed; else Font.Pitch := fpDefault; end; end; end; </code></pre> <p>You simply use it on all TForm.OnCreate events. An alternative could be to create a new class that does this on creation or looping Screen.Forms.</p> <p>If you change some of the properties of the default font of any of the controls on the form they will still use the old font. If you want custom properties on some controls you will have to adjust them after you call SystemFont.</p> <p>Changing Graphics.DefFontData at runtime could help if the form designer only wrote the changed properties to the .dfm files.</p>