Re: [Pharo-users] GTInspector: add view tab for custom object

2015-10-02 Thread Andrei Chis
Hi Mark, There is an initializeView: method that you could you use to create a custom view composite roassal2 title: 'Complexity'; titleIcon: MooseIcons mooseSystemComplexity; initializeView: [ RTMondrian new ]; painting: [ :view :each | "build views" ] Does this help? Cheers, Andrei On Fri,

Re: [Pharo-users] GTInspector: add view tab for custom object

2015-10-02 Thread Mark Rizun
Yes, thanks for help. 2015-10-02 12:03 GMT+03:00 Andrei Chis : > Hi Mark, > > There is an initializeView: method that you could you use to create a > custom view > > composite roassal2 > title: 'Complexity'; > titleIcon: MooseIcons mooseSystemComplexity; >

[Pharo-users] GTInspector: add view tab for custom object

2015-10-02 Thread Mark Rizun
Hi everyone, I would like to extend GTInspector for custom object - add a roassal view tab. I found this kind of code to do this: gtInspectorViewIn: composite composite roassal2 title: 'View'; painting: [ :view | self viewOn: view ] The problem