Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-25 Thread Luca Olivetti via lazarus

El 25/1/19 a les 10:21, Alexander Hofmann via lazarus ha escrit:

Hi,

I've been looking for something like this, too, some time ago, and I
decided to go for a self-built solution, to be independent of the
underlying widget-set.
(I grayed-out all important widgets, which can be done automatically by
walking, recursively, through the Controls property, and displayed a
"throbber" with a few spinning dots on top of the form)


Thank you, probably that's the best option, considering that using UWP 
from win32 is not going to be easy (it at all possible, besides, I only 
found some tutorials on how to do it for ms development tools) and not 
portable.


Bye

--
Luca Olivetti
Wetron Automation Technology http://www.wetron.es/
Tel. +34 93 5883004 (Ext.3010)  Fax +34 93 5883007
--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-25 Thread Giuliano Colla via lazarus

Il 24/01/2019 20:52, Sven Barth via lazarus ha scritto:
I take it those are resistive touch screens? For those calibration is 
sometimes necessary (especially older ones as you said). For 
capacitive touch panels (be it smartphone or tablet) I haven't found 
the need for that. 



Yes they are. In a harsh industrial environment where dirt and dust are 
unavoidable I'm told they're preferable, also because you may use them 
with gloves or with any kind of stylus you happen to have available.


However we rely on the choices of our industrial PC supplier. It's a 
small Italian manufacturer, but selling all over the world. We 
considered that if US Railways and US Cost Guard come to Italy to buy 
their PC's there must be a reason!


Giuliano

--
Do not do to others as you would have them do to you.They might have different 
tastes.

--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-25 Thread Giuliano Colla via lazarus

Il 24/01/2019 21:42, Luca Olivetti via lazarus ha scritto:

@Giuliano, in my case it just manages the UI, but I didn't decide the OS.



That's the reason why, some decades ago, tired of being conditioned by 
technical decisions taken by non-technical people, me and two other guys 
with a similar problem did put together all our savings and started our 
own company.


As we're still kicking and alive, even if rather old, while our 
competitors, handled with just finance in mind, have collapsed since a 
long time, I infer that our decision was not so bad, and I would 
encourage anybody in a similar position to do the same!


Giuliano

--
Do not do to others as you would have them do to you.They might have different 
tastes.

--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-25 Thread Alexander Hofmann via lazarus
Hi,

I've been looking for something like this, too, some time ago, and I
decided to go for a self-built solution, to be independent of the
underlying widget-set.
(I grayed-out all important widgets, which can be done automatically by
walking, recursively, through the Controls property, and displayed a
"throbber" with a few spinning dots on top of the form)

Anyway,

Am 24.01.2019 um 21:42 schrieb Luca Olivetti via lazarus:
> If only they provided at least an alternative way to provide feedback
> when the application is busy...

They do, though not for the "classic" style APIs like Win32 or
Windows.Forms. There's an UWP class
(https://docs.microsoft.com/en-us/uwp/api/Windows.UI.Xaml.Controls.ProgressRing)
I think is intended for this.

See also:
https://stackoverflow.com/questions/44054195/windows-is-there-a-built-in-loading-animation-i-can-reference-as-a-visual-c-r

In Android it's called "Loading Spinner" IMHO and is somewhat
OS-Supplied, although as I saw in many projects, in the end it's mostly
self-built solutions.

A quick search didn't bring up something similar for other widgetsets,
too (at least GTK and Qt don't seem to support it natively ?)

Best regards,

Alex

-- 
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-24 Thread Luca Olivetti via lazarus

El 24/1/19 a les 14:34, Sven Barth via lazarus ha escrit:

No, Windows 10 hides the cursor if no input device (mouse, touchpad) 
besides a touchscreen is detected. Cause in that case a cursor "makes no 
sense". Note: this does not mean I agree with that, only that Microsoft 
thinks that.


If only they provided at least an alternative way to provide feedback 
when the application is busy...


@Giuliano, in my case it just manages the UI, but I didn't decide the OS.

Bye
--
Luca Olivetti
Wetron Automation Technology http://www.wetron.es/
Tel. +34 93 5883004 (Ext.3010)  Fax +34 93 5883007
--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-24 Thread Sven Barth via lazarus
Am Do., 24. Jan. 2019, 18:31 hat Giuliano Colla via lazarus <
lazarus@lists.lazarus-ide.org> geschrieben:

> Il 24/01/2019 14:34, Sven Barth via lazarus ha scritto:
> > No, Windows 10 hides the cursor if no input device (mouse, touchpad)
> > besides a touchscreen is detected. Cause in that case a cursor "makes
> > no sense". Note: this does not mean I agree with that, only that
> > Microsoft thinks that.
> >
>
> Just for the record. In our company we manufacture control systems for
> automatic machines, and we provide a touch-screen industrial computer,
> for easy operator interaction.
>
> In the operating instructions we write:
>
> "If you have difficulties with touch screen, please touch anywhere on
> the screen and watch the cursor position, If it happens not to be
> exactly at the location you touched, please perform the touch screen
> calibration procedure explained below"
>
> Of course we're not using Windows, but rather Linux for a lot of
> reasons, the main one being that we need real-time responsiveness.
> However this one adds one more reason to the list.
>
> To be honest I must admit that industrial grade touch screens have
> dramatically improved during the years, and nowadays the recalibration
> is seldom required, nonetheless...
>

I take it those are resistive touch screens? For those calibration is
sometimes necessary (especially older ones as you said). For capacitive
touch panels (be it smartphone or tablet) I haven't found the need for
that.

Regards,
Sven

>
-- 
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-24 Thread Giuliano Colla via lazarus

Il 24/01/2019 14:34, Sven Barth via lazarus ha scritto:
No, Windows 10 hides the cursor if no input device (mouse, touchpad) 
besides a touchscreen is detected. Cause in that case a cursor "makes 
no sense". Note: this does not mean I agree with that, only that 
Microsoft thinks that.




Just for the record. In our company we manufacture control systems for 
automatic machines, and we provide a touch-screen industrial computer, 
for easy operator interaction.


In the operating instructions we write:

"If you have difficulties with touch screen, please touch anywhere on 
the screen and watch the cursor position, If it happens not to be 
exactly at the location you touched, please perform the touch screen 
calibration procedure explained below"


Of course we're not using Windows, but rather Linux for a lot of 
reasons, the main one being that we need real-time responsiveness. 
However this one adds one more reason to the list.


To be honest I must admit that industrial grade touch screens have 
dramatically improved during the years, and nowadays the recalibration 
is seldom required, nonetheless...


Giuliano

--
Do not do to others as you would have them do to you.They might have different 
tastes.

--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-24 Thread Sven Barth via lazarus
Am Do., 24. Jan. 2019, 13:52 hat Giuliano Colla via lazarus <
lazarus@lists.lazarus-ide.org> geschrieben:

> Il 23/01/2019 15:49, Luca Olivetti via lazarus ha scritto:
>
> > This isn't strictly a lazarus issue, but my google fu is failing me.
> > It turns out that windows 10 with a touch screen hides the mouse
> > cursor, so Screen.Cursor=crHourGlass does nothing.
>
> Did you try taking advantage of such Windows API's as ClipCursor() and
> SetCursorPos()?
> Maybe the cursor is hidden just because of the way the clipping area is
> defined in presence of a touch screen, or because the cursor position is
> set outside the screen coordinates.
> Just an idea, I never tried myself.
>

No, Windows 10 hides the cursor if no input device (mouse, touchpad)
besides a touchscreen is detected. Cause in that case a cursor "makes no
sense". Note: this does not mean I agree with that, only that Microsoft
thinks that.

Regards,
Sven

>
-- 
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-24 Thread Giuliano Colla via lazarus

Il 23/01/2019 15:49, Luca Olivetti via lazarus ha scritto:


This isn't strictly a lazarus issue, but my google fu is failing me.
It turns out that windows 10 with a touch screen hides the mouse 
cursor, so Screen.Cursor=crHourGlass does nothing. 


Did you try taking advantage of such Windows API's as ClipCursor() and 
SetCursorPos()?
Maybe the cursor is hidden just because of the way the clipping area is 
defined in presence of a touch screen, or because the cursor position is 
set outside the screen coordinates.

Just an idea, I never tried myself.

Giuliano

--
Do not do to others as you would have them do to you.They might have different 
tastes.

--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-24 Thread Luca Olivetti via lazarus

El 24/1/19 a les 10:23, Graeme Geldenhuys via lazarus ha escrit:

On 23/01/2019 14:49, Luca Olivetti via lazarus wrote:

is there an alternative way to show that the application is busy?


A small borderless dialog with a short message? Think in the lines of a
splashscreen-like dialog. I use this often in my applications to convey
updates to long running tasks.


I was hoping for a system-provided facility (just like the crHourGlass 
but for windows 10 *with* touch screen. With a physical mouse 
crHourGlass works fine).
If there isn't one I will consider using a splash screen but I don't 
like it very much.


Regards
--
Luca Olivetti
Wetron Automation Technology http://www.wetron.es/
Tel. +34 93 5883004 (Ext.3010)  Fax +34 93 5883007
--
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus


Re: [Lazarus] how to show hourglass on windows 10 with touch screen?

2019-01-24 Thread Graeme Geldenhuys via lazarus
On 23/01/2019 14:49, Luca Olivetti via lazarus wrote:
> is there an alternative way to show that the application is busy?

A small borderless dialog with a short message? Think in the lines of a
splashscreen-like dialog. I use this often in my applications to convey
updates to long running tasks.


Regards,
  Graeme

-- 
fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
http://fpgui.sourceforge.net/

My public PGP key:  http://tinyurl.com/graeme-pgp
-- 
___
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus