Page 1 of 1
FiveTouch tutorial
Posted: Sat Apr 15, 2017 7:09 am
by Antonio Linares
tutor01.prg
Code: Select all
#include "FiveTouch.ch"
function Main()
MsgInfo( "Hello world from FiveTouch" )
return nil
Re: FiveTouch tutorial
Posted: Sat Apr 15, 2017 7:35 pm
by Antonio Linares
Building the main screen of your Android/iOS app:
myapp.prg
Code: Select all
#include "FiveTouch.ch"
function Main()
local oDlg, oSay, oBtn1, oBtn2
DEFINE DIALOG oDlg ;
SIZE ScreenWidth(), ScreenHeight()
@ 100, 100 SAY oSay PROMPT "My Android app" OF oDlg
@ 200, 200 BUTTON oBtn1 PROMPT "Stock" OF oDlg SIZE 200, 200 ;
ACTION MsgInfo( "Stock" )
@ 450, 200 BUTTON oBtn2 PROMPT "Clients" OF oDlg SIZE 200, 200 ;
ACTION MsgInfo( "Clients" )
ACTIVATE DIALOG oDlg CENTERED
return nil
Re: FiveTouch tutorial
Posted: Mon Apr 17, 2017 7:47 am
by Antonio Linares
Using images on the buttons of your Android/iOS app main screen:
Re: FiveTouch tutorial
Posted: Tue Oct 17, 2017 7:47 am
by Antonio Linares
Code: Select all
#include "FiveTouch.ch"
function Main()
local oDlg, oSay, oBtn1, oBtn2
DEFINE DIALOG oDlg ;
SIZE ScreenWidth(), ScreenHeight()
@ 100, 100 SAY oSay PROMPT "My Android app" OF oDlg
@ 200, 200 BUTTON oBtn1 PROMPT "Stock" OF oDlg SIZE 200, 200 ;
ACTION MsgInfo( "Stock" )
oBtn1:SetIcon( QIcon( QPixmap( "test.jpg" ) ) )
oBtn1:SetIconSize( QSize( 150, 150 ) )
@ 450, 200 BUTTON oBtn2 PROMPT "Clients" OF oDlg SIZE 200, 200 ;
ACTION MsgInfo( "Clients" )
ACTIVATE DIALOG oDlg CENTERED
return nil
Re: FiveTouch tutorial
Posted: Sun Sep 23, 2018 1:48 pm
by Marcelo Roggeri
Hola buenos días, quisiera probar los ejemplos en mi móvil.
Podrías enviarme una demo de FiveTouch? ... Antonio por favor
Y que pasos debo seguir
gracias de antemano
Saludos. Marcelo
Re: FiveTouch tutorial
Posted: Mon Sep 24, 2018 4:21 am
by Antonio Linares
Marcelo,
Descarga esta aplicación desde tu dispositivo Android:
https://github.com/FiveTechSoft/fivetou ... etouch.apk
Tendrás que autorizar el instalar aplicaciones desde "orígenes desconocidos"
En tu PC instala esta versión:
https://github.com/FiveTechSoft/fivetou ... indows.zip
FiveTouch incluye ejemplos. Revísalos en la carpeta samples. Ejecútalos desde FiveTouch
Re: FiveTouch tutorial
Posted: Mon Sep 24, 2018 11:56 am
by Marcelo Roggeri
Muchas gracias Antonio