Re: [Pharo-dev] GTInspector auto refresh hooks?

2017-08-09 Thread Andrei Chis
On Wed, Aug 9, 2017 at 3:32 PM, Denis Kudriashov wrote: > Actually I found trick: > > composite fastTable > > title: 'Devices'; > display: [ devices ]; > wantsAutomaticRefresh: true; > > *when: GLMPresentationRefreshRequest do: [myModel update].* > > > Event handler can be executed after act

Re: [Pharo-dev] GTInspector auto refresh hooks?

2017-08-09 Thread Denis Kudriashov
Actually I found trick: composite fastTable title: 'Devices'; display: [ devices ]; wantsAutomaticRefresh: true; *when: GLMPresentationRefreshRequest do: [myModel update].* Event handler can be executed after actual view update because announcer do not ensure delivering order. But in that

Re: [Pharo-dev] GTInspector auto refresh hooks?

2017-08-09 Thread Andrei Chis
Hi Denis, The current update mechanism in the inspector is very light, in the sense that it only updates the visual representation of elements and does not recompute them, nor offers any hooks into the update process. Indeed having a way to also recompute the display elements could be useful. We c