Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
NiceGrid freezes when resizing column by mouse
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
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Lazarus Install PI5 Bookw...
by
paweld
[
Today
at 01:36:00 pm]
Conscious Artificial Inte...
by
Dzandaa
[
Today
at 01:07:14 pm]
What is the meaning of TF...
by
Hartmut
[
Today
at 11:17:32 am]
BGRABitmap - showcase -
by
Mongkey
[
Today
at 11:14:36 am]
Patt - a small ball bounc...
by
thehay95
[
Today
at 11:06:17 am]
jwabcrypt unit is missing
by
Thaddy
[
Today
at 11:01:41 am]
Windows API and wide/unic...
by
marcov
[
Today
at 10:49:07 am]
BGRA Controls Install Lat...
by
paweld
[
Today
at 10:39:51 am]
Huge problem with open fi...
by
dseligo
[
Today
at 10:09:29 am]
[SOLVED] TPanel slider po...
by
Thaddy
[
Today
at 09:21:09 am]
Sleep forever
by
Thaddy
[
Today
at 08:51:02 am]
Lazarus corrupted my enti...
by
Martin_fr
[
Today
at 08:50:09 am]
GUI for ChatGPT (yarvis)
by
Thaddy
[
Today
at 07:46:19 am]
TFileStream.ReadAnsiStrin...
by
simone
[
Today
at 07:37:09 am]
Lazarus IDE Windows "stuc...
by
Tony Stone
[
Today
at 01:47:54 am]
[SOLVED] Does using TTime...
by
EganSolo
[November 28, 2023, 11:38:26 pm]
TPath enhancements (Issue...
by
Bart
[November 28, 2023, 10:53:15 pm]
Why cannot this be inline...
by
ASerge
[November 28, 2023, 09:37:57 pm]
Anyone interested in test...
by
PascalDragon
[November 28, 2023, 09:23:21 pm]
[SOLVED]Diferences in Gen...
by
janasoft
[November 28, 2023, 09:05:14 pm]
Projects written in old F...
by
wp
[November 28, 2023, 08:07:11 pm]
Adding an icon to the exe...
by
bobby100
[November 28, 2023, 07:05:22 pm]
[solved] How to activate/...
by
Raumgleiter
[November 28, 2023, 06:07:24 pm]
Does anybody have example...
by
pascalbythree
[November 28, 2023, 06:01:21 pm]
Get Started / How'to with...
by
circular
[November 28, 2023, 05:08:32 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: NiceGrid freezes when resizing column by mouse (Read 560 times)
chrv
Jr. Member
Posts: 56
NiceGrid freezes when resizing column by mouse
«
on:
September 23, 2023, 06:44:11 pm »
Hello everyone,
I'm using a TNiceGrid in my current project.
At runtime, when resizing a NiceGrid column with the mouse, my app freezes. It doesn't happend if changing column width by code.
Is this a known issue?
See attached code
Logged
Win32 Lazarus 2.0.12 FPC 3.2.0
wp
Hero Member
Posts: 11445
Re: NiceGrid freezes when resizing column by mouse
«
Reply #1 on:
September 23, 2023, 07:21:47 pm »
I confirm the issue, never saw it before. It happens in the show/hide scrollbar procedure.
«
Last Edit: September 23, 2023, 07:44:09 pm by wp
»
Logged
wp
Hero Member
Posts: 11445
Re: NiceGrid freezes when resizing column by mouse
«
Reply #2 on:
September 23, 2023, 08:00:35 pm »
In TNiceGrid.Recalculate there are two calls to "SetScrollbar". The hang occurs aways when the provided offset (FHorzOffset, FVertOffset) is 0. The following modification fixes the issue for me:
Code: Pascal
[Select]
[+]
[-]
procedure
TNiceGrid
.
Recalculate
;
...
FHorzOffset
:
=
Max
(
0
,
Min
(
FHorzOffset
,
FMaxHScroll
)
)
;
FVertOffset
:
=
Max
(
0
,
Min
(
FVertOffset
,
FMaxVScroll
)
)
;
if
FHorzOffset <>
0
then
// <--- ADDED
SetScrollBar
(
SB_HORZ
,
FMaxHScroll
,
FHorzOffset
,
SIF_POS
or
SIF_RANGE
)
;
if
FVertOffset <>
0
then
// <--- ADDED
SetScrollBar
(
SB_VERT
,
FMaxVScroll
,
FVertOffset
,
SIF_POS
or
SIF_RANGE
)
;
AllWidth
:
=
Min
(
ClientWidth
,
BodyWidth
+
FixedWidth
)
;
...
Please test, if this has any side-effects.
Logged
jamie
Hero Member
Posts: 5835
Re: NiceGrid freezes when resizing column by mouse
«
Reply #3 on:
September 23, 2023, 08:26:40 pm »
shouldn't the SetScrollbar exit and do nothing on zero offset? I mean if that is a general function, it could cause issues for other code?
«
Last Edit: September 23, 2023, 08:29:05 pm by jamie
»
Logged
The only true wisdom is knowing you know nothing
chrv
Jr. Member
Posts: 56
Re: NiceGrid freezes when resizing column by mouse
«
Reply #4 on:
September 23, 2023, 10:32:07 pm »
@wp : It works for me. THANKS
Logged
Win32 Lazarus 2.0.12 FPC 3.2.0
wp
Hero Member
Posts: 11445
Re: NiceGrid freezes when resizing column by mouse
«
Reply #5 on:
September 23, 2023, 11:12:41 pm »
jamie made me think about it again. I don't know, maybe it's not correct. The issue is that Recalculate calls SetScrollbar and this triggers WMSize for whatever reason I don't understand. And WMSize has Recalculate again in its handler...
I think that most of these Windows-like messages may have been fixes in the early days of Delphi, but now in Lazarus they usually are not required any more and at places they are even harmful. Therefore I tested to remove the WMSize handler and to replace it by the Lazarus counterpart DoOnResize - and now the issue is gone (even without the "if FHorzOffset <> 0").
I also noticed that the mouse wheel is not working and fixed it in the same way (use DoMouseWheel rather than WMMouseWheel). And I tweaked mouse wheel support a bit: normal scrolling now is by 1 row, and when the CTRL key is pressed during scrolling it is by 5 rows.
To get the new version I'd recommend to download the snapshot zip file from
https://sourceforge.net/p/lazarus-ccr/svn/HEAD/tree/components/nicegrid/
(or to use SVN).
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
NiceGrid freezes when resizing column by mouse
TinyPortal
© 2005-2018