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

learn more… | top users | synonyms (1)

1
vote
1answer
32 views

JFrame not loading all components unless created by main method inside class

I'm pulling my hair out trying to find out why the following doesn't work in certain cases: public static void main(String[] str) { new Window(new DatabaseManager()); } I run this exact code in ...
1
vote
2answers
36 views

Drawing in JPanel vs JComponent

I need some help understanding why the drawing works differently in JComponent vs JPanel. import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import javax.swing.JComponent; ...
0
votes
1answer
30 views

Prevent characters from KeyListener being added to a string

How to prevent characters from KeyListener being added to a string that won't render properly with Graphics.drawString()? What I am trying to prevent is characters from java.atw.event.KeyListener ...
1
vote
3answers
58 views

Centering a JPanel in a JFrame

I have a JPanel that is used to draw the menu for my game and a JFrame that it is added to, I have to add the menu to the middle of the frame so that it will look just as good on a higher resolution ...
0
votes
2answers
34 views

JAR won't work after adding images

I've written a game that uses PNGs, and when I exported it, the images wouldn't work. I added getClass().getClassLoader().getResource() to everywhere I import an image, but the JAR won't even launch ...
0
votes
2answers
44 views

Changing text on JComponent

I need to change text inside Jcomponents, which are arranged at the coordinates x and y on JPanel. But if I change the text everywhere, except in the TextFields or PasswordFields, the location and ...
0
votes
0answers
35 views

Detecting non-alpha pixels for plotting 2D terrain

Looking for possibly a quick solution to aid in optimizing my workflow. I built a Java based level editor for a mobile game and have a process that takes quite a while: Plotting the terrain for ...
4
votes
1answer
58 views

Trouble Drawing Arcs Between Adjacent Edges of Triangle

I have been trying to write the code for generating random triangles and drawing arcs between the adjacent edges of the trianglefor describing the angle between them. It almost works. But it seems my ...
0
votes
0answers
36 views

Custom JComponent not showing up on JLayeredPane

I'm trying to create a chess interface in Java and I'm using a JLayeredPane to put the pieces on top of my chessboard image. The problem is that the pieces are not added to the layered pane. This is ...
0
votes
1answer
38 views

Stop JComponent from repainting when state changes

I'm sure, this is something like a super stupid standard problem, but I spent hours searching and trying to get this fixed, but it just won't work... I just can't find my mistake here... I'm trying ...
1
vote
1answer
51 views

Drawing a shape by clicking a JButton

I am currently trying to draw a figure by clicking a button. My problems occurs when I click the button and it does not show up in the panel, but I know it's drawing because it runs through the loop. ...
-1
votes
1answer
40 views

JComponent change bar color

I have a problem with my Component in Java. When i set OVF flag to true, Rect should be in Color red (255,0,0), and if i set OVF flag to false, Rect should be in color blue (0,0,255). The problem is ...
0
votes
2answers
56 views

Frozen Java Jcomponent

I've got a problem with my Component in Java. The problem is that in my GUI i can't see any changes of my ovals colors. When the OVF flag is set to false they should be white, and when the flag OVF is ...
0
votes
1answer
41 views

Java JComponent doesn't refresh

I've got problem with my class Component. The problem is that my ovals doesn't changing their colors. The function if is observing OVF flag in class Counter. when OVF=true ovals should be red, and ...
0
votes
1answer
28 views

JColorChooser get components

I'm trying to implement a custom JColorChooser. colorPanel.setLayout(new GridLayout(1,2)); JColorChooser tcc = new JColorChooser(); AbstractColorChooserPanel [] panels = ...
0
votes
2answers
46 views

Java : repaint is undefined in class

I am new on java. I want to create an abstract factory in java. I have a class point and I want to extend other classes ( circle, rectangle ) from this. Here is my code. It says repaint is ...
1
vote
1answer
30 views

Java Adding JScrollPane to JComponent

Java: I have a JComponent that draws an image which can be rescaled. I need to have scroll bars that will appear when the image becomes large. I passed the JComponent to a JScrollPane and then added ...
0
votes
0answers
28 views

Can't clear a JFrame from an inner class

I'm doing homework, and after a few hours, I'm stumped. The assignment is to make a window that holds a textfield and button, and when you enter an integer and press the button, that entered number of ...
0
votes
1answer
34 views

How to fit the rectangle in the frame proportionally?

Try to draw a rectangle with different size, How to fit it in one frame proportionally(assume the frame is fixed)? public class Draw extends JComponent { public void paint(Graphics g) { ...
3
votes
1answer
49 views

Setting JButton Icon

I want a JButton to have an icon on it. So far I have this. ImageIcon ii = new ImageIcon("Button.png"); width = ii.getIconWidth(); height = ii.getIconHeight(); Toolkit tk = ...
-1
votes
1answer
60 views

painting multiple images to a jpanel

I'm having an issue with drawing multiple images from objects on to a custom JPanel. I've been able to successfully paint one image representation of an object on the JPanel. Adding more objects ...
0
votes
1answer
22 views

How do I make the part that I'm not using of a simple JComponent transparent, so that when add it to a JFrame it does not cover other components?

I'm having problems adding 2 simple components to a JFrame. The problem is, the second component completely covers the first component even though each only contains a small shape located differently ...
0
votes
1answer
47 views

null pointer exception in graphics of component

I have DrawOutput class, which extends JComponent. this.getGraphics whic I pass to paint is null here. How can I get Grapics of this class? public class DrawOutput extends JComponent { Here is ...
0
votes
1answer
30 views

Inheritence paint clipping

I am trying to create an object that looks like this- http://www.cs.uwlax.edu/~riley/CS120S13/Assignments/Assignment11.pdf The face at the top of the page is my desired result. What I did was I was ...
1
vote
2answers
48 views

How to install Joomla 2.5 component by copying the files without using the J install manager

When installing custom component on a Joomla 2.5 everything works well. If I just copy and paste the content of the component in the appropriate folder /components/com_mycomponent without installing ...
2
votes
1answer
80 views

Creating and overriding a shape to fit into JPanel?

In this program a polygon is created to show up into a JPanel tab. In-order to make it show I had to over-ride the shape and create a setter method for it. Unfortunately it is not showing and the ...
0
votes
0answers
54 views

Create rectangle from user input

I have a program which so far takes a user input, puts it into an array and prints into a TextArea. However, I also need it to create a bar chart like set up, where the user will input "1" in the day ...
1
vote
0answers
179 views

Open source java browser component for swing suggestion

I am looking for an open source browser component like the ones in DJ Project (http://djproject.sourceforge.net/ns/index.html) for SWING. I tried using DJ Project (which I learned about from Best ...
0
votes
2answers
54 views

JComponent does not appear in JApplet

I've successfully built a JComponent pie chart which resides in it's own separate class IAPieChart.java. The PieChart logic is in a static inner class that extends JComponent. The JApplet itself ...
0
votes
1answer
43 views

JLabel that follows movement of JSlider knob

I'm trying to create a JSlider where instead of the major tick labels being displayed all the time, a single label is displayed which follows the JSlider knob and displays the value which the knob is ...
0
votes
2answers
108 views

drawLine component with setBounds

I have a problem that I can't seem to fix with my Java code. I've created a program that shows a map, when u click on the map, u get a edge/node dotted out on the map.. When I connect two nodes with ...
0
votes
0answers
37 views

Having trouble with the paintingComponent in Java

New to Java. Doing a project which requires me to display my Actors on a stage using the JFrame. Still really new to this so i'm not really sure what i'm doing. I know you can't directly paint ...
1
vote
2answers
129 views

Java JTextArea, JLabel, and other Components: How to set Location

If I have a JLabel, for example, and I call the setLocation() method, nothing happens. Same with all the other JComponents. How can I specify the location? It would be nice to be able to move these ...
-1
votes
1answer
62 views

How can I get all the components of a panel in Java Swing?

How can I get all the components of a panel in Java Swing? Is there any method like foreach in C# to deal all the child components of a JPanel?
0
votes
1answer
57 views

Java Components Inherit LnF

I've made a JComponent child from scratch and made basic- and metal-based look and feels for it. Even if I'm using the metal theme for the entire application, I still have to call setUI on the object ...
0
votes
1answer
162 views

JFrame - mouse click using JComponent and MouseListener

Having 2 classes - public class MainClass { public static void main(String[] args) { JFrame frame = new JFrame(); .... Component mouseClick = new MyComponent() ; ...
2
votes
2answers
183 views

Get a component from a JTextPane through javax.swing.text.Element?

I am using a JTextPane to display characters and symbols, where the latter are represented by custom painted JComponents. For example, the text pane might show something like this: The text pane is ...
0
votes
1answer
109 views

Custom JComponent(s) refuse to paint (if added to an ArrayList)

here's the relevant code from the form where JComponents should be drawn - this code creates and adds to the form a JComponent and also adds it to an ArrayList, as I need to be able to destroy the ...
1
vote
2answers
99 views

How to paint JComponent in JComponent?

I have strange problem with JComponent. I am trying to create my own JComponent and so I need to compose my JComponents together. I wanted to paint JButton in my JComponent JDial: public class JDial ...
3
votes
2answers
102 views

How to get the painted size of a Swing component?

When I add Swing component (like a JButton) to a JPanel, it renders with it's 'preferred size'. However, the preferred size is actually larger than the painted button. There appears to be an ...
0
votes
2answers
144 views

requestFocusInWindow(boolean) has protected access in JComponent?

I'm trying to build the GUI for a program assignment that essentially has 2 buttons on top start on the left and resume on the right and the the panel sits on the bottom. but it telling me: ...
-1
votes
1answer
96 views

Java JComponent lag on resize

Can anyone give insight as to why a JPanel that is drawing simple shapes such as rectangles, in small quantity, could lag noticeably when resizing the frame? I think that by adding an event for ...
0
votes
1answer
61 views

swing Jform creating

Here is my code the problem is that i can't find why one extra form is create public void actionPerformed(ActionEvent ae){ submitBtn.setForeground(Color.red); ...
1
vote
0answers
59 views

How to verify the JComponents

public void actionPerformed(ActionEvent ae){ String userName = userNameTxt.getText(); char[] pass = password.getPassword(); } I want to validate the above fields( its username and password) ...
0
votes
0answers
125 views

Custom Java Component Not Drawn Correctly

I have a custom button that is not being drawn properly. It shows up as a dot in the upper left hand corner. I have three classes. One for the button, one for the menu or drawing of several buttons ...
0
votes
1answer
38 views

JComponent showing full size or not showing at all

I have the following code: package gui; import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import ...
0
votes
1answer
41 views

JComponent not registering

So I have the following class. I have over-simplified the code, as putting 500+ lines of code is not an option. It is basically a very fancy square: public class ModuleGui extends JComponent ...
0
votes
0answers
107 views

Trigger MouseListener when pressing on my JComponent, even if it is transformed by an AffineTransform

I am trying to add a MouseListener to my custom JComponent. I just want the MouseListener to be triggered when pressing withing the bounds of the circle (the JComponent's painting method draws a ...
0
votes
0answers
67 views

Set size of JComponent issue

Well, I have been working on this project for quite a while now and I am finally to the UI, I now have encountered a problem... private class Win8ScriptButton extends JComponent { public ...
0
votes
1answer
124 views

Paint Like JComponent Drawing Pad

I have a class Pad_Draw extending JComponent. Constructor is public Pad_Draw() { this.setDoubleBuffered(true); this.setLayout(null); }; The paintComponent methpod is : public void ...

1 2 3 4 5 7