Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8710937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T04:45:09+00:00 2026-06-13T04:45:09+00:00

In my SWT application i have certain components inside the SWT shell. Now how

  • 0

In my SWT application i have certain components inside the SWT shell.

Now how can i auto re-size this components according to the size of display window.

Display display = new Display();

Shell shell = new Shell(display);
Group outerGroup,lowerGroup;
Text text;

public test1() {
    GridLayout gridLayout = new GridLayout();
    gridLayout.numColumns=1;
    shell.setLayout(gridLayout);

    outerGroup = new Group(shell, SWT.NONE);

    GridData data = new GridData(1000,400);
    data.verticalSpan = 2;
    outerGroup.setLayoutData(data);    

    gridLayout = new GridLayout();

    gridLayout.numColumns=2;
    gridLayout.makeColumnsEqualWidth=true;
    outerGroup.setLayout(gridLayout);

    ...
}

i.e when I decrease the size of window the components inside it should appear according to that.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T04:45:12+00:00Added an answer on June 13, 2026 at 4:45 am

    That sounds suspiciously like you aren’t using layouts.

    The whole concept of layouts makes worrying about resizing needless. The layout will take care of the size of all of its components.

    I would recommend to read the Eclipse article about layouts

    Your code can easily be corrected. Don’t set the size of individual components, the layout will determine their size. If you want the window to have a predefined size, set the shell’s size:

    public static void main(String[] args) {
        Display display = new Display();
        Shell shell = new Shell(display);
        shell.setLayout(new GridLayout(1, false));
    
        Group outerGroup = new Group(shell, SWT.NONE);
    
        // Tell the group to stretch in all directions
        outerGroup.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
        outerGroup.setLayout(new GridLayout(2, true));
        outerGroup.setText("Group");
    
        Button left = new Button(outerGroup, SWT.PUSH);
        left.setText("Left");
    
        // Tell the button to stretch in all directions
        left.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
    
        Button right = new Button(outerGroup, SWT.PUSH);
        right.setText("Right");
    
        // Tell the button to stretch in all directions
        right.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
    
        shell.setSize(1000,400);
        shell.open();
    
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch())
                display.sleep();
        }
        display.dispose();
    }
    

    Before resizing:

    Before resizing

    After resizing:

    After resizing

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm designing a Java application using SWT. I have some tables which will display
I have a Java SWT application and i'm using this snippet of code to
I am building an application in swt, I also have a thread running which
On my Arch Linux, Eclipse with Google Window Builder/SWT application, I am getting Exception
I have a SWT app that opens a OpenGL window (using the LWJGL library)
I am trying to communicate with Excel from a Java/SWT application. I have been
I have a Java Application using SWT as the toolkit, and I'm getting tired
I have inherited development of a Java/SWT application running on Windows only. One of
I have an SWT application which is quite complex at the moment. And I
I have created an test swt application which has some German special characters. When

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.