To detect device orientation change, you can use the following example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
uses System.Messaging, FMX.Platform; var FId: Integer; // Subscribe to TOrientationChangedMessage FId := TMessageManager.DefaultManager.SubscribeToMessage(TOrientationChangedMessage, DoOrientationChanged); // Write orientation change handler: procedure TMyForm.DoOrientationChanged(const Sender: TObject; const M: TMessage); var s: IFMXScreenService; begin if TPlatformServices.Current.SupportsPlatformService(IFMXScreenService, s) then begin case s.GetScreenOrientation of TScreenOrientation.Portrait: ; TScreenOrientation.Landscape: ; TScreenOrientation.InvertedPortrait: ; TScreenOrientation.InvertedLandscape: ; end; end; end; // Unsubscribe the TOrientationChangedMessage TMessageManager.DefaultManager.Unsubscribe(TOrientationChangedMessage, FId); |
The evolution of KVM and qemu is constant. To increase the size of a qcow2 disk just follow the steps below: Shut down the virtual machine Resize the image with
1 2 |
qemu-img resize image.qcow2 +SIZE |
where SIZE is the size (e.g. 30G for 30 gibibytes). Boot into an external live OS and resize the partition. So if you wanto to extend…
Leggi tutto
Xtumble Web Builder 2 è lo strumento base con cui personalizzaziamo tutta l’esperienza WEB delle applicazioni realizzate sulla nuovissima piattaforma cloud business Xtumble e con cui abbiamo realizzato gli e-commerce visibili su xtumble.store . Per permettere agli sviluppatori / designer / web developer di poter personalizzare le applicazioni pubblicate sulla piattaforma Xtumble abbiamo deciso di confezionare gli strumenti di…
Leggi tutto
Con l’avvento di netplan è possibile gestire l’instradamento per sinagola interfaccia di rete in modo semplice. Se ad esempio abbiamo una VM connessa a due lan separate con due schede rete e ovviamente due gateway dobbiamo gestire l’intradamento dei pacchetti, perchè notoriamente Linux instrada tutto sul gateway di default. Per ovviare a questo…
Leggi tutto
Xtumble Web Builder 2 è lo strumento base con cui personalizzaziamo tutta l’esperienza WEB delle applicazioni realizzate sulla nuovissima piattaforma cloud business Xtumble e con cui abbiamo realizzato gli e-commerce visibili su xtumble.store . Per permettere agli sviluppatori / designer / web developer di poter personalizzare le applicazioni pubblicate sulla piattaforma Xtumble abbiamo deciso di…
Leggi tutto
With Delphi you can create your own applications for Mac OSX 64Bit and distribute them both via the Mac App Store and independently using the Developer ID distribution method. In this article we will see how to distribute an app through the “Notarization” procedure of the app to be able to distribute it independently, even…
Leggi tutto