DockHunt

September 29th, 2008 | Tags: ,

Finally, the docking is working great. I am just waiting for the new skin components to get delivered to me so that I can customize the display of the dock panels captions to my liking. What a relief!

Next on the list, importing all the old help file functions descriptions so that I don’t have to re-type them manually.

If things go as planned, I might be able to work on some other neat things, like embedding object codes directly in the generated class definition.

Example:

#class MyClass
  public proc MyFunc (a$)
    ShowMessage(a$);
  end;
#endclass

Instead of:

#class MyClass
#endclass

public proc MyClass.MyFunc(a$)
  ShowMessage(a$);
end;

Tag searching is the next big project I will be working on. You will be able to search for components, properties, events, methods and functions using tags. Very handy. I will post some screen shots later.

No comments yet.
You must be logged in to post a comment.
TOP