Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
[SOLVED] Components [again]
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
LazPaint (alpha-blending,...
by
lainz
[
Today
at 02:21:33 am]
Is there a way to combine...
by
Leledumbo
[
Today
at 02:17:02 am]
threading question
by
anonymousstranger
[
Today
at 02:15:37 am]
Problem with POST
by
Leledumbo
[
Today
at 01:56:16 am]
FileExists() behaviour ch...
by
lucamar
[
Today
at 01:23:18 am]
Label color
by
lucamar
[
Today
at 01:02:05 am]
How do I get the name of ...
by
Leledumbo
[
Today
at 01:01:48 am]
FPLite?
by
Leledumbo
[
Today
at 01:00:22 am]
HiDPI seems to corrupt my...
by
wp
[
Today
at 12:25:41 am]
request for imagesgrid co...
by
wp
[
Today
at 12:13:58 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Components [again] (Read 369 times)
pcurtis
Sr. Member
Posts: 384
[SOLVED] Components [again]
«
on:
October 30, 2020, 07:43:55 pm »
Hi All,
I know I've asked this before but I can't figure out how to change it.
In the attachment is a simple component. I just want to add a seperate OnClick event for each button.
Any help is greatly appreciated.
«
Last Edit: October 30, 2020, 08:30:47 pm by pcurtis
»
Logged
Windows 10 / Linux Mint 20
Laz 2.10.0
FPC 3.2.0
Handoko
Hero Member
Posts: 4017
My goal: build my own game engine using Lazarus
Re: Components [again]
«
Reply #1 on:
October 30, 2020, 07:58:20 pm »
You should add the properties for
AddClick
,
SaveClick
and
CancelClick
:
Code: Pascal
[Select]
[+]
[-]
TMyButton
=
class
(
TCustomControl
)
private
fbtnADD
:
TBitBtn
;
fbtnSAVE
:
TBitBtn
;
fbtnCANCEL
:
TBitBtn
;
// ...
function
GetAddClick
:
TNotifyEvent
;
procedure
SetAddClick
(
anEvent
:
TNotifyEvent
)
;
function
GetSaveClick
:
TNotifyEvent
;
procedure
SetSaveClick
(
anEvent
:
TNotifyEvent
)
;
function
GetCancelClick
:
TNotifyEvent
;
procedure
SetCancelClick
(
anEvent
:
TNotifyEvent
)
;
//...
published
property
AddClick
:
TNotifyEvent
read
GetAddClick
write
SetAddClick
;
property
SaveClick
:
TNotifyEvent
read
GetSaveClick
write
SetSaveClick
;
property
CancelClick
:
TNotifyEvent
read
GetCancelClick
write
SetCancelClick
;
end
;
And then the code for
setters
and
getters
. The setters and getters are something like this:
Code: Pascal
[Select]
[+]
[-]
function
TMyButton
.
GetAddClick
:
TNotifyEvent
;
begin
Result
:
=
fbtnADD
.
OnClick
;
end
;
procedure
TMyButton
.
SetAddClick
(
anEvent
:
TNotifyEvent
)
;
begin
fbtnADD
.
OnClick
:
=
anEvent
;
end
;
// Add the similar setter and getter for Save and Cancel
// ...
Logged
pcurtis
Sr. Member
Posts: 384
Re: Components [again]
«
Reply #2 on:
October 30, 2020, 08:30:02 pm »
Perfect. Thanks.
Is there a good tutorial on this subject?
Logged
Windows 10 / Linux Mint 20
Laz 2.10.0
FPC 3.2.0
howardpc
Hero Member
Posts: 3611
Re: [SOLVED] Components [again]
«
Reply #3 on:
October 30, 2020, 08:58:08 pm »
In addition to the many online resources available (see the wiki and links) the Lazarus Handbook (see advert on the forum sidebar) has a good chapter about writing components, contributed by wp (it is chapter 11, in Volume 2).
Logged
Sieben
Full Member
Posts: 196
Re: [SOLVED] Components [again]
«
Reply #4 on:
October 30, 2020, 10:31:27 pm »
And studying code... Here's another approach that might be handy if you add more buttons:
Logged
Lazarus 2.0.10, FPC 3.2.0, .deb install on Ubuntu Xenial 32 / Gtk2 / Unity7
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
[SOLVED] Components [again]
TinyPortal
© 2005-2018