Fade all other windows of an application when a dialog is shown? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T10:28:21Z http://stackoverflow.com/feeds/question/1066153 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1066153/fade-all-other-windows-of-an-application-when-a-dialog-is-shown 5 Fade all other windows of an application when a dialog is shown? Pavan 2009-06-30T21:24:25Z 2009-07-02T15:55:23Z <p>Hi,</p> <p>How to dim / fade all other windows of an application in Delphi 2009.</p> <p>Form has an AlphaBlend property, but it controls only transparency level. But it would be nice if we can have something like this <a href="http://www.anappaday.com/downloads/2006/09/day-10-jedi-concentrate.html" rel="nofollow">(Concentrated window)</a> . Even stackoverflow.com does that, when we try to insert a link/ image etc in the post.</p> <p>How can we achieve this in a delphi application?</p> <p>Thanks &amp; Regards, Pavan</p> http://stackoverflow.com/questions/1066153/fade-all-other-windows-of-an-application-when-a-dialog-is-shown/1066215#1066215 1 Answer by Rax Olgud for Fade all other windows of an application when a dialog is shown? Rax Olgud 2009-06-30T21:38:09Z 2009-06-30T21:38:09Z <p>I'm not sure about the "right" way to do it, but in order to "fade-to-white", what you can do is place your form in another completely white form (white background color, no controls). </p> <p>So when your form is in 0% transparency, it will show as a regular form, but when it's in 50% transparency it will be faded to white. You can obviously choose other colors as your background.</p> <p>I'm looking forward to seeing other answers...</p> <p>EDIT: after seeing your "Jedi Concentrate" link, it seems that a dark-gray background will mimic the Expose effect better.</p> http://stackoverflow.com/questions/1066153/fade-all-other-windows-of-an-application-when-a-dialog-is-shown/1066377#1066377 14 Answer by Ryan J. Mills for Fade all other windows of an application when a dialog is shown? Ryan J. Mills 2009-06-30T22:17:51Z 2009-07-02T15:55:23Z <p>Here is a unit I just knocked together for you. </p> <p>To use this unit drop a TApplication component on your main form and in the OnModalBegin call _GrayForms and then in the OnModalEnd call the _NormalForms method.</p> <p>This is a very simple example and could be made to be more complex very easily. Checking for multiple call levels etc....</p> <p>For things like system (open, save, etc) dialogs you can wrap the dialog execute method in a try...finally block calling the appropriate functions to get a similar reaction.</p> <p>This unit should work on Win2k, WinXP, Vista and should even work on Win7.</p> <p>Ryan.</p> <pre><code>unit GrayOut; interface procedure _GrayForms; procedure _GrayDesktop; procedure _NormalForms; implementation uses windows, classes, forms, Contnrs, Types, Graphics, sysutils; var gGrayForms : TComponentList; procedure _GrayDesktop; var loop : integer; wScrnFrm : TForm; wForm : TForm; wPoint : TPoint; begin if not assigned(gGrayForms) then begin gGrayForms := TComponentList.Create; gGrayForms.OwnsObjects := true; for loop := 0 to Screen.MonitorCount - 1 do begin wForm := TForm.Create(nil); gGrayForms.Add(wForm); wForm.Position := poDesigned; wForm.AlphaBlend := true; wForm.AlphaBlendValue := 64; wForm.Color := clBlack; wForm.BorderStyle := bsNone; wForm.Enabled := false; wForm.BoundsRect := Screen.Monitors[loop].BoundsRect; SetWindowPos(wForm.handle, HWND_TOP, 0,0,0,0, SWP_NOSIZE or SWP_NOMOVE); wForm.Visible := true; end; end; end; procedure _GrayForms; var loop : integer; wScrnFrm : TForm; wForm : TForm; wPoint : TPoint; wScreens : TList; begin if not assigned(gGrayForms) then begin gGrayForms := TComponentList.Create; gGrayForms.OwnsObjects := true; wScreens := TList.create; try for loop := 0 to Screen.FormCount - 1 do wScreens.Add(Screen.Forms[loop]); for loop := 0 to wScreens.Count - 1 do begin wScrnFrm := wScreens[loop]; if wScrnFrm.Visible then begin wForm := TForm.Create(wScrnFrm); gGrayForms.Add(wForm); wForm.Position := poOwnerFormCenter; wForm.AlphaBlend := true; wForm.AlphaBlendValue := 64; wForm.Color := clBlack; wForm.BorderStyle := bsNone; wForm.Enabled := false; wForm.BoundsRect := wScrnFrm.BoundsRect; SetWindowLong(wForm.Handle, GWL_HWNDPARENT, wScrnFrm.Handle); SetWindowPos(wForm.handle, wScrnFrm.handle, 0,0,0,0, SWP_NOSIZE or SWP_NOMOVE); wForm.Visible := true; end; end; finally wScreens.free; end; end; end; procedure _NormalForms; begin FreeAndNil(gGrayForms); end; initialization gGrayForms := nil; end. </code></pre> http://stackoverflow.com/questions/1066153/fade-all-other-windows-of-an-application-when-a-dialog-is-shown/1066475#1066475 0 Answer by jasonpenny for Fade all other windows of an application when a dialog is shown? jasonpenny 2009-06-30T22:49:03Z 2009-06-30T22:49:03Z <p>I created a similar effect to the Jedi Concentrate with a Form sized to the Screen.WorkArea with Color := clBlack and BorderStyle := bsNone</p> <p>I found setting the AlphaBlendValue was too slow to animate nicely, so I use SetLayeredWindowAttributes()</p> <p>The unit's code:</p> <pre><code>unit frmConcentrate; {$WARN SYMBOL_PLATFORM OFF} interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TFadeThread = class(TThread) private fForm: TForm; public constructor Create(frm: TForm); procedure Execute; override; end; TConcentrateFrm = class(TForm) procedure FormDestroy(Sender: TObject); procedure FormClick(Sender: TObject); private { Private declarations } fThread: TFadeThread; public { Public declarations } end; procedure StartConcentrate(aForm: TForm = nil); var ConcentrateFrm: TConcentrateFrm; implementation {$R *.dfm} procedure StartConcentrate(aForm: TForm = nil); var Hnd: HWND; begin try if not Assigned(ConcentrateFrm) then ConcentrateFrm := TConcentrateFrm.Create(nil) else Exit; ConcentrateFrm.Top := Screen.WorkAreaTop; ConcentrateFrm.Left := Screen.WorkAreaLeft; ConcentrateFrm.Width := Screen.WorkAreaWidth; ConcentrateFrm.Height := Screen.WorkAreaHeight; Hnd := GetForegroundWindow; SetWindowLong(ConcentrateFrm.Handle, GWL_EXSTYLE, GetWindowLong(ConcentrateFrm.Handle, GWL_EXSTYLE) or WS_EX_LAYERED ); SetLayeredWindowAttributes( ConcentrateFrm.Handle, ColorToRGB(clBlack), 0, LWA_ALPHA ); ConcentrateFrm.Show; if Assigned(aForm) then aForm.BringToFront else SetForegroundWindow(Hnd); ConcentrateFrm.fThread := TFadeThread.Create(ConcentrateFrm); Application.ProcessMessages; ConcentrateFrm.fThread.Resume; except FreeAndNil(ConcentrateFrm); end; end; procedure TConcentrateFrm.FormClick(Sender: TObject); var p: TPoint; hnd: HWND; begin GetCursorPos(p); ConcentrateFrm.Hide; hnd := WindowFromPoint(p); while GetParent(hnd) 0 do hnd := GetParent(hnd); SetForegroundWindow(hnd); Release; end; procedure TConcentrateFrm.FormDestroy(Sender: TObject); begin ConcentrateFrm := nil; end; { TFadeThread } constructor TFadeThread.Create(frm: TForm); begin inherited Create(true); FreeOnTerminate := true; Priority := tpIdle; fForm := frm; end; procedure TFadeThread.Execute; var i: Integer; begin try // let the main form open before doing this intensive process. Sleep(300); i := 0; while i &lt; 180 do begin if not Win32Check( SetLayeredWindowAttributes( fForm.Handle, ColorToRGB(clBlack), i, LWA_ALPHA ) ) then begin RaiseLastOSError; end; Sleep(10); Inc(i, 4); end; except end; end; end.</code></pre> http://stackoverflow.com/questions/1066153/fade-all-other-windows-of-an-application-when-a-dialog-is-shown/1066481#1066481 1 Answer by skamradt for Fade all other windows of an application when a dialog is shown? skamradt 2009-06-30T22:51:38Z 2009-07-01T16:00:30Z <p>One way to do this is to place another form behind your dialog, this form would have no borders, and would contain a single image. This image would be a capture of the entire desktop from just before the dialog popped up, then run through a transform to lower the luminosity of each pixel by 50%. One trick that works quite well here is to use a black form, and to only include ever other pixel. If you know for certain that you will have theme support, you can optionally use a completely black form and use the alphablend and alphablendvalue properties..this will allow the OS to perform the luminosity transformation for you. An alphablendvalue of 128 is = 50%.</p> <p><strong>EDIT</strong></p> <p>As mghie pointed out, there is the possibility of a user pressing alt-tab to switch to another application. One way to handle this scenario would be to hide the "overlay" window in the application.OnDeactivate event, and to show it on the application.OnActivate event. Just remember to set the zorder of the overlay window lower than your modal dialog.</p> http://stackoverflow.com/questions/1066153/fade-all-other-windows-of-an-application-when-a-dialog-is-shown/1068139#1068139 1 Answer by Uwe Raabe for Fade all other windows of an application when a dialog is shown? Uwe Raabe 2009-07-01T09:17:23Z 2009-07-01T09:17:23Z <p>I have done something similar for showing a modal form trying to keep the implementation as simple as possible. I don't know if this will fit your needs, but here it is:</p> <pre><code>function ShowModalDimmed(Form: TForm; Centered: Boolean = true): TModalResult; var Back: TForm; begin Back := TForm.Create(nil); try Back.Position := poDesigned; Back.BorderStyle := bsNone; Back.AlphaBlend := true; Back.AlphaBlendValue := 192; Back.Color := clBlack; Back.SetBounds(0, 0, Screen.Width, Screen.Height); Back.Show; if Centered then begin Form.Left := (Back.ClientWidth - Form.Width) div 2; Form.Top := (Back.ClientHeight - Form.Height) div 2; end; result := Form.ShowModal; finally Back.Free; end; end; </code></pre>