Tagged Questions

1
vote
2answers
29 views

Swing won’t trigger mouseEntered/mouseExited properly after mouse wheel events?

I have an issue where Swing (in Java 1.6, Windows) doesn't seem to trigger mouseEntered and mouseExited events the way I want it to. I have an application where I wish to have a nu …
0
votes
2answers
26 views

Displaying a list of items with Swing from bottom to top

I need to display items in a list (read-only), but instead of the default top-to-bottom way of displaying a list, I need to display it bottom-to-top. +-----------------+ | …
1
vote
3answers
32 views

Java .getText vs. Hard Coded String not returning the same results

I am completely stumped with this one . . . If I call the function below with the following: Search(SearchTextField.getText()); // (Fiberglass was entered) Search("Fiberglass"); …
1
vote
2answers
38 views

JButton in Java swing

Is there a way to check whether a button is enabled is set to true or false through code?
1
vote
1answer
48 views

How to create an overlay window in Java?

I'm trying to create a HUD style display for a foreign application. To do this, I'd need to make a transparent overlay window, that would be placed on top of the window of the for …
0
votes
4answers
23 views

Java Beans - creating an inspector window

I'm wondering whether there is an existing Java class that, given a Java bean, uses introspection to find all the publicly modifiable fields, and displays them using default Proper …
0
votes
2answers
45 views

JList item : changing the vertical alignement

My application is using a JList to display numerical values. Here is the default display : +-----------------+ |value 1 | |value 2 | |value 3 | | …
0
votes
2answers
31 views

how can i insert a image in swing JList menu?

this is my code: URL imageUrl = status.getUser().getProfileImageURL(); ImageIcon tivitImage = new ImageIcon(imageUrl); listModel.addElement(tivitImage.getImage()); // maybe this …
6
votes
3answers
115 views

How to synchronize Swing model with a rapidly changing “real” model?

As is widely known, anything related to Swing components must be done on the event dispatch thread. This also applies to the models behind the components, such as TableModel. Easy …
0
votes
1answer
51 views

How to make swing components not resizable

Hi, I'm trying to make some components inside a JSrollPane unresizable, because content inside can grow dynamically and I must prevent it from growing over a predefined size. My a …
0
votes
2answers
37 views

Java Problem with the clearselection() method

I have 2 trees in my program. Iam using JTree's clearselection() method to clear the selection in 1 tree when something in the other tree is selected. The main code is something li …
0
votes
1answer
41 views

Java Issue with Tree Selection

In my program, I have 2 JTrees and there is a common treeselection listener for both. The problem happens when I select a node in the first tree and then immediately select a node …
0
votes
2answers
47 views

What’s wrong with this colored JTree? (custom renderer problem)

Hi, I want write custom TreeCellRenderer to have Root, nodes and leafs in different color. This is my code: tree.setCellRenderer(new DefaultTreeCellRenderer() { @Override …
2
votes
1answer
39 views

Really quick and dirty solution for embedding webkit in a Swing UI?

Hi, I am looking for a really quick and dirty solution for embedding webkit in a Swing application. What I am looking for is a way to implement a panel that contains a webkit brow …
1
vote
2answers
38 views

auto abbreviating JLabel

Hi all, Anyone written a JLabel (extension/util/??) that automatically abbreviates the contents depending on it's preferred/visible size? much appreciated.

1 2 3 4 5 85 next
15 30 50 per page