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 6736621
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:09:06+00:00 2026-05-26T11:09:06+00:00

I have some trouble’s with keyboard input. I wrote a KeyActionListener , but it

  • 0

I have some trouble’s with keyboard input. I wrote a KeyActionListener, but it works only after I click some button by mouse, for example if I press by mouse 5 and then press keyboard, I’ll get symbols pressed by keyboard, but if I press key on keyboard after program is launched I get nothing, help me please.

Here is my code:

package calc;

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.KeyEvent;
import org.eclipse.swt.events.KeyListener;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.part.ViewPart;
import org.eclipse.wb.swt.SWTResourceManager;

public class View extends ViewPart {
    public Text inputText;
    public Text inputText2;
    public Label label;
    public Label label2;
    public Calculation calcul;

    public View()
    {
        calcul = new Calculation();
    }

    public void createPartControl(Composite parent) {
        Composite mainComposite = new Composite(parent, SWT.NONE);
        GridLayout gltop = new GridLayout(1, false);        
        gltop.numColumns = 1;       
        mainComposite.setLayout(gltop);
        //mainComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_BLUE));
        //ВЫзов верхнего и нижнего композита
        createTop(mainComposite);
        createBott(mainComposite);      
    }

    private void createTop(Composite parent)
    {
        GridLayout gltop = new GridLayout(1, false);        
        gltop.numColumns = 1;
        GridData data = new GridData(GridData.FILL_HORIZONTAL);     
        Composite topComposite = new Composite(parent, SWT.NONE);       
        topComposite.setLayout(gltop);
        topComposite.setLayoutData(data);
        //topComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_RED));

        /*inputText = new Text(topComposite, SWT.BORDER);
        inputText.setLayoutData(data);
        inputText.setFont(SWTResourceManager.getFont("", 18, SWT.BOLD));*/
        label = new Label(topComposite,SWT.RIGHT | SWT.BORDER);
        label.setBackground(SWTResourceManager.getColor(SWT.COLOR_WHITE));
        label.setLayoutData(data);
        label.setFont(SWTResourceManager.getFont("", 18, SWT.BOLD));
        label.setText(calcul.output);
    }

    private void createBott(Composite parent)
    {
        GridLayout glbot = new GridLayout(1, false);        
        glbot.numColumns = 2;
        GridData data = new GridData(GridData.FILL_BOTH);       
        Composite botComposite = new Composite(parent, SWT.NONE);       
        botComposite.setLayout(glbot);
        botComposite.setLayoutData(data);
        //botComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_YELLOW));            

        createLeft(botComposite);       
        createRight(botComposite);      
    }

    private void createLeft(Composite parent)
    {           
        Composite leftComposite = new Composite(parent, SWT.NONE);  
        GridLayout glleft = new GridLayout(1, false);       
        GridData data = new GridData(GridData.FILL_BOTH);   
        //glleft.marginTop = 26;
        leftComposite.setLayout(glleft);
        leftComposite.setLayoutData(data);
        //leftComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_CYAN)); 

        label2 = new Label(leftComposite,SWT.BORDER);
        label2.setLayoutData(data);
        Button buttonMC = createFuncDigButtons(leftComposite, data, "M+", 'P');
        Button buttonMR = createFuncDigButtons(leftComposite, data, "M-", 'M');
        Button buttonMS = createFuncDigButtons(leftComposite, data, "MR", 'R');
        Button buttonMpl = createFuncDigButtons(leftComposite, data, "MC", 'c');
    }

    private void createRight(Composite parent)
    {
        GridLayout glright = new GridLayout(1, false);      
        GridData data = new GridData(GridData.FILL_BOTH);       
        Composite rightComposite = new Composite(parent, SWT.NONE);     
        glright.numColumns = 1;
        rightComposite.setLayout(glright);
        rightComposite.setLayoutData(data);
        //rightComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_DARK_GREEN));  

        createRightTop(rightComposite);
        createRightBot(rightComposite);
    }

    private void createRightTop(Composite parent)
    {
        Composite rightTopComposite = new Composite(parent, SWT.NONE);
        GridLayout glltop = new GridLayout(1, false);       
        GridData data = new GridData(GridData.FILL_BOTH);   
        glltop.numColumns = 3;
        glltop.marginBottom = 0;
        glltop.marginTop = 0;
        rightTopComposite.setLayout(glltop);
        rightTopComposite.setLayoutData(data);
        //rightTopComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_DARK_MAGENTA)); 

        Button buttonBack = createFuncDigButtons(rightTopComposite, data, "Backspace", 'B');
        Button buttonC = createFuncDigButtons(rightTopComposite, data, "C", 'C');
        Button buttonCE = createFuncDigButtons(rightTopComposite, data, "CE", 'E');
    }

    private void createRightBot(Composite parent)
    {
        GridLayout glright = new GridLayout(1, false);      
        GridData data = new GridData(GridData.FILL_BOTH);       
        Composite rightBotComposite = new Composite(parent, SWT.NONE);      
        glright.numColumns = 5;
        rightBotComposite.setLayout(glright);
        rightBotComposite.setLayoutData(data);
        //rightBotComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_DARK_GREEN));       
        Button button7 = createFuncDigButtons(rightBotComposite, data, "7", '7');
        Button button8 = createFuncDigButtons(rightBotComposite, data, "8", '8');
        Button button9 = createFuncDigButtons(rightBotComposite, data, "9", '9');
        Button buttonDev = createFuncDigButtons(rightBotComposite, data, "/", '/');
        Button buttonSQRT = createFuncDigButtons(rightBotComposite, data, "sqrt", 't');
        Button button4 = createFuncDigButtons(rightBotComposite, data, "4", '4');
        Button button5 = createFuncDigButtons(rightBotComposite, data, "5", '5');
        Button button6 = createFuncDigButtons(rightBotComposite, data, "6", '6');
        Button buttonMult = createFuncDigButtons(rightBotComposite, data, "*", '*');
        Button buttonPer = createFuncDigButtons(rightBotComposite, data, "%", '%');
        Button button1 = createFuncDigButtons(rightBotComposite, data, "1", '1');
        Button button2 = createFuncDigButtons(rightBotComposite, data, "2", '2');
        Button button3 = createFuncDigButtons(rightBotComposite, data, "3", '3');
        Button buttonMinus = createFuncDigButtons(rightBotComposite, data, "-", '-');
        Button buttonDev1 = createFuncDigButtons(rightBotComposite, data, "1/x", 'X');
        Button button0 = createFuncDigButtons(rightBotComposite, data, "0", '0');
        Button buttonPM = createFuncDigButtons(rightBotComposite, data, "+/-", 'p');
        Button buttonD = createFuncDigButtons(rightBotComposite, data, ".", '.');       
        Button buttonPlus = createFuncDigButtons(rightBotComposite, data, "+", '+');        
        Button buttonR = createFuncDigButtons(rightBotComposite, data, "=", '=');
    }

    public Button createFuncDigButtons(Composite parent, GridData gridData, final String digit, final char formethod)
    {
        Button button = new Button(parent, SWT.PUSH);
          button.setLayoutData(gridData);
          button.setText(String.valueOf(digit));
          button.addSelectionListener(new SelectionListener() {
            @Override
            public void widgetSelected(SelectionEvent arg0) {
             // update(formethod);
                calcul.getDigit(formethod);
                label.setText(calcul.output);
                if (calcul.memtrue)
                {
                    label2.setText("M");
                }
                else
                {
                    label2.setText("");
                }
            }

            @Override
            public void widgetDefaultSelected(SelectionEvent arg0) {
              /* do nothing */
            }
          });
          button.addKeyListener(new KeyListener() {

            @Override
            public void keyReleased(KeyEvent arg0) {
            }

            @Override
            public void keyPressed(KeyEvent arg0) {
                calcul.getDigit(arg0.character);
                label.setText(calcul.output);
            }
        });
        return button;
    }

    public void setFocus() {
        label.setFocus();
    }
}

Moreover, how could I layout my left and right buttons so, that they will be the same size? My manipulations could get me good result, I still have memory buttons another size then right buttons. Here is an image:

enter image description here

  • 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-05-26T11:09:07+00:00Added an answer on May 26, 2026 at 11:09 am

    tru in your code to focus button button.setFocus()

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

Sidebar

Related Questions

I'm migrating to Nhibernate 2.0 GA but have some trouble with setting cache expirations
I am developing a small windows app, but have some trouble deciding whether to
I have some trouble, saving values from input stream (cin) into an array. int
I'm having some trouble with MySql right now. I have an query that works
I have some trouble with my trac installation (version 11.4). What should I do
I have some trouble with jquery ui-events: In my application, there are some sliders.
I have some trouble achieving adequate real-time performance from my application and wondering if
I'm have some trouble with the fulltext CONTAINS operator. Here's a quick script to
I am mlearning javascript and have some trouble creating an onject via prototype. I
Good Morning, i have some Trouble with the Zend Framework and Zend_DB_Select, i want

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.