I am looking to create an effect similar to the lightbox effect seen on many website where the background of the screen fades out and the content you want to emphasize does not. What would be the best way to go about creating such an effect in delphi ?

The content I want to emphasize in this case is a movable panel located on my form and basically all I want to do is to fade out any area of the screen that is not directly under that panel.

Thanks. Oscar

link|improve this question
Lightbox uses an overlay whose layer is below the displayed layer. – Jared Farrish Jul 30 '11 at 2:14
Thats wonderful to know, but does not answer my question :/ – Kevin Jacobs Jul 30 '11 at 2:24
Since I don't use Delphi development tools or language, I can't tell you, but that's how the JS library works in practice; it's an overlay over the browser window, with an element with a greater z-index "above" it with the content to display. – Jared Farrish Jul 30 '11 at 2:37
Unfortunately Delphi just doesn't work like that. Thanks for the reply tho, at least your tired. – Kevin Jacobs Jul 30 '11 at 2:52
Sure it does. See my answer. – Warren P Jul 30 '11 at 3:24
show 3 more comments
feedback

1 Answer

Create a new form and add this code to the FormCreate method. You could also change the properties using the properties inspector, but I'm choosing to show you the relevant properties using code:

unit Unit1;
// This is a full screen partially transparent black form.
interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls;

type
  TForm1 = class(TForm)
    procedure FormCreate(Sender: TObject);
    procedure FormShow(Sender: TObject);
    procedure FormClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

uses Unit2;

{$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject);
begin
  BorderStyle := bsNone;
  Self.WindowState := wsMaximized;
  AlphaBlend := true;
  Alphablendvalue := 127;
  Color := clBlack;
end;

procedure TForm1.FormShow(Sender: TObject);
begin
  Form2.Show;

end;

procedure TForm1.FormClick(Sender: TObject);
begin
  Close;
end;

end.

Here's a second form which has no border, which I am showing over top. It does not have alpha blending turned on, and the form style should be fsStayOnTop, or else you should use the ParentWindow property (on versions of Delphi that support that).

unit Unit2;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm2 = class(TForm)
    Label1: TLabel;
    procedure FormDeactivate(Sender: TObject);
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
    procedure FormActivate(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
    FAutoDeactivate:Boolean;
    FCounter:Integer;

    procedure WMUser1(var Message:TMessage); message WM_USER+1;
  public
    { Public declarations }
    property AutoDeactivate:Boolean read FAutoDeactivate write FAutoDeactivate;
  end;

var
  Form2: TForm2;

implementation

uses Unit1;

{$R *.dfm}

procedure TForm2.FormDeactivate(Sender: TObject);
begin
   if Self.Visible and FAutoDeactivate then
   begin
     FAutoDeactivate := false;

    Form1.Close;
  end;
end;

procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
begin
  Form1.Close;
end;

procedure TForm2.FormActivate(Sender: TObject);
begin
  PostMessage(Self.Handle,WM_USER+1,0,0);
end;

procedure TForm2.WMUser1(var Message: TMessage);
begin
 FAutoDeactivate := true;
end;

procedure TForm2.FormCreate(Sender: TObject);
begin
  BorderStyle := bsNone;
  Color := clWhite;
  FormStyle := fsStayOnTop; // or set parent 
end;

end.

That addresses how to make the whole screen "go dim", and then show something on top of that "dimmed area", but what you describe as "showing a panel in your main form" would require you to move that content out of your main form, or else clip a region out of form1, or use a combination of alpha blend plus transparency, but I don't have any code for those to show you.

If I was doing it, I would just float the thing I want not to be dimmed, above the full screen borderless 50% alpha form, as shown below.

But as you see, the screen isn't dimmed (screen brightness is not reduced), it's merely that we've done a 50% transparent layer of black which has blended in and darkened the overall screen appearance.

enter image description here

link|improve this answer
I already went that route in the past and the effect is ugly to say the least. I guess I should of phrased the question better. What I am actually trying to achive in an effect similar to the way the windows xp shutdown screen looks where the entire area behind the shutdown window is grey scale and faded out. I only used the lightbox effect because more people would know what I am talking about. – Kevin Jacobs Jul 30 '11 at 3:48
On that note however I have decided to go the cheap route and just do a screen copy and place it on my main form which is set to display full screen. I can then use sort of function that will apply a geyscale filter to the parts of the image that are not under my panel. cheap yes, but it works. – Kevin Jacobs Jul 30 '11 at 3:56
1  
@Warren P: "showing a panel in your main form" would require you to move that content out of your main form, or else clip a region out of the main form – It is possible to use both transparency and alpha blending. That way you can have a 'hole' in the form that is used to 'dim' the screen (for example, by placing a panel with its colour set to the TransparentColorValue colour of the form), and that area would not be dimmed. – Andriy M Jul 30 '11 at 5:22
1  
Okay, glad that this is possible (transparency + alpha blending) but I didn't have some code handy to do it, and so I did what I could. – Warren P Jul 30 '11 at 17:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.