Link to home
Start Free TrialLog in
Avatar of gauravflame
gauravflame

asked on

Java Swing

Hi ,

I like to know who to implement the "Help Menu " in the Java Swing.

1) Do java provide help menu API for this purpose ?

2 ) Actually I am looking for "Help Content" submenu which should look like the Firefox Helpcontent Submenu

Thanks

Avatar of valipotor
valipotor

Avatar of gauravflame

ASKER

I really don't want to use "Java Help 2.0 " .

How I can implement in a simple way ..

Any old techniques

Thanks
ASKER CERTIFIED SOLUTION
Avatar of valipotor
valipotor

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi valipoter ,

This is also a good one.

but it has overhead of .html page.

I am looking for something simple way to create "Help Menu" something within the java.

Thanks  

Hi

I don't know any simpler way to achive that.
HTML variant has the advantage that you can find tons of tools in order to design the HTML page, so I sugesst to do that.

Also, maybe some times you would like to deploy the help on a web site, no modifications will be required.

best regards,

valipotor
any expert like to add comments .
Hi

I doubt any other wxpert will see this thread, I sugest you put a pointer question.


Best regards,

valipotor
Thanks Valipotor
Just a thought

I will put all the Help content topic in the Jlist and when I will click any element of Jlist a dialolg will open.
Different Jdialog box for every element of Jlist.

Question : How to implement a JDialog from JList element click event .need Help

THanks
Gaurav

 // Create a list
    String[] items = {"A", "B", "C", "D"};
    JList list = new JList(items);
   
    // Add a listener for mouse clicks
    list.addMouseListener(new MouseAdapter() {
        public void mouseClicked(MouseEvent evt) {
            JList list = (JList)evt.getSource();
            if (evt.getClickCount() == 2) {          // Double-click
                // Get item index
                int index = list.locationToIndex(evt.getPoint());
                HelpDialog helpDialog=new HelpDialog(index);
                helpDialog.setVisible(true);
            }
        }
    });

where
class HelpDialog extends JDialog
{
public HelpDialog(int index)
{
    //store the index
    //initialise the dialog accordingly to the selected element from the list
}

}