Tagged Questions

JComponent is the base class for all Java Swing components except top-level containers.

learn more… | top users | synonyms (1)

12
votes
6answers
8k views

How to create a custom Swing Component

I've always wanted to create custom components in Java, or customize existing ones, but my searches never resulted in anything useful. So I decided to ask the StackOverflow community: Where can I ...
5
votes
1answer
123 views

Is MVC in Swing Thread Safe

I'm trying to touch limits of MVC architecture in Swing, but as I tried everything all (from SwingWorker or Runnable#Thread) are done on EDT my questions: is there some limits or strictly depends ...
5
votes
2answers
697 views

JSplitPane splitting 50% precisely

In Swing, what's the best way to make the JSplitPane to split two jpanels with 50% size each. It looks like if I don't set preferred sizes on the panels it always makes the first panel almost ...
4
votes
7answers
194 views

Swing HTML drawString

I'm trying to create some special component for a specific purpose, on that component I need to draw a HTML string, here's a sample code: public class MyComponent extends JComponent{ public ...
4
votes
2answers
62 views

Display a row of Strings on a JComponent so that the single Strings are selectable/their location getLocation()-able?

In order to be able to display a sentence on a, say, JPanel with a GridLayout(1,0) [i.e., only one line/row] and then be able to draw a syntax tree (or similar) above it, I want to display the ...
4
votes
4answers
93 views

Swing JComponents alignment like form

How to align these JComponents like a Form on center of the Content pane...using Swing panel1.add(l1); panel1.add(c1); panel1.add(l2); panel1.add(c2); ...
4
votes
1answer
71 views

How do I go about implementing a tray that appears on controls?

I have a screen like so: +--------+---------------------+ |___A____| | |________| JComponent I am | |________| drawing on | |________| __ __ | ...
4
votes
1answer
255 views

TitledBorder problem with Substance UI and custom JComponent

I'm using BorderFactory to create a titled border with a Substance UI themed Swing user interface, and I'm coming across the exception shown below. I tried with LineBorder and it works perfectly, but ...
4
votes
4answers
4k views

How do I get the image paint/paintComponent generates?

I have a quick question. How do I get the image generated by a JComponent.paint or paintComponent? I have a JComponent which I use as a 'workspace' and where I have overwritten the paintComponent ...
3
votes
3answers
52 views

What's a convenient way to set default settings for all JComponents

I want a way to set default settings like, background colour, size etc. for all components I use in my GUI, what's a convenient way to do this? so when I do new JButton or JLabel etc. it will already ...
3
votes
2answers
105 views

Graphics2D and JComponent

I have not used Swing/G2D much, so please be patient. I have the following class which is a component on my GUI (meant to be a kind of Canvas to draw on): import javax.swing.*; import java.awt.*; ...
3
votes
1answer
70 views

Interchangeable JComponent skins for JButton

I'm attempting to create a custom JButton that has interchangeable skin components. Using CardLayout as the switching mechanism, I'm having difficulty with the JComponent (i.e. skin component) laying ...
3
votes
1answer
74 views

how to call compoment from another frame

hi i have two frames created in the same way: public class DateFilter extends JFrame { private final JDateChooser dateChooser = new JDateChooser(); private final JDateChooser dateChooser_1 = new ...
3
votes
4answers
85 views

Can I get the right jComponent size before it's shown?

When is the size of the jComponent is calculated? After being shown in the screen or before that? if I send .getSize() message before .setVisible(true), would it give me the right answer? Thanks
3
votes
1answer
76 views

setting components' locale is unsuccessful

I need my application to set programmatically a locale of all the sensitive components, like JTextFields and JTextAreas. Also I have date information (month written as a word) which is ...
3
votes
2answers
285 views

How to get all elements inside a JFrame?

I have this code to get all the elements I need and do some processing. The problem is I need to specify every panel I have to get the elements inside it. for (Component c : ...
3
votes
3answers
126 views

how to use setResizable method here

I am using netbeans as an IDE. how can i set setResizable(false) on JFrame.I dont see the object of JFrame in netbeans.
3
votes
2answers
127 views

Swing : Can children exceed the bounds of their parent?

In Swing, can a child JComponent be rendered outside of the bounds of its parent JComponent, or are children always clipped to the bounds of their parent?
3
votes
3answers
379 views

Java wait for component to be painted

I'm trying to create a program in Java that would display set of images one after another adjusting the size of the frame for each one. I'm extending JPanel to display an image like this: public ...
3
votes
3answers
301 views

Java swing JComponent “size”

I'm doing a project where i need some custom swing components. So far I have made a new button with a series of images (the Java Metal look doesn't fit with my UI at all). Ive implemented ...
2
votes
3answers
48 views

Java. Swing. JComponent's clickable area

I have a custom component displaying *.png image. The image has transparent and non-transparent area. If I add ActionListener(or MouseClickListener) to component, it will raise events even if I click ...
2
votes
2answers
31 views

Aligning JComponents to left- and right-hand sides of a JPanel

I have a JPanel that contains two JComponents, say two JButtons, btnLeft and btnRight. I want these two buttons aligned horizontally and I want btnLeft to be on the left side of the JPanel and ...
2
votes
3answers
35 views

Why can't I validate a JComponent?

From JavaDoc: public void validate() Validates this container and all of its subcomponents. Validating a container means laying out its subcomponents. That is what I want to do. With an as ...
2
votes
3answers
62 views

Get height and width of JComponent in constructor

I want to get the height and width of my JFrame so that a graphic should be at the same relative position even if the window is resized. To do this, I am trying to get the height and width in my ...
2
votes
3answers
66 views

What JComponents to use..?

Till now, I was using VB for developing applications. Now I have to use Java for developing the front-end. I am quite confused with the Components. Need help.. A book reference or site reference would ...
2
votes
1answer
32 views

Reusing of components in Java not properly trimming un-reused ones

I have a javax.swing.JPanel called calcResPanel (using a java.awt.GridLayout with 1 column and indefinite (0) rows) which is to receive and display a set of BHSelectableLabels (which extend ...
2
votes
4answers
83 views

The JPanel contentpane confusion

I am learning Java Swing and I appended a menuBar to the frame. By default this should call jframe.getContentPane().add(child). When I ran the script the menuBar didn't show up. But the button was at ...
2
votes
1answer
88 views

How can I display a countdown timer in a JComponent?

I want to display a countdown timer (which is a JLabel) on the JComponent. I know the timer works but the problem is I can't display it. Could someone help me about this problem?
2
votes
2answers
86 views

Java Font problem

Say I have a Swing JComponent and I set a Font for the text of that JComponent. I build the project and create a .jar file of my project. Now, If I run this jar file from another computer where the ...
2
votes
1answer
44 views

Information about swing components (java)

After learning python (cpython) and using this page to search for tkinter widgets' options, methods and patterns, I've started to develop in jython due to javax.swing module from java which can help ...
2
votes
2answers
114 views

How to make my JComponent conform to JFrame.pack and Layout Managers?

I made a JComponent that displays a rectangle of a specified color. (Haven't found any other way to achieve this effect). Problem is, it doesn't follow JFrame.pack() and Layout Managers as expected. ...
2
votes
4answers
180 views

How to build click through components in Java swing?

I have built a custom component that shows only a line. The line is drawn from the top left corner to the bottom right corner as a Line2D at the paint method. The background is transparent. I extended ...
2
votes
2answers
53 views

Container removes component before it made visible

I am working on a big application with lots of components in it. I am trying to add a comboBox at one place and Container is removing that component before it is visible. I read some where that Java ...
2
votes
2answers
105 views

How to use z axis?

I have a code, which imports a brain image, I wanted to know that can how can I use the third axis, i-e z axis, (far and near axis) so that I can position the image facing upwards,(not facing user) so ...
2
votes
4answers
63 views

Is it possible to make a JComponent default to not-focusable?

I know you can call JComponent.setFocusable(false) to make a Java component not be focusable. But since I have a LOT of components in my application that I want to be that way, I was wondering if ...
2
votes
3answers
128 views

Java - Reusable button action handler concepts question

First off - sorry for the wall of code but it's not too horrendous, just a framework for what I'm trying to explain. It runs without errors. The goal I'm making a reuseable button class for my GUI ...
2
votes
2answers
154 views

Get all swing components in a container

I think we can use jScrollPane.getComponents() to get awt components of a jscrollpane. My question is: is there a way to get swing components of a container some how?
2
votes
1answer
87 views

Remove JPanel with some JComponents from JDialog

if created a JPanel and then added some JComponents with these rules public class MyPanel extends JPanel { myButton = new MyButton() myButton.addXxxListener(...) myButton .... ...
2
votes
6answers
118 views

What's the rule of thumb regarding Swing component extension?

When dedicating a class to a particular Swing component, is it better to extend that particular component, or construct it internally and provide a reference? public class Foo extends JComponent{ } ...
2
votes
1answer
100 views

a java JComponent that can render a Font character in pixels

I am wondering if such a java component even exists, please allow me to elaborate. The component is supposed to be a grid-like component, derived from JComponent. The main face is a grid, and it will ...
2
votes
3answers
216 views

is it possible to have multiple JOptionPane dialogs?

does anyone know how do we have a JOptionPane dialog above another JOptionPane dialog?
2
votes
2answers
417 views

Displaying a JComponent inside a JPanel on a JFrame

I am failing to display a JComponent inside a JPanel on a JFrame. The following does not work. JComponent component = ... panel.add(component, BorderLayout.CENTER); frame.add(panel, ...
2
votes
1answer
212 views

Forcing a JComponent to be square when being resized

I have a JComponent that does custom drawing, and overrides the following methods: public Dimension getPreferredSize() { return new Dimension(imageWidth, imageHeight); } public Dimension ...
2
votes
2answers
337 views

How to keep the highlight border of a JComponent, when custom border is set

I have a JTextField, where I've set some custom properties: nameField.setPreferredSize(new Dimension(275,40)); nameField.setBackground(bgColor); nameField.setForeground(txtColor); ...
2
votes
1answer
1k views

Manually position JComponent inside JPanel

I want to programmatically move my JLabel to a specific location inside my JPanel. I have tried setLocation(int x, int y), but it doesn't work. I am trying to not use any layout manager.
2
votes
3answers
291 views

Help with rendering the Mandelbrot set in Java

I wrote an implementation of the Mandelbrot set in Java using a JComponent but I'm getting strange results when I render it. Besides that everything compiles right. I'm just not for sure what I'm ...
2
votes
3answers
813 views

JFrame that has multiple layers

I have a window that has two layers: a static background and a foreground that contains moving objects. My idea is to draw the background just once (because it's not going to change), so I make the ...
2
votes
1answer
553 views

Custom JComponent not displaying in Custom JPanel

I've tried the add() method but nothing is displayed when I try to add Test to GraphicsTest. How should I be adding it? Can someone show me? I've included the code I'm using. This is my way and it's ...
2
votes
3answers
998 views

Using Java's JComponent repaint()

I'm writing a simple Game of Life program in Java and am having a bit of trouble getting it to animate. I've got a JComponent class called LifeDraw, which displays a grid of pixels, with the following ...
2
votes
2answers
6k views

Java get JPanel Components

I have a JPanel full of JTextFields... for (int i=0; i<maxPoints; i++) { JTextField textField = new JTextField(); points.add(textField); } How do I later get the JTextFields in that ...

1 2 3