cambio graduale di luminosità in ribbonbar
Moderator: Enrico Maria Giordano
cambio graduale di luminosità in ribbonbar
E' possibile ottenere un cambio graduale di luminosità quando il mouse è posizionato su un gruppo della ribbonbar, come avviene in office?
grazie
marzio
grazie
marzio
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: cambio graduale di luminosità in ribbonbar
Marzio,
Could you please provide a screenshot ? thanks
Could you please provide a screenshot ? thanks
Re: cambio graduale di luminosità in ribbonbar
it is necessary a video not a screenshot.
when you move the mouse cursor over a group in fivewin's ribbonbar the group became brightness instantly.
in word 2007 (and other office program) the group became brightness slowly (in half or one second).
when you move the mouse cursor over a group in fivewin's ribbonbar the group became brightness instantly.
in word 2007 (and other office program) the group became brightness slowly (in half or one second).
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: cambio graduale di luminosità in ribbonbar
This is the code currently used to paint a RibbonBar panel:
We should figure out how to delay it.
Does the color intensity changes progressively in such little time ?
Code: Select all
METHOD Paint() CLASS TRPanel
local aInfo
local aRect := GetClientRect( ::hWnd )
aInfo := ::DispBegin()
FillRect( ::hDC, GetClientRect( ::hWnd ), ::hBack )
::DispEnd( aInfo )
return NIL
Does the color intensity changes progressively in such little time ?
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: cambio graduale di luminosità in ribbonbar
neither in Windows 10 Ms Paint RibbonBar
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: cambio graduale di luminosità in ribbonbar
Secondo me la grafica di office in 2010 e 2013 è molto peggiorata,
microsoft non sa più cosa fare di nuovo. quando le finestre non sono a pieno schermo sono poco distinguibili da quello che c'è dietro.
comunque si in meno di un secondo fa una animazione probabilmente di alcune gradazioni di azzurro di diversa luminosità,
anche quando togli il mouse dal gruppo fa una animazione inversa da chiaro a scuro.
In fact the graphics in office 2010 and 2013 is much worse, microsoft no longer knows what to do new.
When a windows or a dialog are not in full screen are hardly distinguishable from what is behind.
However, in less than a second makes an animation probably some shades of blue vary in brightness.
even when you move away the mouse from the Group, it makes a reverse animation from light to dark.
microsoft non sa più cosa fare di nuovo. quando le finestre non sono a pieno schermo sono poco distinguibili da quello che c'è dietro.
comunque si in meno di un secondo fa una animazione probabilmente di alcune gradazioni di azzurro di diversa luminosità,
anche quando togli il mouse dal gruppo fa una animazione inversa da chiaro a scuro.
In fact the graphics in office 2010 and 2013 is much worse, microsoft no longer knows what to do new.
When a windows or a dialog are not in full screen are hardly distinguishable from what is behind.
However, in less than a second makes an animation probably some shades of blue vary in brightness.
even when you move away the mouse from the Group, it makes a reverse animation from light to dark.
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: cambio graduale di luminosità in ribbonbar
To implement an animation we should use a timer.
Thinking about it...
Thinking about it...
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: cambio graduale di luminosità in ribbonbar
or use sleep ?
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: cambio graduale di luminosità in ribbonbar
that would block the application execution