From: Niki Roo Date: Mon, 30 Dec 2019 16:27:23 +0000 (+0100) Subject: TButton: allow to get/set the action X-Git-Url: http://git.nikiroo.be/?p=nikiroo-utils.git;a=commitdiff_plain;h=0c53bc26dbbdaf520883eea53d2dfa1f1729eaa2 TButton: allow to get/set the action --- diff --git a/TButton.java b/TButton.java index d86fa44..d1d7b39 100644 --- a/TButton.java +++ b/TButton.java @@ -129,6 +129,20 @@ public class TButton extends TWidget { this(parent, text, x, y); this.action = action; } + + /** + * The action to call when the button is pressed. + **/ + public TAction getAction() { + return action; + } + + /** + * The action to call when the button is pressed. + **/ + public void setAction(TAction action) { + this.action = action; + } // ------------------------------------------------------------------------ // Event handlers ---------------------------------------------------------