Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
30 views

How to reduce the space between the 3 swing checkboxes?

I want to reduce the size between the components with in the Formatting group (left side on the image). How to do this? JPanel formattingGroup = createGroupWithName("Formatting"); ...
3
votes
2answers
62 views

JScrollPanes scrollbars not showing up

So, I have a grid layout which stores JScrollPane's in each cell. These are also put into an array for other purposes. The "View" extends "JPanel" so it's just a regular panel with image support. The ...
3
votes
1answer
78 views

Java GridLayout is laying out all my JPanels in the top left corner

SOLVED: Just found out what the problem was, after trying to make an SSCCE. It had to do with my cell class, I didn't realise I was overriding getX() and getY() from the JComponent class. After ...
3
votes
3answers
236 views

How to get X and Y index of element inside GridLayout?

I am studying a java tutorial and saw that the way to find the x/y indexes of a JButton inside a GridLayout is to traverse a bidimensional array of buttons b which is associated to the layout and ...
3
votes
3answers
199 views

JProgressbar width using Grid/FlowLayout

I'm working on a downloader which looks like this at the moment: The JFrame uses a BorderLayout. In the NORTH, I have a JPanel(FlowLayout). In the SOUTH there is also a JPanel(FlowLayout), in the ...
3
votes
4answers
206 views

How to fill a GridLayout top-to-bottom and then left-to-right?

The default behavior of a GridLayout is that the components are filled row by row, and from left to right. I wonder if I can use it so that the components are filled by columns (from left to right)? ...
3
votes
4answers
358 views

Best Swing Layout for 2-dimensional grid of buttons?

I'm trying to create a JDialog like the Symbol dialog in Microsoft Word that you get by choosing Symbol... from the Insert menu. Basically, it's an n x m (n and m are not known until runtime) grid of ...
3
votes
1answer
2k views

SWT: Nested Layouts with ScrolledComposite exceeds available space

I want to build a Master-Detail layout for one of my applications using SWT. Container, Content, Sidebar and Part1 are Composite instances. Scrolled is a ScrolledComposite The desired layout is ...
2
votes
4answers
53 views

How to size the WPF Grid panel this way?

I have this pretty simple window with a Grid containing two columns, a TextBlock and a TextBox. What I need it to set the column 0 to automatically size to its content and to have column 1 ...
2
votes
2answers
81 views

android - is it possible to use android 4 features on older versions?

since android 4 has some nice new APIs , and since android is open source , i've thought : why not , for the time being , use the new APIs as if they are a part of the application, and when the time ...
2
votes
3answers
146 views

GridLayout + Mouse Listener

Okay guys I have a problem, I dont know how know which cell was clicked on a grid layout, is there any function? I have grid layout on container, for 10 rows and 10 columns, and what I want is a ...
2
votes
3answers
126 views

How to show drop shadows on LIs in a 960 grid based layout?

I am trying to create a page showing a list of products in a grid (960.gs) format. To match the COMP, I need to show a drop shadow on a LI when the user hovers above it. Showing the drop shadow on a ...
2
votes
2answers
124 views

How can I you dynamically rearrange items in a gridlayout using java?

I need to rearrange items that are in my GridLayout so when a JButton is created dynamically, that the footer (i.e. JLabel) stays at the bottom of the grid, and the dynamically created button goes ...
2
votes
2answers
72 views

GridData class in SWT

This is about GridData class in SWT UI programming. Why should GridData be final ? Java Doc of GridData says that it's final. I want to understand why it should be final. Thank and Regards
2
votes
2answers
337 views

Overlay images on a GridLayout in Java

Is it possible to have one set of images be the "background image" of a gridlayout and other images be the "content" of the gridlayout? If not, what's the best way to do it?
2
votes
1answer
35 views

GridLayout. Check the amount of cells used

After creating the grill with "GridLayout": supper(new GridLayout(rows, column)); I will add to demand content in each cell: public void addButton(String name) { buttons = new JButton(name); ...
2
votes
4answers
849 views

GridLayout Help in Java

I have a JPanel with the following code: JPanel pane = new JPanel(); pane.setLayout(new GridLayout(3, 2, 10, 30)); final JTextField fileName = new JTextField(); pane.add(fileName); JButton creater = ...
2
votes
4answers
251 views

How do I neatly indent some components using Java Swing layouts

Using Swing, what is the best way to indent some components underneath a checkbox or radio button? I need to make something in the style of Firefox 3.6's Options->Privacy dialog where some checkboxes ...
2
votes
2answers
362 views

How to align separate Grids created via templates along their columns / rows?

I thinks that in this case A picture is worth a thousand words: XAML: <Grid> <ItemsControl ItemsSource="{Binding Persons}"> <ItemsControl.ItemTemplate> ...
2
votes
3answers
7k views

Java Swing - JPanel and GridLayout Margins/Padding

I'm working on building a chess game in Java, and I'm currently having a bit of trouble getting the GUI exactly the way I want it with Swing. I'm using a GridLayout to organize a grid of 8x8 ...
2
votes
1answer
989 views

How to manipulate GridLayout settings accordingly on JAVA?

I have a setLayout(new GridLayout(5,5,3,3)); 5 rows and 5 columns. On the first row I want one big row. You know how in excel, where you would merge cells. So I just want to merge the 5 columns only ...
2
votes
3answers
354 views

How to remove border around bottoms?

I have a JPanel with the GridLayout. In every cell of the grid I have a button. I see that every button is surrounded by a gray border. I would like to remove these borders. Does anybody know how it ...
2
votes
3answers
3k views

How do we show the gridline in GridLayout?

How do we show the gridline in GridLayout? in Java? JPanel panel = new JPanel(new GridLayout(10,10)); panel.setBorder(BorderFactory.createEmptyBorder(2,2,2,2)); for (int i =0; i<(10*10); i++){ ...
2
votes
4answers
867 views

Java - GridLayout Problems

I'm doing a school project and need help with the Layout because it's doing some funky stuff. I only need help with the south panel. The south panel is organized something like this: ...
1
vote
1answer
34 views

Text on JTextField doesn't appear until frame resize

When I click on a button a property frame appears. Each row has these 3 fields : JLabel name, JTextField value, JSlider slider. My problem is that when the frame shows, it displays the values ...
1
vote
2answers
62 views

Java Photo Album Using GridLayout

I want to make simple photo album in Java. To do that, I think it will be the easiest way to coordinate pictures with gridlayout. I have my pictures' bufferedimages, I'm trying to add them into the ...
1
vote
3answers
93 views

Text align in JLabel

I've got GridLayout-JPanel. In every cell there is a JLabel with some String. How can I right-align this text in my cells?
1
vote
1answer
51 views

Arranging JLabels on JPanel when some of them need to be inside grid layout and some of them are not

I want to place a game board in JPanel and i'm using GridLayout 10x10 In addition i want to place additional labels on the same JPanel but not inside the grid. When i'm adding this labels they are ...
1
vote
2answers
68 views

Java Swing Gridlayout: Accessing Specfic Coordinate

I'm creating a Java swing GUI and I have formatted a JPanel to use a GridLayout. I need to access a specific "box" (i.e. specific coordinate) of the grid, but I cannot see a way to do so. Is there a ...
1
vote
1answer
61 views

Grid Layout Java

I have created a java program that shows a grid of buttons and labels and i want to know how to pit a constraint on the labels and buttons so they dont re-size when window is dragged out.. can anyone ...
1
vote
1answer
129 views

How to replace content of grid cell in SWT GridLayout?

I need to replace content of grid cell after button click. For example: there is Label and I need to replace it with Text. Is it possible with GridLayout? I need to use SWT.
1
vote
3answers
151 views

JLabel, GridLayout

import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Gui extends JFrame { private JFrame window = new JFrame(); private JButton but[] = new JButton[9]; public ...
1
vote
4answers
511 views

Grid Layout Vs. Table Layout

I am working on a booking engine android app like an airline booking system. To fetch the content of say all the available airlines specific to a passenger search, this is then displayed on the ...
1
vote
3answers
225 views

How do you set the position of button in grid layout?

My code: public class Form { public static void main(String[] args) { Form form = new Form(); form.go(); } public void go(){ JFrame form = new JFrame(); ...
1
vote
3answers
76 views

Problems with my GridLayout

I have a GridLayout 2 rows by 5 columns, and I want to make the height of the first row to something like 50, and the second row to 200. I know GridLayout creates equally-sized cells, so this didn't ...
1
vote
1answer
210 views

java GridLayout component size

I want to make a JPanel (with GridLayout) that contains a grid of custom components. All is ok, but I have problem with the components size. The components size each time grows or diminishes so the ...
1
vote
1answer
75 views

eclipse preference - grid layout confusion

I try to build a part of an eclipse pref page which contains a table and add/remove-buttons. I have found some example code but I don't understand the following thing: The method protected void ...
1
vote
1answer
85 views

a SWT control refuses to “grab excess vertical space”

The case is that the TopTaskGroup(left one) can "grab excess vertical space" while resizing window, but the NewTaskGroup(the right one), after adding a TooBar on it(see the createAddBtnOnGroup ...
1
vote
2answers
288 views

How to adjust the grid size after resizing the frame?

I was wondering the following: I have a MainWindow component (which contains a frame (JFrame)) and several other JPanels. Where one JPanel, let's say gridPanel uses the gridLayout as LayoutManager. ...
1
vote
3answers
174 views

Java Problem using GridLayout

I want to have a 3x3 grid layout structured like this: _ _ _ _ _ _ _ _ _ _ _ _ | Label | | Button Button Button | | TextArea | |_ _ _ _ _ _ _ _ _ _ _ | But the layout is ...
1
vote
3answers
270 views

960.gs layout issue

I am trying to learn 960 grid system. My left body text appears on the right and vice versa for the other text. My intention is to have these two boxes on the same line. Left body text is appearing ...
1
vote
2answers
380 views

GridLayout and number of rows and columns

Does GridLayout ever not honor the number of rows and columns you've specified if you don't fill it completely? I'm creating a GridLayout with 3 rows and 4 columns. However, I'm only adding 9 ...
1
vote
1answer
463 views

Centering a button spanning muliple columns in a QGridLayout

I have a button that spans two columns in a Grid Layout. The button is about half the width of its cell and I want it to be centered. gridLayout->addWidget(btn3, 2, 6, 1, 2); aligns the button ...
1
vote
2answers
228 views

Get a button from a gridLayout

If I have elements inside my gridLayout, can I get the reference to that object, if yes, which function do I need to use? Is it good idea to perform some actions on the objects inside gridLayout? Or ...
1
vote
2answers
1k views

Get position/index of a JPanel in a GridLayout?

I'm trying to follow MVC-design and currently creating a MouseAdapter in my Controller class. I have an array the same size as the GridLayout in one of my model classes. So when someone clicks a ...
1
vote
4answers
488 views

Components in GridLayout wit JPanel fills the grid incorrectly

I am trying to prevent the GridLayout in a JPanel from filling the cells entirely and ignoring any setSize of the components i am using this code: import javax.swing.*; import java.awt.*; public ...
1
vote
2answers
560 views

What does this do: MS_POSITIONING=“GridLayout”

The string appears on all <body> tags in some old asp.net webform applications.
1
vote
4answers
422 views

Is it possible to make GridLayout's components not equal in size?

GirdLayout makes a bunch of components equal in size. That means that the biggest sized component will define the size for all components. Is it possible to make each component's size based on their ...
1
vote
2answers
554 views

Qt Designer - How to get a widget to span columns?

I created a simple form. I added a PushButton in the bottom right, and then a TabWidget above that. I highlighted the main window, and chose Grid Layout. The PushButton was stretched, so I added a ...
1
vote
3answers
78 views

How to add JButton to GridLayout?

If I have code like so: class X extends JFrame { X() { setLayout(new GridLayout(3,3)); JButton b = new JButton("A-ha"); /*I would like to add this button in the center of this grid (2,2)*/ //How can ...

1 2