Libs : colored link

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
eddy
Addict
Addict
Posts: 1479
Joined: Mon May 26, 2003 3:07 pm
Location: Nantes

Libs : colored link

Post by eddy »

download : here ( Extract to your PB folder and restart your PB compiler. )

ColoredLink feature:
- 2 colors
- label & url
- can open url ( if url is defined )

Code: Select all

ColoredLinkGadget(#PB_Any,5,5,70,25,"clickable link","www.purebasic.com",RGB($CE,$0,$0),RGB($FF,$0,$0))

ColoredLinkGadget(#PB_Any,5,5,70,25,"clickable link","",RGB($CE,$0,$0),RGB($FF,$0,$0))
Imagewin10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
ebs
Enthusiast
Enthusiast
Posts: 561
Joined: Fri Apr 25, 2003 11:08 pm

Post by ebs »

eddy,

Nice and simple - I like it!

I did notice one problem: On Windows, if you are using Microsoft's "ClearType" font smoothing,
the link text gets messed up when the mouse passes over it. With ClearType turned off, everything is OK.

I've seen this behavior before, and I believe it has something to do with changing the font color dynamically when ClearType is on.
I don't think there's much that can be done about it.

Thanks,
Eric
Wolf
Enthusiast
Enthusiast
Posts: 234
Joined: Sat Apr 03, 2004 12:00 pm
Location: S.T

Post by Wolf »

Thanks eddy its nice :wink:
User avatar
eddy
Addict
Addict
Posts: 1479
Joined: Mon May 26, 2003 3:07 pm
Location: Nantes

Post by eddy »

cleartype uses two effects : font smoothing + alphablending.

Alpha text is drawed several times, that's why it gets messed up
I have to erase the background of parent window.

I tried to fix without any result
:arrow: http://msdn.microsoft.com/library/defau ... cation.asp

If you found a way to fix it... :)
Imagewin10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
User avatar
eddy
Addict
Addict
Posts: 1479
Joined: Mon May 26, 2003 3:07 pm
Location: Nantes

Post by eddy »

[UPDATED]

Ok I fixed the CLEARTYPE problem with a colored rectangle.
It's a cheap solution.
Imagewin10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
Post Reply