2017-08-12 20:29:52 +02:00
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ***************************** CEF4Delphi *******************************
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
//
|
|
|
|
|
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
|
|
|
|
|
// browser in Delphi applications.
|
|
|
|
|
//
|
|
|
|
|
// The original license of DCEF3 still applies to CEF4Delphi.
|
|
|
|
|
//
|
|
|
|
|
// For more information about CEF4Delphi visit :
|
|
|
|
|
// https://www.briskbard.com/index.php?lang=en&pageid=cef
|
|
|
|
|
//
|
|
|
|
|
// Copyright <20> 2017 Salvador D<>az Fau. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ************ vvvv Original license and comments below vvvv *************
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
(*
|
|
|
|
|
* Delphi Chromium Embedded 3
|
|
|
|
|
*
|
|
|
|
|
* Usage allowed under the restrictions of the Lesser GNU General Public License
|
|
|
|
|
* or alternatively the restrictions of the Mozilla Public License 1.1
|
|
|
|
|
*
|
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
|
|
|
* the specific language governing rights and limitations under the License.
|
|
|
|
|
*
|
|
|
|
|
* Unit owner : Henri Gourvest <hgourvest@gmail.com>
|
|
|
|
|
* Web site : http://www.progdigy.com
|
|
|
|
|
* Repository : http://code.google.com/p/delphichromiumembedded/
|
|
|
|
|
* Group : http://groups.google.com/group/delphichromiumembedded
|
|
|
|
|
*
|
|
|
|
|
* Embarcadero Technologies, Inc is not permitted to use or redistribute
|
|
|
|
|
* this source code without explicit permission.
|
|
|
|
|
*
|
|
|
|
|
*)
|
|
|
|
|
|
|
|
|
|
unit uGeolocation;
|
|
|
|
|
|
|
|
|
|
{$I cef.inc}
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
{$IFDEF DELPHI16_UP}
|
|
|
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
|
|
|
|
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, Vcl.ComCtrls,
|
|
|
|
|
{$ELSE}
|
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics,
|
|
|
|
|
Controls, Forms, Dialogs, StdCtrls, ExtCtrls, ComCtrls,
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
uCEFChromium, uCEFWindowParent, uCEFInterfaces, uCEFApplication, uCEFTypes, uCEFConstants;
|
|
|
|
|
|
|
|
|
|
const
|
2017-09-07 10:58:09 +02:00
|
|
|
|
MINIBROWSER_NEWLOCATION = WM_APP + $100;
|
2017-08-12 20:29:52 +02:00
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
TGeolocationFrm = class(TForm)
|
|
|
|
|
CEFWindowParent1: TCEFWindowParent;
|
|
|
|
|
Chromium1: TChromium;
|
|
|
|
|
NavControlPnl: TPanel;
|
|
|
|
|
Edit1: TEdit;
|
|
|
|
|
GoBtn: TButton;
|
|
|
|
|
StatusBar1: TStatusBar;
|
|
|
|
|
|
2017-09-07 10:58:09 +02:00
|
|
|
|
procedure Chromium1AfterCreated(Sender: TObject; const browser: ICefBrowser);
|
2017-08-12 20:29:52 +02:00
|
|
|
|
procedure GoBtnClick(Sender: TObject);
|
2017-09-07 10:58:09 +02:00
|
|
|
|
procedure FormShow(Sender: TObject);
|
2017-08-12 20:29:52 +02:00
|
|
|
|
protected
|
2017-09-07 10:58:09 +02:00
|
|
|
|
procedure BrowserCreatedMsg(var aMessage : TMessage); message CEF_AFTERCREATED;
|
2017-08-12 20:29:52 +02:00
|
|
|
|
procedure NewLocationMsg(var aMessage : TMessage); message MINIBROWSER_NEWLOCATION;
|
|
|
|
|
procedure WMMove(var aMessage : TWMMove); message WM_MOVE;
|
|
|
|
|
procedure WMMoving(var aMessage : TMessage); message WM_MOVING;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
var
|
|
|
|
|
GeolocationFrm : TGeolocationFrm;
|
|
|
|
|
GlobalPosition : TCefGeoposition;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
2017-09-07 10:58:09 +02:00
|
|
|
|
procedure TGeolocationFrm.Chromium1AfterCreated(Sender: TObject; const browser: ICefBrowser);
|
2017-08-12 20:29:52 +02:00
|
|
|
|
begin
|
2017-09-07 10:58:09 +02:00
|
|
|
|
PostMessage(Handle, CEF_AFTERCREATED, 0, 0);
|
2017-08-12 20:29:52 +02:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TGeolocationFrm.FormShow(Sender: TObject);
|
|
|
|
|
begin
|
|
|
|
|
Chromium1.CreateBrowser(CEFWindowParent1, '');
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TGeolocationFrm.GoBtnClick(Sender: TObject);
|
|
|
|
|
begin
|
|
|
|
|
Chromium1.LoadURL(Edit1.Text);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TGeolocationFrm.BrowserCreatedMsg(var aMessage : TMessage);
|
|
|
|
|
begin
|
2017-08-23 12:28:45 +02:00
|
|
|
|
CEFWindowParent1.UpdateSize;
|
2017-08-12 20:29:52 +02:00
|
|
|
|
NavControlPnl.Enabled := True;
|
|
|
|
|
GoBtn.Click;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TGeolocationFrm.NewLocationMsg(var aMessage : TMessage);
|
|
|
|
|
begin
|
|
|
|
|
StatusBar1.Panels[0].Text := 'lat : ' + floattostr(GlobalPosition.latitude);
|
|
|
|
|
StatusBar1.Panels[1].Text := 'lon : ' + floattostr(GlobalPosition.longitude);
|
|
|
|
|
StatusBar1.Panels[2].Text := 'alt : ' + floattostr(GlobalPosition.altitude);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TGeolocationFrm.WMMove(var aMessage : TWMMove);
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
|
|
|
|
|
if (Chromium1 <> nil) then Chromium1.NotifyMoveOrResizeStarted;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TGeolocationFrm.WMMoving(var aMessage : TMessage);
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
|
|
|
|
|
if (Chromium1 <> nil) then Chromium1.NotifyMoveOrResizeStarted;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|