LabVIEW Idea Exchange

cancel
Showing results for 
Search instead for 
Did you mean: 
Daklu

Extend class representation in project explorer

Status: New

Currently the project explorer window only displays class methods that have explicitly been created.  I propose a view where classes in the PE window display all the valid methods that can be called on that class.  For example, when creating a new ClassB and making it inherit from ClassA, in the project explorer window ClassB is immediately populated with 'shortcuts' to the ClassA methods it can use.  These shortcuts are simply a convenience and help with clarity; they don't have any real representation on disk.  Dragging a shortcut to a block diagram drops the parent method that shortcut refers to.

 

Shortcuts need to be distinguishable from real methods in the PE window, so they should be represented by italics or perhaps a unique icon.  When ClassB overrides the parent method the shortcut is replaced with the overriding vi.  If the parent class has methods that must be overridden the shortcut could be presented in red text or an exclamation point can be laid over the top of the icon in the PE window.  Shortcuts to protected methods should include the protected icon.

 

Classes already contain one "virtual" member--the class .ctl doesn't have a unique representation on disk.  In some ways this is an extension of that idea.  This also opens the door for desired future extensions to LVOOP, such as traits.

14 Comments
Daklu
Active Participant

Ah, I see.  Well, Santa Claus hasn't come through for me yet and Labview still can't read my mind, so I'd say follow the principle of least astonishment and put them in the same place as it puts newly created methods.  You could also create a virtual folder and put all the shortcuts in there.

 

I don't feel strongly one way or the other--regardless of what you do I'll likely want to reorganize them anyway.

tst
Knight of NI Knight of NI
Knight of NI

Dave, can you whip up a quick example which shows such a tree which isn't a mess? It doesn't have to be a full blown project tree, with all the bells and whistles, just a basic tree view. Instictively, I would expect that for any hierarchy of a decent size, this would be inconvient to use, but I'm certainly open to seeing an actual example.


___________________
Try to take over the world!
Daklu
Active Participant

Here's a quick conceptual illustration.  Child class overrides Parent.A with its own implementation, but does not have an implementation for Parent.B.  Parent.B shows up in the child class as a shortcut.  I've used a dimmed icon and italics to identify a shortcut, but the identifiers could be anything really.

 

Obviously in this case the shortcut is unnecessary.  It's just as easy to grab the method from the parent class.  In large projects parents and children are often in completely different locations in the project, making it very inconvenient to get the method you're looking for.

 

undefined

tst
Knight of NI Knight of NI
Knight of NI

The problem with this sample image is that it shows a very simplistic project. I would need to see a more realistic project (one which has multiple items and multiple inherited classes of a decent size).


___________________
Try to take over the world!