├── Chapter 01 └── HelloWorld │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── HelloWorldProject.dpr │ ├── HelloWorldProject.dproj │ └── HelloWorldProject.res ├── Chapter 02 ├── NestedLayouts │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── NestedLayoutsProject.dpr │ ├── NestedLayoutsProject.dproj │ └── NestedLayoutsProject.res └── TakePhotoFromCameraAction │ ├── AndroidManifest.template.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TakePhotoFromCameraProject.deployproj │ ├── TakePhotoFromCameraProject.dpr │ ├── TakePhotoFromCameraProject.dproj │ └── TakePhotoFromCameraProject.res ├── Chapter 03 ├── Button │ ├── ButtonProject.dpr │ ├── ButtonProject.dproj │ ├── ButtonProject.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── ContactCircle │ ├── AndroidManifest.template.xml │ ├── ContactCircleProject.deployproj │ ├── ContactCircleProject.dpr │ ├── ContactCircleProject.dproj │ ├── ContactCircleProject.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── CustomBrush │ ├── CustomBrushProject.dpr │ ├── CustomBrushProject.dproj │ ├── CustomBrushProject.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── ImageLists │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── ImageListProject.dpr │ ├── ImageListProject.dproj │ └── ImageListProject.res ├── LineLocation │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── LineLocationProject.dpr │ └── LineLocationProject.dproj ├── MultiResBitmap │ ├── AndroidManifest.template.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── MultiResBitmapProject.deployproj │ ├── MultiResBitmapProject.dpr │ ├── MultiResBitmapProject.dproj │ └── MultiResBitmapProject.res ├── MultiResBitmapImage │ ├── AndroidManifest.template.xml │ ├── Entitlement.TemplateOSX32.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── MultiResBitmapImageProject.deployproj │ ├── MultiResBitmapImageProject.dpr │ ├── MultiResBitmapImageProject.dproj │ ├── MultiResBitmapImageProject.res │ ├── Utils.pas │ └── info.plist.TemplateOSX.xml ├── MultiResBitmapImage_2 │ ├── AndroidManifest.template.xml │ ├── Entitlement.TemplateOSX32.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── MultiResBitmapImageProject.deployproj │ ├── MultiResBitmapImageProject.dpr │ ├── MultiResBitmapImageProject.dproj │ ├── MultiResBitmapImageProject.res │ ├── Utils.pas │ └── info.plist.TemplateOSX.xml ├── MultiResBitmap_2 │ ├── Forms.Image256.fmx │ ├── Forms.Image256.pas │ ├── Forms.Image512.fmx │ ├── Forms.Image512.pas │ ├── Forms.Image64.fmx │ ├── Forms.Image64.pas │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── MultiResBitmap2Project.dpr │ ├── MultiResBitmap2Project.dproj │ └── MultiResBitmap2Project.res ├── Shapes │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── ShapeProject.dpr │ ├── ShapeProject.dproj │ └── ShapeProject.res ├── SpeedButton │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── SpeedButtonProject.dpr │ ├── SpeedButtonProject.dproj │ └── SpeedButtonProject.res ├── StrokeAndFill │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── StrokeAndFillProject.dpr │ ├── StrokeAndFillProject.dproj │ └── StrokeAndFillProject.res ├── TGlyph │ ├── Entitlement.TemplateOSX32.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TGlyphProject.deployproj │ ├── TGlyphProject.dpr │ ├── TGlyphProject.dproj │ ├── TGlyphProject.res │ └── info.plist.TemplateOSX.xml ├── TImageWrapMode │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TImageWrapModeProject.dpr │ ├── TImageWrapModeProject.dproj │ └── TImageWrapModeProject.res ├── TLabelButton │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TLabelButtonProject.dpr │ ├── TLabelButtonProject.dproj │ └── TLabelButtonProject.res ├── TRectangle │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TRectangleProject.dpr │ └── TRectangleProject.dproj ├── TText │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TTextProject.dpr │ ├── TTextProject.dproj │ └── TTextProject.res └── TTextEffects │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TTextEffectsProject.dpr │ ├── TTextEffectsProject.dproj │ └── TTextEffectsProject.res ├── Chapter 04 ├── Grids │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── GridsProject.dpr │ ├── GridsProject.dproj │ └── GridsProject.res ├── Grids2 │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Grids2Project.dpr │ ├── Grids2Project.dproj │ └── Grids2Project.res ├── ListBox │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── ListBoxProject.dpr │ ├── ListBoxProject.dproj │ └── ListBoxProject.res ├── ListView │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── ListViewProject.dpr │ ├── ListViewProject.dproj │ └── ListViewProject.res ├── ListViewAppearance │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── ListViewAppearanceProject.dpr │ ├── ListViewAppearanceProject.dproj │ └── ListViewAppearanceProject.res ├── ListViewAppearanceDynamic │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── ListViewAppearanceProject.dpr │ ├── ListViewAppearanceProject.dproj │ └── ListViewAppearanceProject.res ├── ListViewImages │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── ListViewImagesProject.dpr │ ├── ListViewImagesProject.dproj │ └── ListViewImagesProject.res ├── ListViewPullToRefresh │ ├── AndroidManifest.template.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── PullToRefreshProject.deployproj │ ├── PullToRefreshProject.dpr │ ├── PullToRefreshProject.dproj │ └── PullToRefreshProject.res ├── MultiView │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── MultiViewProject.dpr │ ├── MultiViewProject.dproj │ └── MultiViewProject.res ├── TListViewPullToRefresh │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── TListViewPullToRefresh.dpr │ ├── TListViewPullToRefresh.dproj │ └── TListViewPullToRefresh.res └── TTreeview │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TTreeviewProject.dpr │ ├── TTreeviewProject.dproj │ └── TTreeviewProject.res ├── Chapter 05 ├── CmdExecMode_amAsync │ ├── CmdExecModeAsyncProject.dpr │ ├── CmdExecModeAsyncProject.dproj │ ├── CmdExecModeAsyncProject.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas └── DBOnBoard │ ├── AndroidManifest.template.xml │ ├── DBOnBoardProject.deployproj │ ├── DBOnBoardProject.dpr │ ├── DBOnBoardProject.dproj │ ├── DBOnBoardProject.res │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ └── Win32 │ └── MyDataBase.sdb ├── Chapter 06 ├── DataBinding_Expression │ ├── DataBindingExpressionProject.dpr │ ├── DataBindingExpressionProject.dproj │ ├── DataBindingExpressionProject.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── FormatFloatLB │ ├── FormatFloatLBProject.dpr │ ├── FormatFloatLBProject.dproj │ ├── FormatFloatLBProject.res │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ └── Package │ │ ├── FormatFloatPackage.dpk │ │ ├── FormatFloatPackage.dproj │ │ ├── FormatFloatPackage.res │ │ └── Methods.FormatFloat.pas ├── LB_DataSetListControl │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── LBDataSetListControlProject.dpr │ ├── LBDataSetListControlProject.dproj │ └── LBDataSetListControlProject.res ├── LB_FormatExpressions │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── LBDataSetListControlProject.dpr │ ├── LBDataSetListControlProject.dproj │ └── LBDataSetListControlProject.res ├── LB_Grid │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── LBGridProject.dpr │ ├── LBGridProject.dproj │ └── LBGridProject.res ├── LB_ListView │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── LBListViewProject.dpr │ ├── LBListViewProject.dproj │ └── LBListViewProject.res ├── LiveBindings1 │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── LiveBindings1Project.dpr │ ├── LiveBindings1Project.dproj │ └── LiveBindings1Project.res ├── LiveBindingsEditLabel │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── LiveBindingsEditLabelProject.dpr │ └── LiveBindingsEditLabelProject.dproj ├── LiveBindings_00 │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── Forms.Second.fmx │ ├── Forms.Second.pas │ ├── Forms.Second.vlb │ ├── LB00Project.dpr │ ├── LB00Project.dproj │ └── LB00Project.res ├── LiveBindings_1 │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── LiveBindings1Project.dpr │ └── LiveBindings1Project.dproj └── LiveBindings_2 │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── LiveBindings2Project.dpr │ ├── LiveBindings2Project.dproj │ └── LiveBindings2Project.res ├── Chapter 07 ├── AirStyle │ ├── AirStyleProject.dpr │ ├── AirStyleProject.dproj │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── Button │ ├── ButtonProject.dpr │ ├── ButtonProject.dproj │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── Style │ ├── Project1.dpr │ ├── Project1.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── Styles │ ├── Project1.dpr │ ├── Project1.dproj │ ├── Project1.dres │ ├── Project1.res │ ├── Project1Resource.rc │ ├── Unit1.fmx │ ├── Unit1.pas │ ├── Unit2.fmx │ └── Unit2.pas └── StylesMultiPlatform │ ├── AndroidManifest.template.xml │ ├── Data.Main.dfm │ ├── Data.Main.pas │ ├── Data.Main.vlb │ ├── Entitlement.TemplateOSX32.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── StylesMultiPlatform.deployproj │ ├── StylesMultiPlatform.dpr │ ├── StylesMultiPlatform.dproj │ ├── StylesMultiPlatform.res │ └── info.plist.TemplateOSX.xml ├── Chapter 08 └── TFrameStand_01 │ ├── AndroidManifest.template.xml │ ├── AppState.pas │ ├── Data.Main.dfm │ ├── Data.Main.pas │ ├── Data.Orders.dfm │ ├── Data.Orders.pas │ ├── Data.Orders.vlb │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Forms.Main.vlb │ ├── Frames.Home.fmx │ ├── Frames.Home.pas │ ├── Frames.Home.vlb │ ├── Frames.OrderDetails.fmx │ ├── Frames.OrderDetails.pas │ ├── Frames.OrderDetails.vlb │ ├── Frames.Orders.fmx │ ├── Frames.Orders.pas │ ├── Frames.Orders.vlb │ ├── IO.App.pas │ ├── TFrameStand01Project.deployproj │ ├── TFrameStand01Project.dpr │ ├── TFrameStand01Project.dproj │ └── TFrameStand01Project.res ├── Chapter 09 ├── BehaviorServices │ ├── BehaviorServiceProject.dpr │ ├── BehaviorServiceProject.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── FireUI_01 │ ├── FireUI01Project.dpr │ ├── FireUI01Project.dproj │ ├── FireUI01Project.res │ ├── Forms.Main.LgXhdpiPh.fmx │ ├── Forms.Main.fmx │ ├── Forms.Main.iPhone55in.fmx │ └── Forms.Main.pas ├── TFlowLayout │ ├── TFlowLayoutProject.dpr │ ├── TFlowLayoutProject.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── TGridLayout │ ├── TGridLayoutProject.dpr │ ├── TGridLayoutProject.dproj │ ├── Unit1.fmx │ └── Unit1.pas ├── TGridPanelLayout │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── Frames.Element.fmx │ ├── Frames.Element.pas │ ├── TGridPanelLayoutProject.dpr │ ├── TGridPanelLayoutProject.dproj │ └── TGridPanelLayoutProject.res └── TLayout │ ├── TLayoutProject.dpr │ ├── TLayoutProject.dproj │ ├── TLayoutProject.res │ ├── Unit1.fmx │ ├── Unit1.pas │ ├── Unit2.fmx │ ├── Unit2.pas │ ├── Unit3.fmx │ └── Unit3.pas ├── Chapter 10 ├── Animation101 │ ├── Animation101Project.dpr │ ├── Animation101Project.dproj │ ├── Animation101Project.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── BitmapListAnimation │ ├── BitmapListAnimationProject.dpr │ ├── BitmapListAnimationProject.dproj │ ├── BitmapListAnimationProject.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── ColorAnimation │ ├── ColorAnimationProject.dpr │ ├── ColorAnimationProject.dproj │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── FMXAni │ ├── FMXAniProject.dpr │ ├── FMXAniProject.dproj │ ├── FMXAniProject.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── PathAnimation │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── PathAnimationProject.dpr │ ├── PathAnimationProject.dproj │ └── PathAnimationProject.res ├── Playground │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── PlaygroundProject.dpr │ ├── PlaygroundProject.dproj │ └── PlaygroundProject.res ├── RectangleAndBitmaps │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── RectangleAndBitmapsProject.dpr │ ├── RectangleAndBitmapsProject.dproj │ └── RectangleAndBitmapsProject.res └── TAnimator │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TAnimatorProject.dpr │ └── TAnimatorProject.dproj ├── Chapter 11 ├── AnonymousThread │ ├── AnonymousThreadProject.dpr │ ├── AnonymousThreadProject.dproj │ ├── AnonymousThreadProject.res │ ├── Forms.Main.fmx │ └── Forms.Main.pas ├── PPLWait │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── PPLWaitProject.dpr │ ├── PPLWaitProject.dproj │ └── PPLWaitProject.res ├── ParallelProgrammingLibrary │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── PPLProject.dpr │ ├── PPLProject.dproj │ └── PPLProject.res ├── SimpleThread │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── SimpleThreadProject.dpr │ ├── SimpleThreadProject.dproj │ ├── SimpleThreadProject.res │ └── Threads.Simple.pas └── SynchronizeAndQueue │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── SynchronizeAndQueueProject.dpr │ ├── SynchronizeAndQueueProject.dproj │ └── SynchronizeAndQueueProject.res ├── Chapter 12 ├── Clipboard │ ├── AndroidManifest.template.xml │ ├── ClipboardProject.deployproj │ ├── ClipboardProject.dpr │ ├── ClipboardProject.dproj │ ├── ClipboardProject.res │ ├── Entitlement.TemplateOSX.xml │ ├── Forms.Main.LgXhdpiPh.fmx │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ └── info.plist.TemplateOSX.xml ├── Dialog │ ├── AndroidManifest.template.xml │ ├── DialogProject.deployproj │ ├── DialogProject.dpr │ ├── DialogProject.dproj │ ├── DialogProject.res │ ├── Entitlement.TemplateOSX.xml │ ├── Entitlement.TemplateiOS.xml │ ├── Forms.Main.LgXhdpiPh.fmx │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── InteractiveGestures │ ├── AndroidManifest.template.xml │ ├── Entitlement.TemplateiOS.xml │ ├── Forms.Main.LgXhdpiPh.fmx │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── InteractiveGesturesProject.deployproj │ ├── InteractiveGesturesProject.dpr │ ├── InteractiveGesturesProject.dproj │ ├── InteractiveGesturesProject.res │ └── info.plist.TemplateiOS.xml ├── Messaging │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── MessagingProject.dpr │ ├── MessagingProject.dproj │ └── MessagingProject.res ├── StandardGestures │ ├── AndroidManifest.template.xml │ ├── Entitlement.TemplateiOS.xml │ ├── Forms.Main.LgXhdpiPh.fmx │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── StandardGesturesProject.dpr │ ├── StandardGesturesProject.dproj │ ├── StandardGesturesProject.res │ └── info.plist.TemplateiOS.xml ├── Tap │ ├── AndroidManifest.template.xml │ ├── Entitlement.TemplateiOS.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TapProject.deployproj │ ├── TapProject.dpr │ ├── TapProject.dproj │ ├── TapProject.res │ └── info.plist.TemplateiOS.xml └── Touch │ ├── AndroidManifest.template.xml │ ├── Entitlement.TemplateOSX.xml │ ├── Entitlement.TemplateiOS.xml │ ├── Forms.Main.fmx │ ├── Forms.Main.pas │ ├── TouchProject.deployproj │ ├── TouchProject.dpr │ ├── TouchProject.dproj │ ├── TouchProject.res │ ├── info.plist.TemplateOSX.xml │ └── info.plist.TemplateiOS.xml ├── Chapter 13 ├── HelloWorld │ ├── Entitlement.TemplateOSX.xml │ ├── Form.Main.fmx │ ├── Form.Main.pas │ ├── HelloWorld3DProject.deployproj │ ├── HelloWorld3DProject.dpr │ ├── HelloWorld3DProject.dproj │ ├── HelloWorld3DProject.res │ └── info.plist.TemplateOSX.xml ├── Mix3D2D │ ├── AndroidManifest.template.xml │ ├── Data.Models.dfm │ ├── Data.Models.pas │ ├── Data.Models.vlb │ ├── Form.Main.fmx │ ├── Form.Main.pas │ ├── Form.Main.vlb │ ├── ProjectMix3D2D.deployproj │ ├── ProjectMix3D2D.dpr │ ├── ProjectMix3D2D.dproj │ ├── ProjectMix3D2D.res │ ├── Utils.Messages.pas │ ├── cat.obj │ ├── deer.obj │ └── dog.obj └── Viewport │ ├── AndroidManifest.template.xml │ ├── Form.Main.fmx │ ├── Form.Main.pas │ ├── ViewportProject.deployproj │ ├── ViewportProject.dpr │ ├── ViewportProject.dproj │ └── ViewportProject.res ├── LICENSE ├── README.md └── Uncategorized ├── BlueDot.png ├── BrushObject.style ├── Seamless.png └── StarBrush.png /Chapter 01/HelloWorld/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 01/HelloWorld/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 01/HelloWorld/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 01/HelloWorld/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 01/HelloWorld/HelloWorldProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 01/HelloWorld/HelloWorldProject.dpr -------------------------------------------------------------------------------- /Chapter 01/HelloWorld/HelloWorldProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 01/HelloWorld/HelloWorldProject.dproj -------------------------------------------------------------------------------- /Chapter 01/HelloWorld/HelloWorldProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 01/HelloWorld/HelloWorldProject.res -------------------------------------------------------------------------------- /Chapter 02/NestedLayouts/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/NestedLayouts/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 02/NestedLayouts/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/NestedLayouts/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 02/NestedLayouts/NestedLayoutsProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/NestedLayouts/NestedLayoutsProject.dpr -------------------------------------------------------------------------------- /Chapter 02/NestedLayouts/NestedLayoutsProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/NestedLayouts/NestedLayoutsProject.dproj -------------------------------------------------------------------------------- /Chapter 02/NestedLayouts/NestedLayoutsProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/NestedLayouts/NestedLayoutsProject.res -------------------------------------------------------------------------------- /Chapter 02/TakePhotoFromCameraAction/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/TakePhotoFromCameraAction/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 02/TakePhotoFromCameraAction/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/TakePhotoFromCameraAction/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 02/TakePhotoFromCameraAction/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/TakePhotoFromCameraAction/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 02/TakePhotoFromCameraAction/TakePhotoFromCameraProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/TakePhotoFromCameraAction/TakePhotoFromCameraProject.deployproj -------------------------------------------------------------------------------- /Chapter 02/TakePhotoFromCameraAction/TakePhotoFromCameraProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/TakePhotoFromCameraAction/TakePhotoFromCameraProject.dpr -------------------------------------------------------------------------------- /Chapter 02/TakePhotoFromCameraAction/TakePhotoFromCameraProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/TakePhotoFromCameraAction/TakePhotoFromCameraProject.dproj -------------------------------------------------------------------------------- /Chapter 02/TakePhotoFromCameraAction/TakePhotoFromCameraProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 02/TakePhotoFromCameraAction/TakePhotoFromCameraProject.res -------------------------------------------------------------------------------- /Chapter 03/Button/ButtonProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Button/ButtonProject.dpr -------------------------------------------------------------------------------- /Chapter 03/Button/ButtonProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Button/ButtonProject.dproj -------------------------------------------------------------------------------- /Chapter 03/Button/ButtonProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Button/ButtonProject.res -------------------------------------------------------------------------------- /Chapter 03/Button/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Button/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/Button/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Button/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/ContactCircle/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ContactCircle/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 03/ContactCircle/ContactCircleProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ContactCircle/ContactCircleProject.deployproj -------------------------------------------------------------------------------- /Chapter 03/ContactCircle/ContactCircleProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ContactCircle/ContactCircleProject.dpr -------------------------------------------------------------------------------- /Chapter 03/ContactCircle/ContactCircleProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ContactCircle/ContactCircleProject.dproj -------------------------------------------------------------------------------- /Chapter 03/ContactCircle/ContactCircleProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ContactCircle/ContactCircleProject.res -------------------------------------------------------------------------------- /Chapter 03/ContactCircle/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ContactCircle/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/ContactCircle/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ContactCircle/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/CustomBrush/CustomBrushProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/CustomBrush/CustomBrushProject.dpr -------------------------------------------------------------------------------- /Chapter 03/CustomBrush/CustomBrushProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/CustomBrush/CustomBrushProject.dproj -------------------------------------------------------------------------------- /Chapter 03/CustomBrush/CustomBrushProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/CustomBrush/CustomBrushProject.res -------------------------------------------------------------------------------- /Chapter 03/CustomBrush/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/CustomBrush/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/CustomBrush/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/CustomBrush/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/ImageLists/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ImageLists/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/ImageLists/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ImageLists/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/ImageLists/ImageListProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ImageLists/ImageListProject.dpr -------------------------------------------------------------------------------- /Chapter 03/ImageLists/ImageListProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ImageLists/ImageListProject.dproj -------------------------------------------------------------------------------- /Chapter 03/ImageLists/ImageListProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/ImageLists/ImageListProject.res -------------------------------------------------------------------------------- /Chapter 03/LineLocation/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/LineLocation/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/LineLocation/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/LineLocation/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/LineLocation/LineLocationProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/LineLocation/LineLocationProject.dpr -------------------------------------------------------------------------------- /Chapter 03/LineLocation/LineLocationProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/LineLocation/LineLocationProject.dproj -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap/MultiResBitmapProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap/MultiResBitmapProject.deployproj -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap/MultiResBitmapProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap/MultiResBitmapProject.dpr -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap/MultiResBitmapProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap/MultiResBitmapProject.dproj -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap/MultiResBitmapProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap/MultiResBitmapProject.res -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/MultiResBitmapImageProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/MultiResBitmapImageProject.deployproj -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/MultiResBitmapImageProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/MultiResBitmapImageProject.dpr -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/MultiResBitmapImageProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/MultiResBitmapImageProject.dproj -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/MultiResBitmapImageProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/MultiResBitmapImageProject.res -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/Utils.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/MultiResBitmapImageProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/MultiResBitmapImageProject.deployproj -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/MultiResBitmapImageProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/MultiResBitmapImageProject.dpr -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/MultiResBitmapImageProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/MultiResBitmapImageProject.dproj -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/MultiResBitmapImageProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/MultiResBitmapImageProject.res -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/Utils.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmapImage_2/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmapImage_2/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/Forms.Image256.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/Forms.Image256.fmx -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/Forms.Image256.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/Forms.Image256.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/Forms.Image512.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/Forms.Image512.fmx -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/Forms.Image512.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/Forms.Image512.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/Forms.Image64.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/Forms.Image64.fmx -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/Forms.Image64.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/Forms.Image64.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/MultiResBitmap2Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/MultiResBitmap2Project.dpr -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/MultiResBitmap2Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/MultiResBitmap2Project.dproj -------------------------------------------------------------------------------- /Chapter 03/MultiResBitmap_2/MultiResBitmap2Project.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/MultiResBitmap_2/MultiResBitmap2Project.res -------------------------------------------------------------------------------- /Chapter 03/Shapes/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Shapes/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/Shapes/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Shapes/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/Shapes/ShapeProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Shapes/ShapeProject.dpr -------------------------------------------------------------------------------- /Chapter 03/Shapes/ShapeProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Shapes/ShapeProject.dproj -------------------------------------------------------------------------------- /Chapter 03/Shapes/ShapeProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/Shapes/ShapeProject.res -------------------------------------------------------------------------------- /Chapter 03/SpeedButton/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/SpeedButton/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/SpeedButton/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/SpeedButton/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/SpeedButton/SpeedButtonProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/SpeedButton/SpeedButtonProject.dpr -------------------------------------------------------------------------------- /Chapter 03/SpeedButton/SpeedButtonProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/SpeedButton/SpeedButtonProject.dproj -------------------------------------------------------------------------------- /Chapter 03/SpeedButton/SpeedButtonProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/SpeedButton/SpeedButtonProject.res -------------------------------------------------------------------------------- /Chapter 03/StrokeAndFill/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/StrokeAndFill/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/StrokeAndFill/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/StrokeAndFill/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/StrokeAndFill/StrokeAndFillProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/StrokeAndFill/StrokeAndFillProject.dpr -------------------------------------------------------------------------------- /Chapter 03/StrokeAndFill/StrokeAndFillProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/StrokeAndFill/StrokeAndFillProject.dproj -------------------------------------------------------------------------------- /Chapter 03/StrokeAndFill/StrokeAndFillProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/StrokeAndFill/StrokeAndFillProject.res -------------------------------------------------------------------------------- /Chapter 03/TGlyph/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TGlyph/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Chapter 03/TGlyph/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TGlyph/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/TGlyph/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TGlyph/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/TGlyph/TGlyphProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TGlyph/TGlyphProject.deployproj -------------------------------------------------------------------------------- /Chapter 03/TGlyph/TGlyphProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TGlyph/TGlyphProject.dpr -------------------------------------------------------------------------------- /Chapter 03/TGlyph/TGlyphProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TGlyph/TGlyphProject.dproj -------------------------------------------------------------------------------- /Chapter 03/TGlyph/TGlyphProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TGlyph/TGlyphProject.res -------------------------------------------------------------------------------- /Chapter 03/TGlyph/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TGlyph/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 03/TImageWrapMode/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TImageWrapMode/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/TImageWrapMode/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TImageWrapMode/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/TImageWrapMode/TImageWrapModeProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TImageWrapMode/TImageWrapModeProject.dpr -------------------------------------------------------------------------------- /Chapter 03/TImageWrapMode/TImageWrapModeProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TImageWrapMode/TImageWrapModeProject.dproj -------------------------------------------------------------------------------- /Chapter 03/TImageWrapMode/TImageWrapModeProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TImageWrapMode/TImageWrapModeProject.res -------------------------------------------------------------------------------- /Chapter 03/TLabelButton/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TLabelButton/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/TLabelButton/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TLabelButton/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/TLabelButton/TLabelButtonProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TLabelButton/TLabelButtonProject.dpr -------------------------------------------------------------------------------- /Chapter 03/TLabelButton/TLabelButtonProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TLabelButton/TLabelButtonProject.dproj -------------------------------------------------------------------------------- /Chapter 03/TLabelButton/TLabelButtonProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TLabelButton/TLabelButtonProject.res -------------------------------------------------------------------------------- /Chapter 03/TRectangle/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TRectangle/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/TRectangle/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TRectangle/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/TRectangle/TRectangleProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TRectangle/TRectangleProject.dpr -------------------------------------------------------------------------------- /Chapter 03/TRectangle/TRectangleProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TRectangle/TRectangleProject.dproj -------------------------------------------------------------------------------- /Chapter 03/TText/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TText/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/TText/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TText/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/TText/TTextProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TText/TTextProject.dpr -------------------------------------------------------------------------------- /Chapter 03/TText/TTextProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TText/TTextProject.dproj -------------------------------------------------------------------------------- /Chapter 03/TText/TTextProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TText/TTextProject.res -------------------------------------------------------------------------------- /Chapter 03/TTextEffects/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TTextEffects/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 03/TTextEffects/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TTextEffects/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 03/TTextEffects/TTextEffectsProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TTextEffects/TTextEffectsProject.dpr -------------------------------------------------------------------------------- /Chapter 03/TTextEffects/TTextEffectsProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TTextEffects/TTextEffectsProject.dproj -------------------------------------------------------------------------------- /Chapter 03/TTextEffects/TTextEffectsProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 03/TTextEffects/TTextEffectsProject.res -------------------------------------------------------------------------------- /Chapter 04/Grids/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/Grids/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/Grids/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 04/Grids/GridsProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids/GridsProject.dpr -------------------------------------------------------------------------------- /Chapter 04/Grids/GridsProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids/GridsProject.dproj -------------------------------------------------------------------------------- /Chapter 04/Grids/GridsProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids/GridsProject.res -------------------------------------------------------------------------------- /Chapter 04/Grids2/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids2/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/Grids2/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids2/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/Grids2/Grids2Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids2/Grids2Project.dpr -------------------------------------------------------------------------------- /Chapter 04/Grids2/Grids2Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids2/Grids2Project.dproj -------------------------------------------------------------------------------- /Chapter 04/Grids2/Grids2Project.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/Grids2/Grids2Project.res -------------------------------------------------------------------------------- /Chapter 04/ListBox/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListBox/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/ListBox/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListBox/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/ListBox/ListBoxProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListBox/ListBoxProject.dpr -------------------------------------------------------------------------------- /Chapter 04/ListBox/ListBoxProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListBox/ListBoxProject.dproj -------------------------------------------------------------------------------- /Chapter 04/ListBox/ListBoxProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListBox/ListBoxProject.res -------------------------------------------------------------------------------- /Chapter 04/ListView/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListView/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/ListView/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListView/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/ListView/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListView/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 04/ListView/ListViewProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListView/ListViewProject.dpr -------------------------------------------------------------------------------- /Chapter 04/ListView/ListViewProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListView/ListViewProject.dproj -------------------------------------------------------------------------------- /Chapter 04/ListView/ListViewProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListView/ListViewProject.res -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearance/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearance/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearance/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearance/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearance/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearance/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearance/ListViewAppearanceProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearance/ListViewAppearanceProject.dpr -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearance/ListViewAppearanceProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearance/ListViewAppearanceProject.dproj -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearance/ListViewAppearanceProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearance/ListViewAppearanceProject.res -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearanceDynamic/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearanceDynamic/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearanceDynamic/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearanceDynamic/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearanceDynamic/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearanceDynamic/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearanceDynamic/ListViewAppearanceProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearanceDynamic/ListViewAppearanceProject.dpr -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearanceDynamic/ListViewAppearanceProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearanceDynamic/ListViewAppearanceProject.dproj -------------------------------------------------------------------------------- /Chapter 04/ListViewAppearanceDynamic/ListViewAppearanceProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewAppearanceDynamic/ListViewAppearanceProject.res -------------------------------------------------------------------------------- /Chapter 04/ListViewImages/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewImages/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/ListViewImages/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewImages/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/ListViewImages/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewImages/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 04/ListViewImages/ListViewImagesProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewImages/ListViewImagesProject.dpr -------------------------------------------------------------------------------- /Chapter 04/ListViewImages/ListViewImagesProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewImages/ListViewImagesProject.dproj -------------------------------------------------------------------------------- /Chapter 04/ListViewImages/ListViewImagesProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewImages/ListViewImagesProject.res -------------------------------------------------------------------------------- /Chapter 04/ListViewPullToRefresh/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewPullToRefresh/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 04/ListViewPullToRefresh/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewPullToRefresh/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/ListViewPullToRefresh/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewPullToRefresh/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/ListViewPullToRefresh/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewPullToRefresh/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 04/ListViewPullToRefresh/PullToRefreshProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewPullToRefresh/PullToRefreshProject.deployproj -------------------------------------------------------------------------------- /Chapter 04/ListViewPullToRefresh/PullToRefreshProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewPullToRefresh/PullToRefreshProject.dpr -------------------------------------------------------------------------------- /Chapter 04/ListViewPullToRefresh/PullToRefreshProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewPullToRefresh/PullToRefreshProject.dproj -------------------------------------------------------------------------------- /Chapter 04/ListViewPullToRefresh/PullToRefreshProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/ListViewPullToRefresh/PullToRefreshProject.res -------------------------------------------------------------------------------- /Chapter 04/MultiView/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/MultiView/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/MultiView/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/MultiView/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/MultiView/MultiViewProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/MultiView/MultiViewProject.dpr -------------------------------------------------------------------------------- /Chapter 04/MultiView/MultiViewProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/MultiView/MultiViewProject.dproj -------------------------------------------------------------------------------- /Chapter 04/MultiView/MultiViewProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/MultiView/MultiViewProject.res -------------------------------------------------------------------------------- /Chapter 04/TListViewPullToRefresh/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TListViewPullToRefresh/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/TListViewPullToRefresh/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TListViewPullToRefresh/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/TListViewPullToRefresh/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TListViewPullToRefresh/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 04/TListViewPullToRefresh/TListViewPullToRefresh.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TListViewPullToRefresh/TListViewPullToRefresh.dpr -------------------------------------------------------------------------------- /Chapter 04/TListViewPullToRefresh/TListViewPullToRefresh.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TListViewPullToRefresh/TListViewPullToRefresh.dproj -------------------------------------------------------------------------------- /Chapter 04/TListViewPullToRefresh/TListViewPullToRefresh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TListViewPullToRefresh/TListViewPullToRefresh.res -------------------------------------------------------------------------------- /Chapter 04/TTreeview/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TTreeview/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 04/TTreeview/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TTreeview/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 04/TTreeview/TTreeviewProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TTreeview/TTreeviewProject.dpr -------------------------------------------------------------------------------- /Chapter 04/TTreeview/TTreeviewProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TTreeview/TTreeviewProject.dproj -------------------------------------------------------------------------------- /Chapter 04/TTreeview/TTreeviewProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 04/TTreeview/TTreeviewProject.res -------------------------------------------------------------------------------- /Chapter 05/CmdExecMode_amAsync/CmdExecModeAsyncProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/CmdExecMode_amAsync/CmdExecModeAsyncProject.dpr -------------------------------------------------------------------------------- /Chapter 05/CmdExecMode_amAsync/CmdExecModeAsyncProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/CmdExecMode_amAsync/CmdExecModeAsyncProject.dproj -------------------------------------------------------------------------------- /Chapter 05/CmdExecMode_amAsync/CmdExecModeAsyncProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/CmdExecMode_amAsync/CmdExecModeAsyncProject.res -------------------------------------------------------------------------------- /Chapter 05/CmdExecMode_amAsync/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/CmdExecMode_amAsync/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 05/CmdExecMode_amAsync/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/CmdExecMode_amAsync/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/DBOnBoardProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/DBOnBoardProject.deployproj -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/DBOnBoardProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/DBOnBoardProject.dpr -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/DBOnBoardProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/DBOnBoardProject.dproj -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/DBOnBoardProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/DBOnBoardProject.res -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 05/DBOnBoard/Win32/MyDataBase.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 05/DBOnBoard/Win32/MyDataBase.sdb -------------------------------------------------------------------------------- /Chapter 06/DataBinding_Expression/DataBindingExpressionProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/DataBinding_Expression/DataBindingExpressionProject.dpr -------------------------------------------------------------------------------- /Chapter 06/DataBinding_Expression/DataBindingExpressionProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/DataBinding_Expression/DataBindingExpressionProject.dproj -------------------------------------------------------------------------------- /Chapter 06/DataBinding_Expression/DataBindingExpressionProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/DataBinding_Expression/DataBindingExpressionProject.res -------------------------------------------------------------------------------- /Chapter 06/DataBinding_Expression/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/DataBinding_Expression/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/DataBinding_Expression/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/DataBinding_Expression/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/FormatFloatLBProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/FormatFloatLBProject.dpr -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/FormatFloatLBProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/FormatFloatLBProject.dproj -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/FormatFloatLBProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/FormatFloatLBProject.res -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/Package/FormatFloatPackage.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/Package/FormatFloatPackage.dpk -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/Package/FormatFloatPackage.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/Package/FormatFloatPackage.dproj -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/Package/FormatFloatPackage.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/Package/FormatFloatPackage.res -------------------------------------------------------------------------------- /Chapter 06/FormatFloatLB/Package/Methods.FormatFloat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/FormatFloatLB/Package/Methods.FormatFloat.pas -------------------------------------------------------------------------------- /Chapter 06/LB_DataSetListControl/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_DataSetListControl/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LB_DataSetListControl/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_DataSetListControl/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LB_DataSetListControl/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_DataSetListControl/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LB_DataSetListControl/LBDataSetListControlProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_DataSetListControl/LBDataSetListControlProject.dpr -------------------------------------------------------------------------------- /Chapter 06/LB_DataSetListControl/LBDataSetListControlProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_DataSetListControl/LBDataSetListControlProject.dproj -------------------------------------------------------------------------------- /Chapter 06/LB_DataSetListControl/LBDataSetListControlProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_DataSetListControl/LBDataSetListControlProject.res -------------------------------------------------------------------------------- /Chapter 06/LB_FormatExpressions/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_FormatExpressions/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LB_FormatExpressions/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_FormatExpressions/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LB_FormatExpressions/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_FormatExpressions/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LB_FormatExpressions/LBDataSetListControlProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_FormatExpressions/LBDataSetListControlProject.dpr -------------------------------------------------------------------------------- /Chapter 06/LB_FormatExpressions/LBDataSetListControlProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_FormatExpressions/LBDataSetListControlProject.dproj -------------------------------------------------------------------------------- /Chapter 06/LB_FormatExpressions/LBDataSetListControlProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_FormatExpressions/LBDataSetListControlProject.res -------------------------------------------------------------------------------- /Chapter 06/LB_Grid/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_Grid/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LB_Grid/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_Grid/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LB_Grid/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_Grid/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LB_Grid/LBGridProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_Grid/LBGridProject.dpr -------------------------------------------------------------------------------- /Chapter 06/LB_Grid/LBGridProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_Grid/LBGridProject.dproj -------------------------------------------------------------------------------- /Chapter 06/LB_Grid/LBGridProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_Grid/LBGridProject.res -------------------------------------------------------------------------------- /Chapter 06/LB_ListView/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_ListView/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LB_ListView/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_ListView/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LB_ListView/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_ListView/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LB_ListView/LBListViewProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_ListView/LBListViewProject.dpr -------------------------------------------------------------------------------- /Chapter 06/LB_ListView/LBListViewProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_ListView/LBListViewProject.dproj -------------------------------------------------------------------------------- /Chapter 06/LB_ListView/LBListViewProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LB_ListView/LBListViewProject.res -------------------------------------------------------------------------------- /Chapter 06/LiveBindings1/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings1/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LiveBindings1/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings1/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LiveBindings1/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings1/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LiveBindings1/LiveBindings1Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings1/LiveBindings1Project.dpr -------------------------------------------------------------------------------- /Chapter 06/LiveBindings1/LiveBindings1Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings1/LiveBindings1Project.dproj -------------------------------------------------------------------------------- /Chapter 06/LiveBindings1/LiveBindings1Project.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings1/LiveBindings1Project.res -------------------------------------------------------------------------------- /Chapter 06/LiveBindingsEditLabel/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindingsEditLabel/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LiveBindingsEditLabel/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindingsEditLabel/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LiveBindingsEditLabel/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindingsEditLabel/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LiveBindingsEditLabel/LiveBindingsEditLabelProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindingsEditLabel/LiveBindingsEditLabelProject.dpr -------------------------------------------------------------------------------- /Chapter 06/LiveBindingsEditLabel/LiveBindingsEditLabelProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindingsEditLabel/LiveBindingsEditLabelProject.dproj -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/Forms.Second.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/Forms.Second.fmx -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/Forms.Second.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/Forms.Second.pas -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/Forms.Second.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/Forms.Second.vlb -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/LB00Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/LB00Project.dpr -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/LB00Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/LB00Project.dproj -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_00/LB00Project.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_00/LB00Project.res -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_1/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_1/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_1/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_1/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_1/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_1/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_1/LiveBindings1Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_1/LiveBindings1Project.dpr -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_1/LiveBindings1Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_1/LiveBindings1Project.dproj -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_2/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_2/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_2/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_2/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_2/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_2/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_2/LiveBindings2Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_2/LiveBindings2Project.dpr -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_2/LiveBindings2Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_2/LiveBindings2Project.dproj -------------------------------------------------------------------------------- /Chapter 06/LiveBindings_2/LiveBindings2Project.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 06/LiveBindings_2/LiveBindings2Project.res -------------------------------------------------------------------------------- /Chapter 07/AirStyle/AirStyleProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/AirStyle/AirStyleProject.dpr -------------------------------------------------------------------------------- /Chapter 07/AirStyle/AirStyleProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/AirStyle/AirStyleProject.dproj -------------------------------------------------------------------------------- /Chapter 07/AirStyle/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/AirStyle/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 07/AirStyle/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/AirStyle/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 07/Button/ButtonProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Button/ButtonProject.dpr -------------------------------------------------------------------------------- /Chapter 07/Button/ButtonProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Button/ButtonProject.dproj -------------------------------------------------------------------------------- /Chapter 07/Button/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Button/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 07/Button/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Button/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 07/Style/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Style/Project1.dpr -------------------------------------------------------------------------------- /Chapter 07/Style/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Style/Project1.dproj -------------------------------------------------------------------------------- /Chapter 07/Style/Unit1.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Style/Unit1.fmx -------------------------------------------------------------------------------- /Chapter 07/Style/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Style/Unit1.pas -------------------------------------------------------------------------------- /Chapter 07/Styles/Project1.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Project1.dpr -------------------------------------------------------------------------------- /Chapter 07/Styles/Project1.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Project1.dproj -------------------------------------------------------------------------------- /Chapter 07/Styles/Project1.dres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Project1.dres -------------------------------------------------------------------------------- /Chapter 07/Styles/Project1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Project1.res -------------------------------------------------------------------------------- /Chapter 07/Styles/Project1Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Project1Resource.rc -------------------------------------------------------------------------------- /Chapter 07/Styles/Unit1.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Unit1.fmx -------------------------------------------------------------------------------- /Chapter 07/Styles/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Unit1.pas -------------------------------------------------------------------------------- /Chapter 07/Styles/Unit2.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Unit2.fmx -------------------------------------------------------------------------------- /Chapter 07/Styles/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/Styles/Unit2.pas -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/Data.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/Data.Main.dfm -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/Data.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/Data.Main.pas -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/Data.Main.vlb: -------------------------------------------------------------------------------- 1 | [EmployeesData] 2 | Coordinates=10,10,91,159 3 | 4 | -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/Entitlement.TemplateOSX32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/Entitlement.TemplateOSX32.xml -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/StylesMultiPlatform.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/StylesMultiPlatform.deployproj -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/StylesMultiPlatform.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/StylesMultiPlatform.dpr -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/StylesMultiPlatform.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/StylesMultiPlatform.dproj -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/StylesMultiPlatform.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/StylesMultiPlatform.res -------------------------------------------------------------------------------- /Chapter 07/StylesMultiPlatform/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 07/StylesMultiPlatform/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/AppState.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/AppState.pas -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Data.Main.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Data.Main.dfm -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Data.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Data.Main.pas -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Data.Orders.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Data.Orders.dfm -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Data.Orders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Data.Orders.pas -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Data.Orders.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Data.Orders.vlb -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Forms.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Forms.Main.vlb -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.Home.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.Home.fmx -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.Home.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.Home.pas -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.Home.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.Home.vlb -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.OrderDetails.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.OrderDetails.fmx -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.OrderDetails.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.OrderDetails.pas -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.OrderDetails.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.OrderDetails.vlb -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.Orders.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.Orders.fmx -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.Orders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.Orders.pas -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/Frames.Orders.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/Frames.Orders.vlb -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/IO.App.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/IO.App.pas -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/TFrameStand01Project.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/TFrameStand01Project.deployproj -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/TFrameStand01Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/TFrameStand01Project.dpr -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/TFrameStand01Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/TFrameStand01Project.dproj -------------------------------------------------------------------------------- /Chapter 08/TFrameStand_01/TFrameStand01Project.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 08/TFrameStand_01/TFrameStand01Project.res -------------------------------------------------------------------------------- /Chapter 09/BehaviorServices/BehaviorServiceProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/BehaviorServices/BehaviorServiceProject.dpr -------------------------------------------------------------------------------- /Chapter 09/BehaviorServices/BehaviorServiceProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/BehaviorServices/BehaviorServiceProject.dproj -------------------------------------------------------------------------------- /Chapter 09/BehaviorServices/Unit1.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/BehaviorServices/Unit1.fmx -------------------------------------------------------------------------------- /Chapter 09/BehaviorServices/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/BehaviorServices/Unit1.pas -------------------------------------------------------------------------------- /Chapter 09/FireUI_01/FireUI01Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/FireUI_01/FireUI01Project.dpr -------------------------------------------------------------------------------- /Chapter 09/FireUI_01/FireUI01Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/FireUI_01/FireUI01Project.dproj -------------------------------------------------------------------------------- /Chapter 09/FireUI_01/FireUI01Project.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/FireUI_01/FireUI01Project.res -------------------------------------------------------------------------------- /Chapter 09/FireUI_01/Forms.Main.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/FireUI_01/Forms.Main.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /Chapter 09/FireUI_01/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/FireUI_01/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 09/FireUI_01/Forms.Main.iPhone55in.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/FireUI_01/Forms.Main.iPhone55in.fmx -------------------------------------------------------------------------------- /Chapter 09/FireUI_01/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/FireUI_01/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 09/TFlowLayout/TFlowLayoutProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TFlowLayout/TFlowLayoutProject.dpr -------------------------------------------------------------------------------- /Chapter 09/TFlowLayout/TFlowLayoutProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TFlowLayout/TFlowLayoutProject.dproj -------------------------------------------------------------------------------- /Chapter 09/TFlowLayout/Unit1.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TFlowLayout/Unit1.fmx -------------------------------------------------------------------------------- /Chapter 09/TFlowLayout/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TFlowLayout/Unit1.pas -------------------------------------------------------------------------------- /Chapter 09/TGridLayout/TGridLayoutProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridLayout/TGridLayoutProject.dpr -------------------------------------------------------------------------------- /Chapter 09/TGridLayout/TGridLayoutProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridLayout/TGridLayoutProject.dproj -------------------------------------------------------------------------------- /Chapter 09/TGridLayout/Unit1.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridLayout/Unit1.fmx -------------------------------------------------------------------------------- /Chapter 09/TGridLayout/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridLayout/Unit1.pas -------------------------------------------------------------------------------- /Chapter 09/TGridPanelLayout/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridPanelLayout/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 09/TGridPanelLayout/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridPanelLayout/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 09/TGridPanelLayout/Frames.Element.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridPanelLayout/Frames.Element.fmx -------------------------------------------------------------------------------- /Chapter 09/TGridPanelLayout/Frames.Element.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridPanelLayout/Frames.Element.pas -------------------------------------------------------------------------------- /Chapter 09/TGridPanelLayout/TGridPanelLayoutProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridPanelLayout/TGridPanelLayoutProject.dpr -------------------------------------------------------------------------------- /Chapter 09/TGridPanelLayout/TGridPanelLayoutProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridPanelLayout/TGridPanelLayoutProject.dproj -------------------------------------------------------------------------------- /Chapter 09/TGridPanelLayout/TGridPanelLayoutProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TGridPanelLayout/TGridPanelLayoutProject.res -------------------------------------------------------------------------------- /Chapter 09/TLayout/TLayoutProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/TLayoutProject.dpr -------------------------------------------------------------------------------- /Chapter 09/TLayout/TLayoutProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/TLayoutProject.dproj -------------------------------------------------------------------------------- /Chapter 09/TLayout/TLayoutProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/TLayoutProject.res -------------------------------------------------------------------------------- /Chapter 09/TLayout/Unit1.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/Unit1.fmx -------------------------------------------------------------------------------- /Chapter 09/TLayout/Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/Unit1.pas -------------------------------------------------------------------------------- /Chapter 09/TLayout/Unit2.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/Unit2.fmx -------------------------------------------------------------------------------- /Chapter 09/TLayout/Unit2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/Unit2.pas -------------------------------------------------------------------------------- /Chapter 09/TLayout/Unit3.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/Unit3.fmx -------------------------------------------------------------------------------- /Chapter 09/TLayout/Unit3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 09/TLayout/Unit3.pas -------------------------------------------------------------------------------- /Chapter 10/Animation101/Animation101Project.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Animation101/Animation101Project.dpr -------------------------------------------------------------------------------- /Chapter 10/Animation101/Animation101Project.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Animation101/Animation101Project.dproj -------------------------------------------------------------------------------- /Chapter 10/Animation101/Animation101Project.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Animation101/Animation101Project.res -------------------------------------------------------------------------------- /Chapter 10/Animation101/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Animation101/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 10/Animation101/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Animation101/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 10/BitmapListAnimation/BitmapListAnimationProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/BitmapListAnimation/BitmapListAnimationProject.dpr -------------------------------------------------------------------------------- /Chapter 10/BitmapListAnimation/BitmapListAnimationProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/BitmapListAnimation/BitmapListAnimationProject.dproj -------------------------------------------------------------------------------- /Chapter 10/BitmapListAnimation/BitmapListAnimationProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/BitmapListAnimation/BitmapListAnimationProject.res -------------------------------------------------------------------------------- /Chapter 10/BitmapListAnimation/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/BitmapListAnimation/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 10/BitmapListAnimation/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/BitmapListAnimation/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 10/ColorAnimation/ColorAnimationProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/ColorAnimation/ColorAnimationProject.dpr -------------------------------------------------------------------------------- /Chapter 10/ColorAnimation/ColorAnimationProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/ColorAnimation/ColorAnimationProject.dproj -------------------------------------------------------------------------------- /Chapter 10/ColorAnimation/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/ColorAnimation/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 10/ColorAnimation/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/ColorAnimation/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 10/FMXAni/FMXAniProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/FMXAni/FMXAniProject.dpr -------------------------------------------------------------------------------- /Chapter 10/FMXAni/FMXAniProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/FMXAni/FMXAniProject.dproj -------------------------------------------------------------------------------- /Chapter 10/FMXAni/FMXAniProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/FMXAni/FMXAniProject.res -------------------------------------------------------------------------------- /Chapter 10/FMXAni/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/FMXAni/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 10/FMXAni/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/FMXAni/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 10/PathAnimation/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/PathAnimation/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 10/PathAnimation/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/PathAnimation/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 10/PathAnimation/PathAnimationProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/PathAnimation/PathAnimationProject.dpr -------------------------------------------------------------------------------- /Chapter 10/PathAnimation/PathAnimationProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/PathAnimation/PathAnimationProject.dproj -------------------------------------------------------------------------------- /Chapter 10/PathAnimation/PathAnimationProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/PathAnimation/PathAnimationProject.res -------------------------------------------------------------------------------- /Chapter 10/Playground/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Playground/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 10/Playground/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Playground/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 10/Playground/PlaygroundProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Playground/PlaygroundProject.dpr -------------------------------------------------------------------------------- /Chapter 10/Playground/PlaygroundProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Playground/PlaygroundProject.dproj -------------------------------------------------------------------------------- /Chapter 10/Playground/PlaygroundProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/Playground/PlaygroundProject.res -------------------------------------------------------------------------------- /Chapter 10/RectangleAndBitmaps/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/RectangleAndBitmaps/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 10/RectangleAndBitmaps/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/RectangleAndBitmaps/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 10/RectangleAndBitmaps/RectangleAndBitmapsProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/RectangleAndBitmaps/RectangleAndBitmapsProject.dpr -------------------------------------------------------------------------------- /Chapter 10/RectangleAndBitmaps/RectangleAndBitmapsProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/RectangleAndBitmaps/RectangleAndBitmapsProject.dproj -------------------------------------------------------------------------------- /Chapter 10/RectangleAndBitmaps/RectangleAndBitmapsProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/RectangleAndBitmaps/RectangleAndBitmapsProject.res -------------------------------------------------------------------------------- /Chapter 10/TAnimator/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/TAnimator/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 10/TAnimator/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/TAnimator/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 10/TAnimator/TAnimatorProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/TAnimator/TAnimatorProject.dpr -------------------------------------------------------------------------------- /Chapter 10/TAnimator/TAnimatorProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 10/TAnimator/TAnimatorProject.dproj -------------------------------------------------------------------------------- /Chapter 11/AnonymousThread/AnonymousThreadProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/AnonymousThread/AnonymousThreadProject.dpr -------------------------------------------------------------------------------- /Chapter 11/AnonymousThread/AnonymousThreadProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/AnonymousThread/AnonymousThreadProject.dproj -------------------------------------------------------------------------------- /Chapter 11/AnonymousThread/AnonymousThreadProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/AnonymousThread/AnonymousThreadProject.res -------------------------------------------------------------------------------- /Chapter 11/AnonymousThread/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/AnonymousThread/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 11/AnonymousThread/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/AnonymousThread/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 11/PPLWait/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/PPLWait/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 11/PPLWait/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/PPLWait/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 11/PPLWait/PPLWaitProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/PPLWait/PPLWaitProject.dpr -------------------------------------------------------------------------------- /Chapter 11/PPLWait/PPLWaitProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/PPLWait/PPLWaitProject.dproj -------------------------------------------------------------------------------- /Chapter 11/PPLWait/PPLWaitProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/PPLWait/PPLWaitProject.res -------------------------------------------------------------------------------- /Chapter 11/ParallelProgrammingLibrary/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/ParallelProgrammingLibrary/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 11/ParallelProgrammingLibrary/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/ParallelProgrammingLibrary/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 11/ParallelProgrammingLibrary/PPLProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/ParallelProgrammingLibrary/PPLProject.dpr -------------------------------------------------------------------------------- /Chapter 11/ParallelProgrammingLibrary/PPLProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/ParallelProgrammingLibrary/PPLProject.dproj -------------------------------------------------------------------------------- /Chapter 11/ParallelProgrammingLibrary/PPLProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/ParallelProgrammingLibrary/PPLProject.res -------------------------------------------------------------------------------- /Chapter 11/SimpleThread/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SimpleThread/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 11/SimpleThread/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SimpleThread/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 11/SimpleThread/SimpleThreadProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SimpleThread/SimpleThreadProject.dpr -------------------------------------------------------------------------------- /Chapter 11/SimpleThread/SimpleThreadProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SimpleThread/SimpleThreadProject.dproj -------------------------------------------------------------------------------- /Chapter 11/SimpleThread/SimpleThreadProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SimpleThread/SimpleThreadProject.res -------------------------------------------------------------------------------- /Chapter 11/SimpleThread/Threads.Simple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SimpleThread/Threads.Simple.pas -------------------------------------------------------------------------------- /Chapter 11/SynchronizeAndQueue/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SynchronizeAndQueue/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 11/SynchronizeAndQueue/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SynchronizeAndQueue/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 11/SynchronizeAndQueue/SynchronizeAndQueueProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SynchronizeAndQueue/SynchronizeAndQueueProject.dpr -------------------------------------------------------------------------------- /Chapter 11/SynchronizeAndQueue/SynchronizeAndQueueProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SynchronizeAndQueue/SynchronizeAndQueueProject.dproj -------------------------------------------------------------------------------- /Chapter 11/SynchronizeAndQueue/SynchronizeAndQueueProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 11/SynchronizeAndQueue/SynchronizeAndQueueProject.res -------------------------------------------------------------------------------- /Chapter 12/Clipboard/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 12/Clipboard/ClipboardProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/ClipboardProject.deployproj -------------------------------------------------------------------------------- /Chapter 12/Clipboard/ClipboardProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/ClipboardProject.dpr -------------------------------------------------------------------------------- /Chapter 12/Clipboard/ClipboardProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/ClipboardProject.dproj -------------------------------------------------------------------------------- /Chapter 12/Clipboard/ClipboardProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/ClipboardProject.res -------------------------------------------------------------------------------- /Chapter 12/Clipboard/Entitlement.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/Entitlement.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 12/Clipboard/Forms.Main.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/Forms.Main.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /Chapter 12/Clipboard/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 12/Clipboard/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 12/Clipboard/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Clipboard/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 12/Dialog/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 12/Dialog/DialogProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/DialogProject.deployproj -------------------------------------------------------------------------------- /Chapter 12/Dialog/DialogProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/DialogProject.dpr -------------------------------------------------------------------------------- /Chapter 12/Dialog/DialogProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/DialogProject.dproj -------------------------------------------------------------------------------- /Chapter 12/Dialog/DialogProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/DialogProject.res -------------------------------------------------------------------------------- /Chapter 12/Dialog/Entitlement.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/Entitlement.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 12/Dialog/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/Dialog/Forms.Main.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/Forms.Main.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /Chapter 12/Dialog/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 12/Dialog/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 12/Dialog/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 12/Dialog/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Dialog/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/Forms.Main.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/Forms.Main.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/InteractiveGesturesProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/InteractiveGesturesProject.deployproj -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/InteractiveGesturesProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/InteractiveGesturesProject.dpr -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/InteractiveGesturesProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/InteractiveGesturesProject.dproj -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/InteractiveGesturesProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/InteractiveGesturesProject.res -------------------------------------------------------------------------------- /Chapter 12/InteractiveGestures/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/InteractiveGestures/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/Messaging/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Messaging/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 12/Messaging/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Messaging/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 12/Messaging/MessagingProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Messaging/MessagingProject.dpr -------------------------------------------------------------------------------- /Chapter 12/Messaging/MessagingProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Messaging/MessagingProject.dproj -------------------------------------------------------------------------------- /Chapter 12/Messaging/MessagingProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Messaging/MessagingProject.res -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/Forms.Main.LgXhdpiPh.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/Forms.Main.LgXhdpiPh.fmx -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/StandardGesturesProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/StandardGesturesProject.dpr -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/StandardGesturesProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/StandardGesturesProject.dproj -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/StandardGesturesProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/StandardGesturesProject.res -------------------------------------------------------------------------------- /Chapter 12/StandardGestures/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/StandardGestures/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/Tap/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 12/Tap/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/Tap/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 12/Tap/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 12/Tap/TapProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/TapProject.deployproj -------------------------------------------------------------------------------- /Chapter 12/Tap/TapProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/TapProject.dpr -------------------------------------------------------------------------------- /Chapter 12/Tap/TapProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/TapProject.dproj -------------------------------------------------------------------------------- /Chapter 12/Tap/TapProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/TapProject.res -------------------------------------------------------------------------------- /Chapter 12/Tap/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Tap/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/Touch/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 12/Touch/Entitlement.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/Entitlement.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 12/Touch/Entitlement.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/Entitlement.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 12/Touch/Forms.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/Forms.Main.fmx -------------------------------------------------------------------------------- /Chapter 12/Touch/Forms.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/Forms.Main.pas -------------------------------------------------------------------------------- /Chapter 12/Touch/TouchProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/TouchProject.deployproj -------------------------------------------------------------------------------- /Chapter 12/Touch/TouchProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/TouchProject.dpr -------------------------------------------------------------------------------- /Chapter 12/Touch/TouchProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/TouchProject.dproj -------------------------------------------------------------------------------- /Chapter 12/Touch/TouchProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/TouchProject.res -------------------------------------------------------------------------------- /Chapter 12/Touch/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 12/Touch/info.plist.TemplateiOS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 12/Touch/info.plist.TemplateiOS.xml -------------------------------------------------------------------------------- /Chapter 13/HelloWorld/Entitlement.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/HelloWorld/Entitlement.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 13/HelloWorld/Form.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/HelloWorld/Form.Main.fmx -------------------------------------------------------------------------------- /Chapter 13/HelloWorld/Form.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/HelloWorld/Form.Main.pas -------------------------------------------------------------------------------- /Chapter 13/HelloWorld/HelloWorld3DProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/HelloWorld/HelloWorld3DProject.deployproj -------------------------------------------------------------------------------- /Chapter 13/HelloWorld/HelloWorld3DProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/HelloWorld/HelloWorld3DProject.dpr -------------------------------------------------------------------------------- /Chapter 13/HelloWorld/HelloWorld3DProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/HelloWorld/HelloWorld3DProject.dproj -------------------------------------------------------------------------------- /Chapter 13/HelloWorld/HelloWorld3DProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/HelloWorld/HelloWorld3DProject.res -------------------------------------------------------------------------------- /Chapter 13/HelloWorld/info.plist.TemplateOSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/HelloWorld/info.plist.TemplateOSX.xml -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/Data.Models.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/Data.Models.dfm -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/Data.Models.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/Data.Models.pas -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/Data.Models.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/Data.Models.vlb -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/Form.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/Form.Main.fmx -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/Form.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/Form.Main.pas -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/Form.Main.vlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/Form.Main.vlb -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/ProjectMix3D2D.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/ProjectMix3D2D.deployproj -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/ProjectMix3D2D.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/ProjectMix3D2D.dpr -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/ProjectMix3D2D.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/ProjectMix3D2D.dproj -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/ProjectMix3D2D.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/ProjectMix3D2D.res -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/Utils.Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/Utils.Messages.pas -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/cat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/cat.obj -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/deer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/deer.obj -------------------------------------------------------------------------------- /Chapter 13/Mix3D2D/dog.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Mix3D2D/dog.obj -------------------------------------------------------------------------------- /Chapter 13/Viewport/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Viewport/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Chapter 13/Viewport/Form.Main.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Viewport/Form.Main.fmx -------------------------------------------------------------------------------- /Chapter 13/Viewport/Form.Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Viewport/Form.Main.pas -------------------------------------------------------------------------------- /Chapter 13/Viewport/ViewportProject.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Viewport/ViewportProject.deployproj -------------------------------------------------------------------------------- /Chapter 13/Viewport/ViewportProject.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Viewport/ViewportProject.dpr -------------------------------------------------------------------------------- /Chapter 13/Viewport/ViewportProject.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Viewport/ViewportProject.dproj -------------------------------------------------------------------------------- /Chapter 13/Viewport/ViewportProject.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Chapter 13/Viewport/ViewportProject.res -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/README.md -------------------------------------------------------------------------------- /Uncategorized/BlueDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Uncategorized/BlueDot.png -------------------------------------------------------------------------------- /Uncategorized/BrushObject.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Uncategorized/BrushObject.style -------------------------------------------------------------------------------- /Uncategorized/Seamless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Uncategorized/Seamless.png -------------------------------------------------------------------------------- /Uncategorized/StarBrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Delphi-GUI-Programming-with-FireMonkey/HEAD/Uncategorized/StarBrush.png --------------------------------------------------------------------------------