mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
Added tab navigation controls to the FMXTabbedOSRBrowser demo
This commit is contained in:
parent
691986692b
commit
6d5b74070b
@ -48,6 +48,42 @@ object MainForm: TMainForm
|
||||
Size.PlatformDefault = False
|
||||
StyleLookup = 'deleteitembutton'
|
||||
end
|
||||
object PrevTabBtn: TSpeedButton
|
||||
Action = PrevTabAction
|
||||
Align = Top
|
||||
Enabled = True
|
||||
ImageIndex = -1
|
||||
Position.X = 5.000000000000000000
|
||||
Position.Y = 54.000000000000000000
|
||||
Size.Width = 22.000000000000000000
|
||||
Size.Height = 22.000000000000000000
|
||||
Size.PlatformDefault = False
|
||||
StyleLookup = 'arrowlefttoolbutton'
|
||||
end
|
||||
object NextTabBtn: TSpeedButton
|
||||
Action = NextTabAction
|
||||
Align = Top
|
||||
Enabled = True
|
||||
ImageIndex = -1
|
||||
Position.X = 5.000000000000000000
|
||||
Position.Y = 76.000000000000000000
|
||||
Size.Width = 22.000000000000000000
|
||||
Size.Height = 22.000000000000000000
|
||||
Size.PlatformDefault = False
|
||||
StyleLookup = 'arrowrighttoolbutton'
|
||||
end
|
||||
object ShowTabsBtn: TSpeedButton
|
||||
Action = ShowTabsAction
|
||||
Align = Top
|
||||
Enabled = True
|
||||
ImageIndex = -1
|
||||
Position.X = 5.000000000000000000
|
||||
Position.Y = 98.000000000000000000
|
||||
Size.Width = 22.000000000000000000
|
||||
Size.Height = 22.000000000000000000
|
||||
Size.PlatformDefault = False
|
||||
StyleLookup = 'passwordeditbutton'
|
||||
end
|
||||
end
|
||||
object BrowserTabCtrl: TTabControl
|
||||
Align = Client
|
||||
@ -69,5 +105,17 @@ object MainForm: TMainForm
|
||||
Text = 'RemoveTabAction'
|
||||
OnExecute = RemoveTabActionExecute
|
||||
end
|
||||
object PrevTabAction: TAction
|
||||
Text = 'PrevTabAction'
|
||||
OnExecute = PrevTabActionExecute
|
||||
end
|
||||
object NextTabAction: TAction
|
||||
Text = 'NextTabAction'
|
||||
OnExecute = NextTabActionExecute
|
||||
end
|
||||
object ShowTabsAction: TAction
|
||||
Text = 'ShowTabsAction'
|
||||
OnExecute = ShowTabsActionExecute
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -66,6 +66,12 @@ type
|
||||
ActionList1: TActionList;
|
||||
AddTabAction: TAction;
|
||||
RemoveTabAction: TAction;
|
||||
PrevTabBtn: TSpeedButton;
|
||||
NextTabBtn: TSpeedButton;
|
||||
ShowTabsBtn: TSpeedButton;
|
||||
PrevTabAction: TAction;
|
||||
NextTabAction: TAction;
|
||||
ShowTabsAction: TAction;
|
||||
|
||||
procedure FormCreate(Sender: TObject);
|
||||
procedure FormShow(Sender: TObject);
|
||||
@ -75,6 +81,9 @@ type
|
||||
procedure AddTabActionExecute(Sender: TObject);
|
||||
procedure RemoveTabActionExecute(Sender: TObject);
|
||||
procedure BrowserTabCtrlChange(Sender: TObject);
|
||||
procedure PrevTabActionExecute(Sender: TObject);
|
||||
procedure NextTabActionExecute(Sender: TObject);
|
||||
procedure ShowTabsActionExecute(Sender: TObject);
|
||||
|
||||
protected
|
||||
// Variables to control when can we destroy the form safely
|
||||
@ -405,6 +414,26 @@ begin
|
||||
TBrowserTab(BrowserTabCtrl.ActiveTab).SendCaptureLostEvent;
|
||||
end;
|
||||
|
||||
procedure TMainForm.NextTabActionExecute(Sender: TObject);
|
||||
begin
|
||||
if (BrowserTabCtrl.TabIndex < pred(BrowserTabCtrl.TabCount)) then
|
||||
BrowserTabCtrl.TabIndex := BrowserTabCtrl.TabIndex + 1;
|
||||
end;
|
||||
|
||||
procedure TMainForm.PrevTabActionExecute(Sender: TObject);
|
||||
begin
|
||||
if (BrowserTabCtrl.TabIndex > 0) then
|
||||
BrowserTabCtrl.TabIndex := BrowserTabCtrl.TabIndex - 1;
|
||||
end;
|
||||
|
||||
procedure TMainForm.ShowTabsActionExecute(Sender: TObject);
|
||||
begin
|
||||
if (BrowserTabCtrl.TabPosition = TTabPosition.PlatformDefault) then
|
||||
BrowserTabCtrl.TabPosition := TTabPosition.None
|
||||
else
|
||||
BrowserTabCtrl.TabPosition := TTabPosition.PlatformDefault;
|
||||
end;
|
||||
|
||||
{$IFDEF MSWINDOWS}
|
||||
procedure TMainForm.HandleSYSCHAR(const aMessage : TMsg);
|
||||
begin
|
||||
|
@ -2,7 +2,7 @@
|
||||
"UpdateLazPackages" : [
|
||||
{
|
||||
"ForceNotify" : true,
|
||||
"InternalVersion" : 249,
|
||||
"InternalVersion" : 250,
|
||||
"Name" : "cef4delphi_lazarus.lpk",
|
||||
"Version" : "88.2.1.0"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user