Author Topic: Using Yelp as a Help Viewer  (Read 4017 times)

Offline rjmyst3

  • Multiple posting newcomer
  • *
  • Posts: 117
    • wxFormBuilder
Using Yelp as a Help Viewer
« on: March 22, 2007, 01:21:57 am »

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: Using Yelp as a Help Viewer
« Reply #1 on: March 22, 2007, 08:58:03 am »
Very nice :).
Be patient!
This bug will be fixed soon...

Offline Frank3000

  • Multiple posting newcomer
  • *
  • Posts: 17
Re: Using Yelp as a Help Viewer
« Reply #2 on: March 22, 2007, 11:06:39 am »
Thank you !
 :D

On Ubuntu Feisty Fawn and wxWidgets 2.8.1 I had to change
prefix=wx2.8-manual_
to
prefix=wx_
Klingon multitasking systems do not support 'time-sharing'. When a Klingon program wants to run,
it challenges the scheduler in hand-to-hand combat and owns the machine.

Offline Ceniza

  • Developer
  • Lives here!
  • *****
  • Posts: 1441
    • CenizaSOFT
Re: Using Yelp as a Help Viewer
« Reply #3 on: March 22, 2007, 04:58:37 pm »
It's nice to see people are still using the help plugin... specially the most recent features :)

Offline rjmyst3

  • Multiple posting newcomer
  • *
  • Posts: 117
    • wxFormBuilder
Re: Using Yelp as a Help Viewer
« Reply #4 on: March 22, 2007, 05:44:03 pm »
I'm looking for a way to get the same functionality out of the help plugin in linux that I currently enjoy in windows with .chm files.

This yelp script is a good start, but it cannot find functions, only classes.

How difficult would it be for the help plugin to work with the code completion plugin, a little bit?

Here's why I ask:

Right now, if I press F1 when the cursor is over "wxBoxSizer" in the following code, the $(keyword) macro expands to "wxBoxSizer" and everything is good.
Code
wxBoxSizer* sizer;

My wish/feature request is that when I press F1 when the cursor is over "Add" in the following code, that another macro would expand to "wxSizer" in addition to the $(keyword) macro expanding to "Add".
Code
sizer->Add( widget );

This would allow launching a help viewer with the function shown, without having to search for all the possible functions.

It would seem that the help plugin would have to request the name of the class from the code completion plugin.

Perhaps there is a better way . . .

Offline Ceniza

  • Developer
  • Lives here!
  • *****
  • Posts: 1441
    • CenizaSOFT
Re: Using Yelp as a Help Viewer
« Reply #5 on: March 22, 2007, 06:00:17 pm »
The idea sounds good, but the implementation details...

A good result could be an expansion to wxSizer::Add (Add is part of wxSizer, inherited by wxBoxSizer), but I have my doubts about that "cooperation" between both plugins. Of course it's not impossible... but I'm not saying it would be easy either.

Offline rjmyst3

  • Multiple posting newcomer
  • *
  • Posts: 117
    • wxFormBuilder
Re: Using Yelp as a Help Viewer
« Reply #6 on: March 22, 2007, 09:19:51 pm »
Quote
A good result could be an expansion to wxSizer::Add
I'd be very happy with the expansion to wxSizer::Add.

Quote
but I have my doubts about that "cooperation" between both plugins. Of course it's not impossible... but I'm not saying it would be easy either.
One can dream, right?  :)