Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

60%
+1 −0
Q&A How to find the existing default action for a UI gadget in factor

For a UI gadget like a $link in Factor, a click automatically opens the page that it points to. I want to know where this default behaviour is defined. In the factor documentation, there are many ...

1 answer  ·  posted 1y ago by Razetime‭  ·  last activity 1y ago by Razetime‭

Question factor gui
#2: Nominated for promotion by user avatar Alexei‭ · 2023-01-29T07:39:09Z (about 1 year ago)
#1: Initial revision by user avatar Razetime‭ · 2023-01-26T09:17:16Z (about 1 year ago)
How to find the existing default action for a UI gadget in factor
For a UI gadget like a `$link` in Factor, a click automatically opens the page that it points to. I want to know where this default behaviour is defined.

In the factor documentation, there are many places which I've checked so far:
- [handle-gesture](https://docs.factorcode.org/content/word-handle-gesture,ui.gestures.html)
- [set-gestures](https://docs.factorcode.org/content/word-set-gestures%2Cui.gestures.html)
- [panes](https://docs.factorcode.org/content/article-ui.gadgets.panes.html) and [presentation](https://docs.factorcode.org/content/article-ui.gadgets.presentations.html) gadgets

But I'm unable to find *where* these things are used for the markup elements I want to modify, like `$url` and `$link`. Is there a word or just a way to grep that can help with this, finding gesture hooks for a UI/markup element?