Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Installation
»
macOS / Mac OS X
»
[SOLVED] TButton.OnMouseUp does not trigger
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
IRC channel
Latest SVN
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
Very Weird SIGSEGV
by
Martin_fr
[
Today
at 04:57:18 am]
Unfolding bug after searc...
by
Martin_fr
[
Today
at 04:29:28 am]
Contemporary Pascal Discu...
by
Blade
[
Today
at 04:14:59 am]
ParentBackground of Group...
by
Muso
[
Today
at 03:34:28 am]
problem with ChartToolset...
by
Muso
[
Today
at 03:13:31 am]
[fixed] crash with chartE...
by
Muso
[
Today
at 02:46:37 am]
[fixed] font bug in chart...
by
Muso
[
Today
at 02:45:30 am]
small UI issue in chartEd...
by
Muso
[
Today
at 02:36:50 am]
[SOLVED] To Free or not t...
by
jamie
[
Today
at 02:00:56 am]
TResampleFilter rfBestQua...
by
del
[
Today
at 01:58:28 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] TButton.OnMouseUp does not trigger (Read 821 times)
ling
New Member
Posts: 14
[SOLVED] TButton.OnMouseUp does not trigger
«
on:
March 03, 2021, 08:12:05 am »
I bind an event to OnMouseUp for TButton, but when the button be clicked, only OnMouseDown and OnClick be triggered, is it a bug?
Lazarus version: 2.0.6
FPC: 3.0.4
macOS Catalina 10.15.7
«
Last Edit: March 16, 2021, 03:14:06 am by ling
»
Logged
lucamar
Hero Member
Posts: 3779
Re: TButton.OnMouseUp does not trigger
«
Reply #1 on:
March 03, 2021, 08:22:28 am »
If you have properly set up events then yes, it looks like a bug, though it might be OS-specific behaviour; I don't know enough about Macos to even guess.
The "normal" chain of events is:
MouseDown,
MouseUp,
Click
Logged
Turbo Pascal 3 CP/M - Amstrad PCW 8256 (512 KB !!!)
Lazarus/FPC 2.0.8/3.0.4 & 2.0.12/3.2.0 - 32/64 bits on:
(K|L|X)Ubuntu 12..18, Windows XP, 7, 10 and various DOSes.
Handoko
Hero Member
Posts: 4158
My goal: build my own game engine using Lazarus
Re: TButton.OnMouseUp does not trigger
«
Reply #2 on:
March 03, 2021, 08:36:21 am »
It works on my Ubuntu Mate 20.10 Lazarus 2.0.10 GTK2.
I wrote a very simple demo to test it. Download and run my code, if it does not work on your computer, please report it to the bugtracker:
https://bugs.freepascal.org/view_all_bug_page.php?project_id=1
Code: Pascal
[Select]
[+]
[-]
unit
Unit1
;
{$mode objfpc}{$H+}
interface
uses
Classes
,
SysUtils
,
Forms
,
Controls
,
Graphics
,
Dialogs
,
StdCtrls
;
type
{ TForm1 }
TForm1
=
class
(
TForm
)
Button1
:
TButton
;
procedure
Button1MouseDown
(
Sender
:
TObject
;
Button
:
TMouseButton
;
Shift
:
TShiftState
;
X
,
Y
:
Integer
)
;
procedure
Button1MouseUp
(
Sender
:
TObject
;
Button
:
TMouseButton
;
Shift
:
TShiftState
;
X
,
Y
:
Integer
)
;
end
;
var
Form1
:
TForm1
;
implementation
{$R *.lfm}
{ TForm1 }
procedure
TForm1
.
Button1MouseDown
(
Sender
:
TObject
;
Button
:
TMouseButton
;
Shift
:
TShiftState
;
X
,
Y
:
Integer
)
;
begin
Button1
.
Caption
:
=
'MouseDown event triggered'
;
end
;
procedure
TForm1
.
Button1MouseUp
(
Sender
:
TObject
;
Button
:
TMouseButton
;
Shift
:
TShiftState
;
X
,
Y
:
Integer
)
;
begin
Button1
.
Caption
:
=
'MouseUp event triggered'
;
end
;
end
.
Logged
ling
New Member
Posts: 14
Re: TButton.OnMouseUp does not trigger
«
Reply #3 on:
March 03, 2021, 10:07:10 am »
@Handoko Thanks for your demo code. I've tried it, mouse up doesn't trigger.
Logged
trev
Global Moderator
Hero Member
Posts: 1386
Former Delphi 1-7, 10.2 User
Re: TButton.OnMouseUp does not trigger
«
Reply #4 on:
March 03, 2021, 10:15:44 am »
It works in macOS 10.14 with Lazarus trunk and FPC 3.0.4 or 3.2.0 or trunk.
Looks like it was fixed in Lazarus 2.0.8 - the OP needs to upgrade! See
Bug #38099
.
I just confirmed that it works in Lazarus 2.0.10 with FPC 3.2.0.
«
Last Edit: March 03, 2021, 10:35:08 am by trev
»
Logged
Lazarus 2.1 r65019 FPC 3.3.1 r49223 macOS 10.14.6 Xcode 11.3.1
Lazarus 2.1 r65019 FPC 3.3.1 r49223 macOS 11.2.3 aarch64 Xcode 12.4
Lazarus 2.1 r61574 FPC 3.3.1 r42318 FreeBSD 12.1 amd64 VMware VM
Lazarus 2.1 r61574 FPC 3.0.4 Ubuntu 20.04 Parallels VM
Lazarus 2.0.10 FPC 3.2.0 Win10 Parallels VM
ling
New Member
Posts: 14
Re: [SOLVED] TButton.OnMouseUp does not trigger
«
Reply #5 on:
March 16, 2021, 02:42:43 pm »
@trev Thanks,
I updated lazarus and fpc to the latest version, it works fine now.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Installation
»
macOS / Mac OS X
»
[SOLVED] TButton.OnMouseUp does not trigger
TinyPortal
© 2005-2018