Tagged Questions
0
votes
1answer
89 views
Java tooltip with image in JAR file
I'm using JFreeChart where I customized the chart's tooltip by implementing the XYToolTipGenerator interface.
As the generateToolTip() method is supposed to return a String, here is what I did to show ...
0
votes
1answer
48 views
Tool tip registeration
What is the meaning of this sentence.
ToolTipManager.sharedInstance().registerComponent(jTree);
Can we register super component also by using given statement so that we don't need to register all ...
0
votes
1answer
76 views
Java input dialog tooltip and pasting option?
Is there a nice way in Java to set a tooltip for the input dialog's textfield?
For example:
String input = JOptionPane.showInputDialog("Enter input:");
Is it also possible to have a right click ...
1
vote
2answers
56 views
Is there a way to show a popup like a “cloud” when you passed your mouse over a textfield in Java?
I'm looking for a way to display a baloon tip when i mouse-over a textfield in Java, for example to guide the user in the way to put some specific data: ID: 0-0000-000 or something like that...
Is ...
0
votes
0answers
42 views
JFreeChart tooltip position
I'm encountering the following issue with a JFreeChart XYLineChart: when hovering the mouse on a datapoint in the bottom right corner of the screen, the tooltip hides the chart's datapoint (i.e. it ...
0
votes
0answers
49 views
Overriding a tooltip
Well as the title says, I want to create my own tooltip with it's own look and feel, the thing is, where should I begging? I've created a class extending JToolTip, and another extending from ToolTipUI ...
0
votes
0answers
57 views
Install custom ToolTipManager
I would like to extend the ToolTipManager to have a custom look and behavior.
Two problems:
To extend the class I have to create the child in the same package
(the constuctor of ToolTipManager has ...
0
votes
2answers
107 views
Hovering over JButtons and displaying a message
I want to hover over a number of JButtons on my GUI (map) and display the name of that location e.g. Manchester and London. I have the code working for one button, but it does not work for more than ...
2
votes
1answer
107 views
JLabel ToolTip interferes with MouseListener
I have Java Swing application ToolTipMouseTest
The critical line is label.setToolTipText("label" + i);. Once it is commented out very click on a label produces 2 mousePressed in console. With this ...
2
votes
1answer
117 views
Tooltip for a JMenuItem
I add a menu to a toolbar like this :
JMenuBar menu = new JMenuBar();
JMenu actions = new JMenu("Aktionen");
Icon menuIcon = ImageUtilities.loadImageIcon("pathToIcon", true);
...
1
vote
2answers
138 views
JLabel tooltiptext not showing
I expected this to be very simple and straightforward, but tooltiptext is not showing upon hovering the mouse over. I tried printing the text and it prints correctly. Any comments what I'm doing ...
1
vote
2answers
299 views
JButton show tooltip programically: actionMap.get(“postTip”) is null
I need to programically show tooltip for my button2 when it gets focus. (I press Tab as intially focus at button1)
JButton button = new JButton("Button 1");
JButton button2 = ...
4
votes
3answers
98 views
How do I change the color of the tooltip for only one component?
How do I change the color of the tooltip for only one component?
I know you can do the following for changing tooltip colors:
UIManager.put("ToolTip.background", new ColorUIResource(255, 247, ...
1
vote
2answers
420 views
Setting a tooltip for a value from JComboBox's Items as CellEditor in JTable
I would like to set a tooltip value for the values in a custom combo box. Basically, my combobox contains a list of initials of people - when they hover over i want it to display the fullname of the ...
0
votes
2answers
576 views
How to add tooltip on JTable to show cell values of a particular column on mouseover event [duplicate]
Possible Duplicate:
How to add tooltips to JTable’s rows
I want to add tooltip for the user mouseover event on a cell under a given particular column so that the value of the cell ...
0
votes
1answer
93 views
Partial data displayed and rest by tooltip using JTextPane
I just wanted a code where I can display partial text and the remaining text by the tool tip using 'JTextPane'.
Eg: If text is 'Java is re useable'. I want it to display 'Java is ...'
Then I want to ...
1
vote
1answer
202 views
java.net BalloonTip is not showing up
I saw the BallonTip at java.net and I tried to integrate it into my application to be displayed when a user clicks a table cell. When a table cell is clicked, the BalloonTip is showing up as intended, ...
2
votes
2answers
147 views
JTree with a mousemotionlistener
I have a JTree and I want to show some description to the user when he hovers his mouse over the tree nodes.
I read from documentation that we can use the MouseMotionListener for this. But how can I ...
2
votes
1answer
334 views
Dynamically update tooltip currently displayed
I'm trying to got a tooltip which displays the current progress of a task. So I want that the tooltip text change while the tooltip is displayed. But, when I call setToolTipText() the displayed text ...
2
votes
3answers
361 views
java swing tool tip with different messages
Is there any way in java swing to show tool tip with different messages, actually I am working on an application in which i have to update application's current status on the tool tip in the system ...
2
votes
4answers
397 views
Adding text next to a textfield to describe what data the user is expected to enter into it
I am trying to create a simple GUI that simulates a record store. I am still in the beginning stages.
I am running into trouble when I try to add text to describe what the user is expected to enter ...
3
votes
3answers
154 views
Best way to implement a selection box from a large number of entries
I have a large set of data from which the user has to select one. I'm thinking of a way to implement it (of course, in a GUI). I have a few ideas. But just thought of posting here as there may be ...
1
vote
2answers
1k views
Create info panel on mouseover in JTable? Tooltip might not be sufficient
I want to display an info box on mousing over a JTable cell using Java Swing, so there are multi-parts
How can I capture the mouse-over event in a table cell? I have to be able to set the cell ...
1
vote
1answer
234 views
How do I change the tooltip look and feel to the system's?
I have added the line to set look and feel to system. This is found to work because the scroll bars have changed.
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
But when I set ...
0
votes
2answers
197 views
Adding multiple icons with separate tooltips in JTable
I need to show multiple icons in a single column in JTable. I am using an modified Icon implementation.
Class IconCollection implements Icon {
Icon[] icons
}
Since it implements Icon interface ...
2
votes
1answer
353 views
Java/Swing - Tooltip rectangle
I'm currently developing a java/swing project, and i'm stuck in the customization process.
I've extended JToolTip and overrided the paint() method to draw my own tooltip, but i can't manage to remove ...
0
votes
1answer
159 views
Tooltip below caret position in JTextArea
I'm trying to display a tooltip below caret position, the same way Eclipse prompts "Enter new name, press Enter to refactor" when renaming local variable. I assume that I can't use ToolTip as they are ...
2
votes
1answer
382 views
How do I make a Windows 7 Tooltip in Java
I've been looking everywhere online but I have found no answers to this little problem. In Windows 7 (and in Vista, I think,) you have a nice rounded silver looking tooltip that looks way better than ...
1
vote
3answers
1k views
ToolTipManager in Java
I am implementing a MVC and i want to have a JToolTip on a JLabel in my view. I succeeded but now i want to set the dismiss and initial timer.
I read the Javadoc for JToolTip and TollTipManager. I ...
2
votes
2answers
411 views
JTree node's changable tooltip
I have a JTree populated with some (custom) nodes. I have a class that's subclass of DefaultTreeCellRenderer and using that "MyTreeCellRenderer" i can set tooltips for each node in my tree. It works ...
1
vote
0answers
142 views
Swing tooltip resizable
I've tried to implement a resizeable tooltip but have some problems with this.
When the tooltip is shown, the text updates on change in the model (implemented with property change listener). What I ...
1
vote
2answers
201 views
What happens when activating a Java Swing tooltip?
I have created an on the fly search field in Java Swing. I have a JTextField where you enter what to search for, and a JList inside a JScrollPane that contains the matches on your input. When you ...
3
votes
3answers
430 views
How to get tooltip text string width in Java Swing?
I have the following lines to get a tooltip text for a JList item :
JList aList=new JList(aData)
{
public String getToolTipText(MouseEvent evt) // This method is called as the cursor moves within ...
6
votes
1answer
623 views
How to show autocomplete as I type in JTextArea?
I need to show suggestions (autocomplete) as the user types in a JTextArea, kind of like cell phone T9.
I don't know how to do this in myTextAreaKeyTyped() event.
This app is a typing helper. It ...
1
vote
1answer
794 views
Tool tip in JPanel in JTable not working
I have a JTable. One column holds a JPanel which contains some JLabels with ImageIcons. I have created a custom cell render and all works fine apart from the tool tip on the JLabel. When I mouse over ...
0
votes
1answer
144 views
How to set a CSS to be used by all jtooltips in my Java application?
Is there a way to define a global stylesheet that is used for all my JToolTips throughout my application? If not, how can I define a stylesheet for a tooltip for a single component of which I only ...
0
votes
1answer
1k views
Java Swing: Showing tool tip in JTable based on text under mouse pointer
I have a JTable where I display some string data formatted using html. I need to show a tool tip based on the text under the mouse pointer
On mouse over "Line1" and "Line2" I need to show different ...
1
vote
2answers
1k views
Overriding createToolTip() in a custom CellRenderer
I'm trying to get a custom ToolTip for a specific column of a JTable. I've already created a CellRenderer (of which I've been changing other cell-specific attributes successfully):
private class ...
2
votes
3answers
358 views
ToolTip for own drawings
my java application contains a JPanel on which I draw certain shapes. Now I would like to label these shapes with some kind of tooltips.
Therefore I tried to create my own "Tooltips" by using the ...
3
votes
2answers
855 views
Make all tooltips multiline in Java (Swing)
Tooltips in my application can be quite long, therefore I'd like them to have line breaks.
I don't want to use html as I'd prefer to set a (max) width of my tooltips instead and have the line breaks ...
1
vote
1answer
151 views
How can I insert multiple tooltips at different caret positions in a JTextcomponent?
I'm currently working on a project that requires the user to annotate (or comment) text inside a text component. The user would double click somewhere in the text and a tooltip would appear at that ...
0
votes
2answers
417 views
Show a popup menu when a mouse cursor in a cell of JTable
I need such behaviour: When is a mouse cursor pointing to a JTable cell - will need show pop up menu or something like that. Without clicking of the mouse on the cell. Any suggestions?
Thanks.
8
votes
5answers
2k views
Custom Java tool tip with Swing components as content does not show up
I'm trying to show multiple images in a component's tooltip, found createToolTip() and implemented a custom that adds the needed components like this:
setComponent(component);
JPanel images = new ...
0
votes
2answers
1k views
How to add a tooltip to a cell in a jtable?
I have a table where each row represents a picture. In the column Path I store its absolute path. The string being kinda long, I would like that when I hover the mouse over the specific cell, a ...
1
vote
1answer
86 views
Related to PopUp frame
I have created popup frame,which is visible when mouse pointer is placed on button.But the popup frame is getting displayed at top-left corner of the screen.How can i get popup in the form of tooltip ...
2
votes
2answers
1k views
Tooltip in swing
I made to tool tip for comportment in swing using some html tags
_graph.setToolTipText("<html><div style=\"width: 300px; height: 100px;"
+ " overflow: auto; border: 0;<p ...
1
vote
0answers
164 views
Tooltip behavior that treats a JComponent with subcomponents as a whole? (sans flicker)
I have a JComponent with several subcomponents, and I'd like it to have a tooltip that treats the component as a whole.
For instance, if you look at this solution to a similar question, the tooltip ...
0
votes
2answers
290 views
Why is ToolTipManager.sharedInstance.registerComponent(tree) is not done automatically ?
i am new on this site and please correct me if the way i am asking is wrong.
As the question above, why ToolTipManager.sharedInstance.registerComponent(tree) does not done automatically in the Swing? ...
2
votes
2answers
3k views
How to add tooltips to JTable's rows
how can I add tooltips to JTable's rows (Java Swing)?
These tooltips should contain same values of the relative row.
This is the code I used in my class that extends JTable. It overrides the method ...
1
vote
2answers
829 views
Swing shows empty tooltips, how to disable this?
I'm creating a java Swing app and I'm new to that.
The problem is that when I move cursor to menu item, for example, it shows me an empty tooltip.
Is there any way to disable this?
P.S. Using ...


