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 Relayout call does not work on button click in Factor

I am currently using this code to display a GUI counter: USING: accessors arrays fonts kernel math math.parser ui ui.gadgets ui.gadgets.buttons ui.gadgets.editors ui.gadgets.labels ui.gadgets.pa...

0 answers  ·  posted 1y ago by Razetime‭  ·  edited 1y ago by Razetime‭

Question factor gui
#3: Nominated for promotion by user avatar Alexei‭ · 2023-01-29T07:39:39Z (about 1 year ago)
#2: Post edited by user avatar Razetime‭ · 2023-01-28T10:09:30Z (about 1 year ago)
  • I am currently using this code to display a GUI counter:
  • ```
  • :: counter ( -- )
  • "0" <label> tfont >>font :> lb
  • <shelf> :> s
  • [
  • s 0.5 >>align
  • lb add-gadget
  • "Count" <label> tfont >>font
  • [ drop lb [ dec> 1000 + >dec ] change-text drop s relayout ] <border-button>
  • add-gadget { 26 5 } >>gap
  • "Counter" open-window
  • ] with-ui
  • ;
  • ```
  • The layout was not being resized in order to fit the contents of the label `lb`, which was being updated when the button was clicked.
  • However, even when I call [relayout](https://docs.factorcode.org/content/word-relayout,ui.gadgets.html) on the [shelf gadget](https://docs.factorcode.org/content/word-__lt__shelf__gt__,ui.gadgets.packs.html) `s`, the same still happens.
  • ![Window with text "1600" on the left, overlapped lightly by button displaying "Count" on left](https://software.codidact.com/uploads/6jqgrw5zcjm6yzxyeytix3gosia0)
  • How do I update the layout correctly to accomodate the live changes?
  • I am currently using this code to display a GUI counter:
  • ```
  • USING: accessors arrays fonts kernel math math.parser ui
  • ui.gadgets ui.gadgets.buttons ui.gadgets.editors
  • ui.gadgets.labels ui.gadgets.packs ;
  • IN: 7guis
  • : tfont ( -- font )
  • <font> default-sans-serif-font-name >>name
  • 18 >>size
  • ;
  • :: counter ( -- )
  • "0" <label> tfont >>font :> lb
  • <shelf> :> s
  • [
  • s 0.5 >>align
  • lb add-gadget
  • "Count" <label> tfont >>font
  • [ drop lb [ dec> 1000 + >dec ] change-text drop s relayout ] <border-button>
  • add-gadget { 26 5 } >>gap
  • "Counter" open-window
  • ] with-ui
  • ;
  • ```
  • The layout was not being resized in order to fit the contents of the label `lb`, which was being updated when the button was clicked.
  • However, even when I call [relayout](https://docs.factorcode.org/content/word-relayout,ui.gadgets.html) on the [shelf gadget](https://docs.factorcode.org/content/word-__lt__shelf__gt__,ui.gadgets.packs.html) `s`, the same still happens.
  • ![Window with text "1600" on the left, overlapped lightly by button displaying "Count" on left](https://software.codidact.com/uploads/6jqgrw5zcjm6yzxyeytix3gosia0)
  • How do I update the layout correctly to accomodate the live changes?
#1: Initial revision by user avatar Razetime‭ · 2023-01-28T10:08:52Z (about 1 year ago)
Relayout call does not work on button click in Factor
I am currently using this code to display a GUI counter:
```
:: counter ( -- )
 "0" <label> tfont >>font :> lb
 <shelf> :> s
 [
   s 0.5 >>align
   lb add-gadget
   "Count" <label> tfont >>font
   [ drop lb [ dec> 1000 + >dec ] change-text drop s relayout ] <border-button> 
   add-gadget { 26 5 } >>gap
   "Counter" open-window 
 ] with-ui
;
```

The layout was not being resized in order to fit the contents of the label `lb`, which  was being updated when the button was clicked.

However, even when I call [relayout](https://docs.factorcode.org/content/word-relayout,ui.gadgets.html) on the [shelf gadget](https://docs.factorcode.org/content/word-__lt__shelf__gt__,ui.gadgets.packs.html) `s`, the same still happens.

![Window with text "1600" on the left, overlapped lightly by button displaying "Count" on left](https://software.codidact.com/uploads/6jqgrw5zcjm6yzxyeytix3gosia0)

How do I update the layout correctly to accomodate the live changes?