camera-control-webcam-switc.../about.pas
Linuxer パスカリス スポシト d475b0280e Replace about.pas
2020-01-28 18:52:41 +00:00

56 lines
985 B
ObjectPascal

unit About;
{$mode objfpc}{$H+}
{$warnings off}
{$hints off}
// Created at 23th of January 2020, by Linuxer (https://gitlab.com/psposito), from scratch with Free Pascal
// Redesigned and further Developed at 28th of January 2020, by Linuxer (https://gitlab.com/psposito)
// to provide Camera and Mic status alone with On/Off and Mute/Unmute fuctions
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ExtCtrls, StdCtrls,
TplLabelUnit;
type
{ TForm2 }
TForm2 = class(TForm)
Button1: TButton;
Button2: TButton;
Image1: TImage;
Image2: TImage;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
ListBox1: TListBox;
plURLLabel1: TplURLLabel;
plURLLabel2: TplURLLabel;
plURLLabel3: TplURLLabel;
procedure Button2Click(Sender: TObject);
private
public
end;
var
Form2: TForm2;
implementation
{$R *.lfm}
{ TForm2 }
procedure TForm2.Button2Click(Sender: TObject);
begin
Form2.Close;
end;
end.