Skip to content

Commit

Permalink
30th
Browse files Browse the repository at this point in the history
  • Loading branch information
flrizzato committed Aug 8, 2017
1 parent 214e2ec commit 4b53df5
Show file tree
Hide file tree
Showing 88 changed files with 10,344 additions and 0 deletions.
Binary file added 30-MobileYesNo/30-MobileYesNo-BR.pdf
Binary file not shown.
14 changes: 14 additions & 0 deletions 30-MobileYesNo/BackButton101/BackButton101.dpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
program BackButton101;

uses
System.StartUpCopy,
FMX.Forms,
uMainForm in 'uMainForm.pas' {Form1};

{$R *.res}

begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
795 changes: 795 additions & 0 deletions 30-MobileYesNo/BackButton101/BackButton101.dproj

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions 30-MobileYesNo/BackButton101/BackButton101.dproj.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<BorlandProject>
<Transactions>
<Transaction>2017/08/07 16:52:30.000.210,=C:\Users\ferna\Documents\Embarcadero\Studio\Projects\Unit1.pas</Transaction>
<Transaction>2017/08/07 16:52:42.000.961,C:\DelphiAcademy\30-MobileYesNo\BackButton101\uMainForm.pas=C:\Users\ferna\Documents\Embarcadero\Studio\Projects\Unit1.pas</Transaction>
<Transaction>2017/08/07 16:52:42.000.961,C:\DelphiAcademy\30-MobileYesNo\BackButton101\uMainForm.fmx=C:\Users\ferna\Documents\Embarcadero\Studio\Projects\Unit1.fmx</Transaction>
<Transaction>2017/08/07 16:52:49.000.118,C:\DelphiAcademy\30-MobileYesNo\BackButton101\BackButton101.dproj=C:\Users\ferna\Documents\Embarcadero\Studio\Projects\Project1.dproj</Transaction>
</Transactions>
<ActiveMobileDevice>
<PmacOS iOSSimulator="iPhone5"/>
</ActiveMobileDevice>
</BorlandProject>
Binary file not shown.
10 changes: 10 additions & 0 deletions 30-MobileYesNo/BackButton101/BackButton101.stat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[Stats]
EditorSecs=1
DesignerSecs=4
InspectorSecs=1
CompileSecs=1
OtherSecs=3
StartTime=8/8/2017 1:37:19 AM
RealKeys=0
EffectiveKeys=0
DebugSecs=1
17 changes: 17 additions & 0 deletions 30-MobileYesNo/BackButton101/uMainForm.LgXhdpiPh.fmx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
inherited Form1_LgXhdpiPh: TForm1_LgXhdpiPh
ClientHeight = 695
ClientWidth = 450
DesignerMasterStyle = 0
inherited ToolBar1: TToolBar
Size.Width = 450.000000000000000000
Size.Height = 48.000000000000000000
inherited Label1: TLabel
Size.Width = 450.000000000000000000
Size.Height = 48.000000000000000000
end
inherited SpeedButton1: TSpeedButton
Size.Width = 48.000000000000000000
Size.Height = 48.000000000000000000
end
end
end
37 changes: 37 additions & 0 deletions 30-MobileYesNo/BackButton101/uMainForm.fmx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 480
ClientWidth = 640
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
DesignerMasterStyle = 0
object ToolBar1: TToolBar
Size.Width = 640.000000000000000000
Size.Height = 40.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object Label1: TLabel
Align = Contents
Size.Width = 640.000000000000000000
Size.Height = 40.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'toollabel'
TextSettings.HorzAlign = Center
Text = 'App Name'
TabOrder = 0
end
object SpeedButton1: TSpeedButton
Align = Left
Margins.Left = 5.000000000000000000
Position.X = 5.000000000000000000
Size.Width = 80.000000000000000000
Size.Height = 40.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'backtoolbutton'
Text = 'Voltar'
end
end
end
16 changes: 16 additions & 0 deletions 30-MobileYesNo/BackButton101/uMainForm.iPhone55in.fmx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
inherited Form1_iPhone55in: TForm1_iPhone55in
ClientHeight = 716
ClientWidth = 414
DesignerMasterStyle = 0
inherited ToolBar1: TToolBar
Size.Width = 414.000000000000000000
Size.Height = 44.000000000000000000
inherited Label1: TLabel
Size.Width = 414.000000000000000000
Size.Height = 44.000000000000000000
end
inherited SpeedButton1: TSpeedButton
Size.Height = 44.000000000000000000
end
end
end
30 changes: 30 additions & 0 deletions 30-MobileYesNo/BackButton101/uMainForm.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
unit uMainForm;

interface

uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.StdCtrls,
FMX.Controls.Presentation;

type
TForm1 = class(TForm)
ToolBar1: TToolBar;
Label1: TLabel;
SpeedButton1: TSpeedButton;
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.fmx}
{$R *.iPhone55in.fmx IOS}
{$R *.LgXhdpiPh.fmx ANDROID}

end.
14 changes: 14 additions & 0 deletions 30-MobileYesNo/ListBox101/ListBox101.dpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
program ListBox101;

uses
System.StartUpCopy,
FMX.Forms,
uMainForm in 'uMainForm.pas' {Form1};

{$R *.res}

begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
795 changes: 795 additions & 0 deletions 30-MobileYesNo/ListBox101/ListBox101.dproj

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions 30-MobileYesNo/ListBox101/ListBox101.dproj.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<BorlandProject>
<Transactions>
<Transaction>2017/08/07 18:15:53.000.503,=C:\Users\ferna\Documents\Embarcadero\Studio\Projects\Unit1.pas</Transaction>
<Transaction>2017/08/07 18:16:10.000.766,C:\DelphiAcademy\30-MobileYesNo\ListBox101\uMainForm.fmx=C:\Users\ferna\Documents\Embarcadero\Studio\Projects\Unit1.fmx</Transaction>
<Transaction>2017/08/07 18:16:10.000.766,C:\DelphiAcademy\30-MobileYesNo\ListBox101\uMainForm.pas=C:\Users\ferna\Documents\Embarcadero\Studio\Projects\Unit1.pas</Transaction>
<Transaction>2017/08/07 18:16:14.000.750,C:\DelphiAcademy\30-MobileYesNo\ListBox101\ListBox101.dproj=C:\Users\ferna\Documents\Embarcadero\Studio\Projects\Project1.dproj</Transaction>
</Transactions>
<ActiveMobileDevice>
<NoProfile Android="0022831207"/>
<PmacOS iOSSimulator="iPhone5"/>
</ActiveMobileDevice>
</BorlandProject>
Binary file added 30-MobileYesNo/ListBox101/ListBox101.identcache
Binary file not shown.
10 changes: 10 additions & 0 deletions 30-MobileYesNo/ListBox101/ListBox101.stat
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[Stats]
EditorSecs=1
DesignerSecs=30
InspectorSecs=16
CompileSecs=1
OtherSecs=178
StartTime=8/8/2017 1:38:35 AM
RealKeys=0
EffectiveKeys=0
DebugSecs=1
65 changes: 65 additions & 0 deletions 30-MobileYesNo/ListBox101/uMainForm.LgXhdpiPh.fmx
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
inherited Form1_LgXhdpiPh: TForm1_LgXhdpiPh
ClientHeight = 695
ClientWidth = 450
DesignerMasterStyle = 0
inherited ToolBar1: TToolBar
Size.Width = 450.000000000000000000
Size.Height = 48.000000000000000000
inherited Label1: TLabel
Size.Width = 450.000000000000000000
Size.Height = 48.000000000000000000
end
end
inherited ListBox1: TListBox
Size.Width = 450.000000000000000000
Size.Height = 647.000000000000000000
Viewport.Width = 450.000000000000000000
Viewport.Height = 647.000000000000000000
inherited ListBoxGroupHeader1: TListBoxGroupHeader
Size.Width = 450.000000000000000000
end
inherited ListBoxItem1: TListBoxItem
Size.Width = 450.000000000000000000
inherited Edit1: TEdit
Position.X = 190.000000000000000000
Size.Width = 255.000000000000000000
Size.Height = 32.000000000000000000
end
end
inherited ListBoxItem2: TListBoxItem
Size.Width = 450.000000000000000000
inherited Edit2: TEdit
Position.X = 190.000000000000000000
Size.Width = 255.000000000000000000
Size.Height = 32.000000000000000000
end
end
inherited ListBoxItem3: TListBoxItem
Size.Width = 450.000000000000000000
inherited Edit3: TEdit
Position.X = 190.000000000000000000
Size.Width = 255.000000000000000000
Size.Height = 32.000000000000000000
end
end
inherited ListBoxGroupHeader2: TListBoxGroupHeader
Size.Width = 450.000000000000000000
end
inherited ListBoxItem4: TListBoxItem
Size.Width = 450.000000000000000000
inherited Edit4: TEdit
Position.X = 190.000000000000000000
Size.Width = 255.000000000000000000
Size.Height = 32.000000000000000000
end
end
inherited ListBoxItem5: TListBoxItem
Size.Width = 450.000000000000000000
inherited Edit5: TEdit
Position.X = 190.000000000000000000
Size.Width = 255.000000000000000000
Size.Height = 32.000000000000000000
end
end
end
end
Loading

0 comments on commit 4b53df5

Please sign in to comment.