Tagged Questions

A JButton is a common button in Java Swing.

learn more… | top users | synonyms

10
votes
1answer
2k views

Swing JButton: Icon above Text

How can I create a JButton in Swing with the icon above the text?
8
votes
4answers
3k views

Is it possible to include JButton in a JTable?

I have a JTable that stores the results of a database query, so far so good. What I want is for the last column in each table to have a clickible JButton that will open the edit screen for the object ...
8
votes
5answers
7k views

How do I assign Enter as the trigger key of all JButtons in my Java application?

I'm writing a Java Swing application using the Metal look-and-feel. Every time there is a JButton in my application the user uses the Tab key to move the focus to the button and then hits the Enter ...
6
votes
6answers
626 views

Creating custom JButton from images containing transparent pixels

Read edit 2 for what I'm actually missing to make it work I'm currently trying to create some custom JButtons using images created in photoshop that have an alpha parameter. So far, overriding the ...
6
votes
4answers
1k views

Draw a JButton to look like a JLabel (or at least without the button edge?)

I've got a JButton that for various reasons I want to act like a button, but look like a JLabel. It doesn't actually have to be a JLabel under the hood, I just don't want the raised button edge to ...
6
votes
4answers
3k views

How to create a JButton with a menu?

I want to create a Toolbar for my application. If you click a button on that toolbar , it will pop-up a menu , just like the toolbar of eclipse. I don't know how to do it in Swing. Can someone help ...
5
votes
1answer
301 views

Change JButton gradient color, but only for one button, not all

I want to change JButton gradient color, i found this, http://java2everyone.blogspot.com/2009/01/set-jbutton-gradient-color.html, but i want to change gradient for only one button, not all button
5
votes
3answers
390 views

Java App - Add, Delete, Reorder elements of the JButtons

I'm developping a Java application. I created this interface with MockupScreens. Please look at these pictures. At first time, there's only one element, the user have to enter informations ...
5
votes
8answers
2k views

Right click on JButton

I am trying to write a Minesweeper clone in Java for fun. I have a grid of JButtons whose labels I will change to represent the danger count, flags, etc. My problem is, I don't know how to get a ...
4
votes
2answers
67 views

Floating JButton in left corner

I have a huge JPanel so it is scrollable. In this JPanel I have JButton at the right corner. When I want to push it I always need to scroll here. Is it possible to have floating JButton at the right ...
4
votes
3answers
185 views

Change state of toggle button from another button

I'm creating a Java GUI using Swing with Eclipse and Window Builder Pro. I'm using JButtons and JToggleButtons. I want to change toggle button's state from another button. For example, when I click ...
4
votes
3answers
199 views

How do I control the centering of JButton HTML text in NetBeans?

I'm trying to put a two-line piece of text on a JButton; e.g. +----------+ | READER | | STOP | +----------+ But I'm having trouble getting it centered on the button. I go to the Property ...
4
votes
3answers
99 views

How to dynamically assig keys to buttons?

I have a section in my GUI that is generated dynamically according to a list of objects. So, for each object in that list I want to create a JButton and associate a keyboard shortcut. For example: ...
4
votes
2answers
246 views

Java subclass of JButton overriding setEnabled method problem

I have a custom button class called ImageButton that extends JButton. In it i have a setEnabled method that I want to be called rather than the JButton's setEnabled method. My code is below. In my ...
4
votes
3answers
413 views

how can i put a JButton on an image?

I am trying to fix a JFrame where there will be a background image and on the image JButtons which will do some commands. I try to do it without layout because i want to put small buttons in some ...
4
votes
3answers
2k views

Creating Custom Button in Java

I am trying to create a button that is a custom shape (hexagon), but otherwise acts like a normal JButton would (i.e. works with an ActionListener). I have created a class that extends ...
4
votes
5answers
1k views

How to make a JButton in a JTable cell click-able?

I have a JTable with a custom cell renderer. The cell is a JPanel that contains a JTextField and a JButton. The JTextField contains an integer, and when the user clicks on the JButton the integer ...
4
votes
1answer
702 views

JTable with a “close” button in the column header

I am trying to create a table with custom column headers. I want the column headers to include a button that users can click on. The function of the button will be to remove the column from the ...
4
votes
5answers
457 views

Java: using an image as a button

I would like to use an image as a button in Java, and I tried to do this: BufferedImage buttonIcon = ImageIO.read(new File("buttonIconPath")); button = new JButton(new ImageIcon(buttonIcon)); But ...
4
votes
3answers
2k views

Java set focus on jbutton when pressing enter

How can I make it so that when I press enter in a JTextField it activates a specific JButton? What I mean is something along the lines of a web page form where you can press enter to activate the ...
4
votes
4answers
1k views

How do I programatically send ActionEvent to JButton?

How do I programatically send an ActionEvent (eg button pressed/ACTION_PERFORMED) to a JButton? I know of: button.doClick(0); and button.getModel().setArmed(true); ...
4
votes
2answers
370 views

Rotate JButton's text

I want my JButton to rotate its text (not the whole button) a bit when it's hovered. How do I do that?
4
votes
2answers
3k views

Transparent JButton

Is it possible to make a JButton transparent (including the border) but not the text? I extend swing's JButton and override this: @Override public void paint(Graphics g) { Graphics2D g2 = ...
4
votes
6answers
527 views

Create an inspecting properties window, button driven as a JDialog

What I asked originally didn't clearly state my question/problem, so I will explain it better. I have a JButton that sets a JDialog to visible. The JDialog has a WindowListener that sets it to NOT ...
4
votes
2answers
2k views

resizing a ImageIcon in a JButton

I am creating a JButton which includes a specific ImageIcon. The main issue is that the original icon size is much bigger than the button size. As result when the button is displayed, only part of the ...
4
votes
3answers
6k views

make a button round

im trying to make a JButton round at the (x,y) corrds of (150,210). i want the button to be an oval of the size (40,40). and the buttons background color red. it doesnt need text so i should get a ...
3
votes
3answers
72 views

Displaying a Button at particular co-ordinates

How to display Button or a JButton at a particular coordinates say (x,y) of a window ?
3
votes
3answers
47 views

How to restrict JButton to change it's dimensions as a result of revalidation

I have a panel (with GridLayout(0,1)) embedded on JFrame. As per my requirement :- I am adding (JButton,JTextArea) in pairs on above declared panel. Now, on click of JButton of any pair, it's ...
3
votes
3answers
94 views

JOptionPane with multiple buttons on each line?

How would I go about displaying a JOptionPane.showinputDialog() with multiple JButtons on each line? I am not talking about the Yes, No, Cancel buttons but multiple custom labeled JButtons that ...
3
votes
3answers
63 views

Java - having buttons displaying arrows

I would like to have a buttons in Java which shows the arrows - like on the keyboard. So far I have this JButton arrowUp = new JButton("^"); JButton arrowDown = new JButton("v"); JButton arrowLeft = ...
3
votes
3answers
176 views

Auto-resizing JButton Icon

so I have this JButtons to which I add Icons. The Icons are too large initially, so I resize them beforehand, and it works fine. Except that when I resize the window, the JButtons change size, but not ...
3
votes
5answers
187 views

JButton's action called on a focusLost event. How is it possible?

One of our customer reported an exception in our application. The problem is, I am completely unable to understand how this bug can be reproduced. Here is the code : btn.addActionListener(new ...
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
2answers
49 views

How to actually select a JButton

This will be a really theoretical question, just bear with me a bit. I need to do something with my JButtons, and I have no idea where to start. So what I need is to be able to click on a JButton, ...
3
votes
2answers
77 views

JButton and JField labels/text?

I have a JButton that I would like to fill in with text that would spread in two lines, however, when I type in the test and use "\n" or "\r" I still get the text on one line. This is the case with ...
3
votes
1answer
40 views

Activating a JButton via keyboard

I have a JDialog with two buttons: an OK button and a Cancel button. I would like the Cancel button to be activated by pressing Esc and an OK to be activated by pressing Return. Can someone give me ...
3
votes
2answers
57 views

JRadioButton that looks like JButton

I'm trying to create a feature similar to that of Geogebra's toolbar: it has buttons that select tools, so only one can be selected at a time, but they don't look like radio buttons (a dot, with an ...
3
votes
3answers
97 views

Make 2 JButtons Equal in size

I have two JButtons with texts "Ok" and "Cancel". I am using GridBagLayout to align them in a JDialog. I have set the anchor to GridBagConstraints.CENTER. Due to the difference in the number of ...
3
votes
2answers
122 views

How can I set the size of JButton in an Applet?

I have an applet and I want to add a jbutton. The problem is the button is too big, I already used the setSize() method but still it doesn't work. Perhaps the setting of setSize could might be wrong. ...
3
votes
3answers
110 views

JButton Transparency on an BufferedImage

I have a Problem: I'm rendering a BufferedImage in a JFrame. Then i add a JButton to the same frame. when i try to make the button transparent, the button becomes transparent, but disregarding its ...
3
votes
1answer
111 views

Java: I can't change the background of JButton

Greeting everyone. I've working a java program. I want to change the background of a JButton,However I can't change it. When the function is over, the color doesn't change a little.Here is my Code: ...
3
votes
1answer
234 views

java jbutton image png clickable area

I want to do a JButton with PNG icon but the clickable area have to be a pixel and not a transparency pixel, and position this JButton over other JButtons like position absolute in css. thanks in ...
3
votes
6answers
214 views

JButton problem

I've made a JButton array, which represent cards, there are 16 of them, 4 by 4. How can I browse among the JButton with the arrows on keyboard instead of the mouse, and how can I "click" on JButton by ...
3
votes
0answers
40 views

How do I go about putting a JButton in the chrome of a JFrame? [closed]

Possible Duplicate: How can I customize the title bar on JFrame? Firefox 4 introduced a button that is flush to the edge of its frame. Opera has had such a button for some time, as has ...
3
votes
5answers
179 views

How to disable a JButton on certain clause?

I am making a small project, and in it I have a JFrame with 5 JButtons. 3 JButtons are of primary concern and are enabled by default. What I want is until and unless any of those 3 JButtons are ...
3
votes
1answer
82 views

Where is the best place to register listeners to JButtons created from arrays?

I'm creating some JButtons from a String array for a menu. Those buttons are created in a class that extends JButton. On creation, the buttons call a method to create some children buttons (if the ...
3
votes
4answers
433 views

How to set the button color of a JButton (not background color)

I have a JButton that I would like to change the background color of to white. When using the Metal Look And Feel, I achieve the desired effect with setBackground: Unfortunately, the concept of ...
3
votes
4answers
158 views

Swing - calling events from inside panel

I have simple Swing GUI with main window JFrame and its main panel derive from JPanel. The panel has some buttons that can be clicked and generate events. I want these events affect data stored in ...
3
votes
2answers
296 views

JButton “stay pressed” after click in Java Applet

I have a JButton in my Java Applet. After pressing it, ActionListener have to make huge amount of actions. So, because of it, when user clicks the button, it "stay pressed" for a while (sometimes even ...
3
votes
2answers
505 views

Transparent JButton still painting its background

I have a translucent JPanel. I have created a custom JButton by extending JButton as I required a button with rounded corners and wanted to add some effects to it. I have made the button non-opaque. ...

1 2 3 4 5 9