[Pharo-project] how to get new inspector running in 1.4
is there an easy way to get newinspector running in a 1.4 image? thanks cami
As i already told to Camillo, new inspector needs refactoring for integrating into 1.4 it should not use ToolSet and instead it should register itself as #inspector in tool registry. Smalltalk tools register: NewInspector as: #inspector in its #registerToolsOn: (Note that Inspector also registers itself as #inspector, so, its the order how they are installed will affect which one is used) Maybe we should extend a ToolRegistry protocol to make sure that one tool can override another one, so if you reset a tools, then overrides will be applied in right order. Also , since we removed toolbuilder, a code for building its UI should also rewritten. -- Best regards, Igor Stasenko AKA sig.
yes another todo. May be camillo should give a try and we integrate it. Stef On Jul 13, 2011, at 7:35 PM, Igor Stasenko wrote:
As i already told to Camillo, new inspector needs refactoring for integrating into 1.4 it should not use ToolSet and instead it should register itself as #inspector in tool registry.
Smalltalk tools register: NewInspector as: #inspector
in its #registerToolsOn:
(Note that Inspector also registers itself as #inspector, so, its the order how they are installed will affect which one is used)
Maybe we should extend a ToolRegistry protocol to make sure that one tool can override another one, so if you reset a tools, then overrides will be applied in right order.
Also , since we removed toolbuilder, a code for building its UI should also rewritten.
-- Best regards, Igor Stasenko AKA sig.
participants (3)
-
Camillo Bruni -
Igor Stasenko -
Stéphane Ducasse