TStatusBar flickers when calling Update procedure. Ways to painlessly fix this... - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:17:00Z http://stackoverflow.com/feeds/question/1141544 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1141544/tstatusbar-flickers-when-calling-update-procedure-ways-to-painlessly-fix-this 2 TStatusBar flickers when calling Update procedure. Ways to painlessly fix this... HX_unbanned 2009-07-17T05:39:18Z 2009-07-20T09:05:21Z <p>So, here is the discussion I have just read: <a href="http://www.mail-archive.com/delphi@delphi.org.nz/msg02315.html" rel="nofollow">http://www.mail-archive.com/delphi@delphi.org.nz/msg02315.html</a></p> <p>BeginUpdate and EndUpdate is not thi procedures I need ...</p> <p>Overriding API Call? I tried to get Update procedures code from ComCtrls unit, nut did not found...</p> <p>Maybe you could post here a code to fix thi flicker of statusbar compoent if the only text changes in it? I mean - something like TextUpdate or some kind of TCanvas method or PanelsRepaint ... ?</p> <p>The flickering is caused by this code: </p> <pre><code>Repeat BlockRead(Fp, BuffArrayDebug[LineIndex], DataCapac, TestByteBuff); // DataCapac = SizeOf(DWORD) ProgressBar1.StepIt; if RAWFastMode.Checked then begin // checks for fast mode and modifyies progressbar if BuffArrayDebug[LineIndex] = 0 then begin ProgressBar2.Max := FileSize(Fp) - DataCapac; ProgressBar2.Position := (LineIndex + 1) * DataCapac; LineDecr := True; end; end else begin ProgressBar2.Max := FileSize(Fp); ProgressBar2.Position := LineIndex * DataCapac end; if PreviewOpn.Caption = '&lt;' then begin // starts data copying to preview area if expanded Memo1.Lines.BeginUpdate; if (LineIndex mod DataCapac) &gt; 0 then HexMerge := HexMerge + ByteToHex(BuffArrayDebug[LineIndex]) else begin Memo1.Lines.Add(HexMerge); HexMerge := ''; end; Memo1.Lines.EndUpdate; end; StatusBar1.Panels[0].Text := 'Line: ' + Format('%.7d',[LineIndex]) + ' | Data: ' + Format('%.3d',[BuffArrayDebug[LineIndex]]) + ' | Time: ' + TimeToStr(Time - TimeVarStart); StatusBar1.Update; if FindCMDLineSwitch(ParamStr(1)) then begin TrayIcon.BalloonTitle := 'Processing ' + ExtractFileName(RAWOpenDialog.FileName) + ' and reading ...'; TrayIcon.BalloonHint := 'Current Line: ' + inttostr(LineIndex) + #10#13 + ' Byte Data: ' + inttostr(TestByteBuff) + #10#13 + ' Hex Data: ' + ByteToHex(TestByteBuff); TrayIcon.ShowBalloonHint; end; Inc(LineIndex); Until EOF(Fp); </code></pre> <p>Any ideas?</p> <p><hr /></p> <p>There was comment with this link ( <a href="http://www.stevetrefethen.com/blog/UsingTheWSEXCOMPOSITEWindowStyleToEliminateFlickerOnWindowsXP.aspx" rel="nofollow">http://www.stevetrefethen.com/blog/UsingTheWSEXCOMPOSITEWindowStyleToEliminateFlickerOnWindowsXP.aspx</a> ) and there is procedure that works ( no flickering whastsoever ), BUT IT IS VVVVVVVEEEEEERRRRRRYYYYYY SLOW!</p> <pre><code> 1 type 2 TMyForm = class(TForm) 3 protected 4 procedure CreateParams(var Params: TCreateParams); override; 5 end; 6 7 ... 8 9 procedure TMyForm.CreateParams(var Params: TCreateParams); 10 begin 11 inherited; 12 // This only works on Windows XP and above 13 if CheckWin32Version(5, 1) then 14 Params.ExStyle := Params.ExStyle or WS_EX_COMPOSITED; 15 end; 16 </code></pre> <p>Also - the target is not the form, but the StatusBar ... how to assign this method to statusbar?</p> http://stackoverflow.com/questions/1141544/tstatusbar-flickers-when-calling-update-procedure-ways-to-painlessly-fix-this/1149830#1149830 1 Answer by Darius for TStatusBar flickers when calling Update procedure. Ways to painlessly fix this... Darius 2009-07-19T12:48:59Z 2009-07-20T07:06:38Z <p>You should check whether setting the <em>TWinControl.DoubleBuffered</em> property to <em>True</em> of the TStatusBar component will make it work. Also you can try enabling this property to the status bar's parent component (probably TForm). It's a blind shot - don't have access to the compiler from here. Another thought is to override the *WM_ERASEBKGND* message without calling <em>inherited</em>. First example found after using google: <a href="http://www.stevetrefethen.com/blog/QuickTip2FixingFlickerCausedByWMERASEBKGNDInADelphiVCLApp.aspx" rel="nofollow">here</a>.</p> <p>----- Update after author's comment</p> <p>I finally got access to the compiler and now it's working. We can use the WS_EX_COMPOSITED solution. All you need is is to create your own custom component basing on TCustomStatusBar or just create a class wrapper and create your status bar instance in runtime. Like this:</p> <pre><code>TMyStatusBar = class( TCustomStatusBar ) protected { Flickering work-around } procedure CreateParams( var Params : TCreateParams ) ; override ; end ; TForm1 = class( TForm ) // (...) private FStatusBar : TMyStatusBar ; // (...) end ; ------------- procedure TMyStatusBar.CreateParams( var Params : TCreateParams ) ; begin inherited ; if CheckWin32Version( 5,1 ) then Params.ExStyle := Params.ExStyle or WS_EX_COMPOSITED ; end ; ------------- { Creating component in runtime } procedure TForm1.FormCreate( Sender : TObject ) ; begin FStatusBar := TMyStatusBar.Create( Self ) ; FStatusBar.Parent := Self ; FStatusBar.Panels.Add ; end ; </code></pre> <p>And it works for me. Good luck!</p> http://stackoverflow.com/questions/1141544/tstatusbar-flickers-when-calling-update-procedure-ways-to-painlessly-fix-this/1152072#1152072 1 Answer by mghie for TStatusBar flickers when calling Update procedure. Ways to painlessly fix this... mghie 2009-07-20T07:12:18Z 2009-07-20T09:05:21Z <p>The most important advise I can give you is to limit the number of status bar updates to maybe 10 or 20 per seconds. More will just cause unnecessary flicker, without any benefit for the user - they can't process the information that fast anyway.</p> <p>OK, with that out of the way: If you want to use the <code>WS_EX_COMPOSITED</code> extended style for the status bar you have basically three options:</p> <ul> <li><p>Create a descendent class that overrides the <code>CreateParams()</code> method and either install this into your IDE or (if you don't want to have it as its own component in the IDE) create the status bar at runtime.</p></li> <li><p>Create a descendent class with the same name <code>TStatusBar</code> in another unit, override the <code>CreateParams()</code> method, and add this unit after <code>ComCtrls</code> to the form units using status bar controls. This will create an instance of your own <code>TStatusBar</code> class instead of the one in <code>ComCtrls</code>. See <a href="http://stackoverflow.com/questions/921249/font-smoothing-in-delphi/921785#921785">this answer</a> for another example of the technique, hopefully its clear enough.</p></li> <li><p>Use the vanilla <code>TStatusBar</code> class and set the <code>WS_EX_COMPOSITED</code> extended style at runtime.</p></li> </ul> <p>I prefer the third option as the easiest one to experiment with, so here's the sample code:</p> <pre><code>procedure TForm1.FormCreate(Sender: TObject); var SBHandle: HWND; begin // This only works on Windows XP and above if CheckWin32Version(5, 1) then begin // NOTE: the following call will create all necessary window handles SBHandle := StatusBar1.Handle; SetWindowLong(SBHandle, GWL_EXSTYLE, GetWindowLong(SBHandle, GWL_EXSTYLE) or WS_EX_COMPOSITED); end; end; </code></pre> <p><strong>Edit:</strong></p> <p>If you want your code to properly support recent Windows versions and visual styles you should not even think of handling <code>WM_ERASEBKGND</code> yourself - the usual technique involves an empty handler for that method, and drawing the background in the <code>WM_PAINT</code> handler. This doesn't really work for standard controls like <code>TStatusBar</code>, as the background has to be drawn <em>somewhere</em>. If you just skip the background drawing in the <code>WM_ERASEBKGND</code> handler you will need to use owner-drawn panels spanning <em>all of the status bar</em>, otherwise the background simply won't be drawn, and the window underneath will shine through. Besides, the code for the owner-drawn panel would probably be very complex.</p> <p>Again, a much better course of action would be to untangle the mess in your posted code, properly separate worker from display code, and reduce the update speed of your status bar texts to something reasonable. There just isn't any sense at all in going past the number of monitor updates per second, and even this is sensible only for games and similar visualizations.</p>