TripleClick and higher counts #125
-
|
Is there already a way to implement detecting a TripleClick or other rapid-fire multi-clicks? I was using a different library that provided a multi-click thing that would tell you how many clicks had happened (with the same sort of timing considerations as for AceButton DoubleClick). I used that to implement an infrequent UI item. I ran into other limitations in that other library and came back to AceButton. I'm wondering if I can salvage my TripleClick user experience in some reasonable way. I'm already using SingleClick and DoubleClick on that button for different things. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Ah, I see this comment in ButtonConfig.h: So, my hopes for TripleClick are raised. I'm still working through things to see if I can figure out how to realize it in some combination of AceButton and application code. |
Beta Was this translation helpful? Give feedback.
-
|
Fair enough. (In the meantime, I have taken a different approach.) |
Beta Was this translation helpful? Give feedback.
I don't have plans to implement a
TripleClickedevent, because:You are welcome to implement it yourself, since you have the source code. You will have to add an additional delay parameter (e.g.
kTripleClickDelay = 400), and add somekFeatureSuppressXxxflags,…