Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
LCL
»
GTK2: hint not showing for disabled control
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Which Control should I us...
by
cdbc
[
Today
at 03:10:54 pm]
docked IDE and form capti...
by
Paolo
[
Today
at 02:53:50 pm]
New version of LazMapView...
by
wp
[
Today
at 12:09:27 pm]
Very rough version of a s...
by
Hansvb
[
Today
at 11:48:04 am]
Single and Double, Conver...
by
kupferstecher
[
Today
at 11:08:22 am]
PadXml 1.1.0 – Portable A...
by
AlexanderT
[
Today
at 10:38:42 am]
Arkanoid
by
Tomi
[
Today
at 09:46:46 am]
SynEdit theme
by
Martin_fr
[
Today
at 08:15:21 am]
Interesting video
by
Joanna
[
Today
at 06:24:53 am]
IndySecOpenSSL is now ava...
by
TheMouseAUS
[
Today
at 03:49:17 am]
Message CM_ShowingChanged...
by
LeP
[
Today
at 02:13:51 am]
Fast Canvas Library V1.05...
by
Gigatron
[
Today
at 01:48:44 am]
[SOLVED]Program experienc...
by
Cainnech
[
Today
at 12:19:17 am]
TATTabs - how to stop a 3...
by
bobonwhidbey
[
Today
at 12:03:15 am]
If FileExists(
by
Bart
[June 12, 2026, 10:39:03 pm]
If you are looking for Wi...
by
avra
[June 12, 2026, 07:37:10 pm]
Can /my/ AI help me with ...
by
microxa
[June 12, 2026, 04:26:18 pm]
Lazarus Bugfix Release 4....
by
Martin_fr
[June 12, 2026, 03:57:39 pm]
Testing with 3.2.4 prepar...
by
Martin_fr
[June 12, 2026, 03:50:17 pm]
TDWEdit
by
Ed78z
[June 12, 2026, 10:20:58 am]
Strange Behaviour at Runt...
by
andrew Bubble
[June 12, 2026, 09:54:40 am]
FPC Debug mode releases [...
by
Martin_fr
[June 12, 2026, 09:22:25 am]
Implementing an Elo ratin...
by
paule32
[June 12, 2026, 08:43:20 am]
Death of the Power User
by
wp
[June 12, 2026, 01:29:18 am]
how to add a ForEach call...
by
mas steindorff
[June 11, 2026, 11:42:24 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: GTK2: hint not showing for disabled control (Read 1018 times)
zoltanleo
Hero Member
Posts: 522
GTK2: hint not showing for disabled control
«
on:
May 25, 2022, 05:46:56 pm »
Hi all.
I found a slightly strange behavior of the hint property for a disabled control. For win32/Сocoa widgetsets hint is displayed, for gtk2 it is not displayed.
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
FormCreate
(
Sender
:
TObject
)
;
begin
with
btnEnabled
do
begin
ShowHint
:
=
True
;
Enabled
:
=
True
;
Hint
:
=
'This is an enabled control'
;
end
;
with
btnDisabled
do
begin
ShowHint
:
=
True
;
Enabled
:
=
False
;
Hint
:
=
'This is disabled control'
;
end
;
end
;
What behavior is considered a bug?
Logged
Win10 LTSC x64/LMDE7-x11-x86_64(gtk2/gtk3)/Fedora-44-wayland-x86_64(gtk2/gtk3)/ Kubuntu-24-x11-x86_64(qt5/qt6)/KDE Neon-wayland-x86_64(qt5/qt6)/Darwin Cocoa x86_64 (15.7.7):
Lazarus x32_64 (trunk); FPC(trunk), FireBird 5.0.3 x86_64; IBX by TonyW
Sorry for my bad English, I'm using translator
zoltanleo
Hero Member
Posts: 522
Re: GTK2: hint not showing for disabled control
«
Reply #1 on:
May 25, 2022, 05:49:31 pm »
linux behavior
https://i.imgur.com/bMnSfsq.gif
+ test project
Logged
Win10 LTSC x64/LMDE7-x11-x86_64(gtk2/gtk3)/Fedora-44-wayland-x86_64(gtk2/gtk3)/ Kubuntu-24-x11-x86_64(qt5/qt6)/KDE Neon-wayland-x86_64(qt5/qt6)/Darwin Cocoa x86_64 (15.7.7):
Lazarus x32_64 (trunk); FPC(trunk), FireBird 5.0.3 x86_64; IBX by TonyW
Sorry for my bad English, I'm using translator
zeljko
Hero Member
Posts: 1958
Re: GTK2: hint not showing for disabled control
«
Reply #2 on:
May 25, 2022, 05:55:33 pm »
It works on qt,qt5,win32 and cocoa, so it's definitelly bug. Please open issue at bugtracker and attach provided project1.zip from here.
Logged
zoltanleo
Hero Member
Posts: 522
Re: GTK2: hint not showing for disabled control
«
Reply #3 on:
May 25, 2022, 10:03:11 pm »
Done
https://gitlab.com/freepascal.org/lazarus/lazarus/-/issues/39772
Logged
Win10 LTSC x64/LMDE7-x11-x86_64(gtk2/gtk3)/Fedora-44-wayland-x86_64(gtk2/gtk3)/ Kubuntu-24-x11-x86_64(qt5/qt6)/KDE Neon-wayland-x86_64(qt5/qt6)/Darwin Cocoa x86_64 (15.7.7):
Lazarus x32_64 (trunk); FPC(trunk), FireBird 5.0.3 x86_64; IBX by TonyW
Sorry for my bad English, I'm using translator
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
LCL
»
GTK2: hint not showing for disabled control
TinyPortal
© 2005-2018