Execute action for automatically unchecked button in Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T02:29:52Zhttp://stackoverflow.com/feeds/question/184414http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/184414/execute-action-for-automatically-unchecked-button-in-delphi2Execute action for automatically unchecked button in DelphiPeter Turner2008-10-08T19:17:03Z2008-10-09T03:52:10Z
<p>I have one action I want to perform when a TSpeedButton is pressed and another I want to perform when the same button is "unpressed". I know there's no onunpress event, but is there any easy way for me to get an action to execute when a different button is pressed? </p>
<pre><code>procedure ActionName.ActionNameExecute(Sender: TObject);
begin
PreviousActionName.execute(Sender);
//
end;
</code></pre>
<p>Seems too clunky.</p>
http://stackoverflow.com/questions/184414/execute-action-for-automatically-unchecked-button-in-delphi/184523#1845235Answer by Gamecat for Execute action for automatically unchecked button in DelphiGamecat2008-10-08T19:45:01Z2008-10-08T20:24:14Z<p>There is no unpress, but you can query the Down property.</p>
<p>The example took some dirty casts, but it works both for the action and for the OnClick.</p>
<pre><code>procedure Form1.ActionExecute(Sender: TObject);
var
sb : TSpeedButton;
begin
if Sender is TSpeedButton then
sb := TSpeedButton(Sender)
else if (Sender is TAction) and (TAction(Sender).ActionComponent is TSpeedButton) then
sb := TSpeedButton(TAction(Sender).ActionComponent)
else
sb := nil;
if sb=nil then
DoNormalAction(Sender)
else if sb.Down then
DoDownAction(sb)
else
DoUpAction(sb);
end;
</code></pre>
http://stackoverflow.com/questions/184414/execute-action-for-automatically-unchecked-button-in-delphi/184716#1847165Answer by François for Execute action for automatically unchecked button in DelphiFrançois2008-10-08T20:23:22Z2008-10-08T20:23:22Z<p>From what you describe, I suppose you use your speedbutton with a GroupIndex <>0 but no other buttons in the same group, or at least not working as RadioButtons (AllowAllUp True). </p>
<p>You only have 1 onClick event for pressing the button, but what to do depends on the state of the button if it has a GroupIndex.<br />
So, you have to test for Down being False in your onClick event handler, as Down is updated before the onClick Handler is fired. </p>
<p>ex:</p>
<pre><code>procedure TForm1.SpeedButton1Click(Sender: TObject);
begin
with Sender as TSpeedButton do
begin
if Down then
showmessage('pressing')
else
showmessage('unpressing');
end;
end;
</code></pre>