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

  • Home
  • SEARCH
  • 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 7415009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:12:50+00:00 2026-05-29T07:12:50+00:00

I know this can be implemented fairly easily but I must use a standard

  • 0

I know this can be implemented fairly easily but I must use a standard functionality for this.
I need a tooltip to be shown on a text field but only when the text in the text field is to long to be displayed in the field. Tables and Tree’s have this functionality when resizeing columns but I didn’t find anything similar for text fields.

I didn’t manage to find this functionality in Eclipse either so I’m guessing it’s not a standard functionality.
Please prove me wrong:).

Thanks in advance.

  • 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-29T07:12:50+00:00Added an answer on May 29, 2026 at 7:12 am

    What does it mean “Standard functionality”..? Adding modifyListener to Text instance is (imo) standard fair enough.

    Here’s my approach

    import org.eclipse.swt.SWT;
    import org.eclipse.swt.events.ModifyEvent;
    import org.eclipse.swt.events.ModifyListener;
    import org.eclipse.swt.graphics.GC;
    import org.eclipse.swt.graphics.Point;
    import org.eclipse.swt.layout.GridLayout;
    import org.eclipse.swt.widgets.Display;
    import org.eclipse.swt.widgets.Shell;
    import org.eclipse.swt.widgets.Text;
    
    
    public class TextLabel {
        public TextLabel() {
            Display display = new Display();
            Shell shell = new Shell(display);
            shell.setLayout(new GridLayout());
            shell.setSize(200, 150);
            shell.setText("Long Text content label");
    
            Text txtLong = new Text(shell, SWT.SINGLE | SWT.BORDER);
            txtLong.addModifyListener(new ModifyListener() {
    
                @Override
                public void modifyText(ModifyEvent e) {
                    Text txtSource = (Text) e.getSource();
                    Point size = (new GC(txtSource)).stringExtent(txtSource.getText());
                    if(size.x > txtSource.getBounds().width - txtSource.getBorderWidth()) txtSource.setToolTipText(txtSource.getText());
                    else txtSource.setToolTipText(null);
                }
            });
    
            shell.open();
            while (!shell.isDisposed()) {
                if (!display.readAndDispatch()) {
                    display.sleep();
                }
            }
            display.dispose();
        }
    
        public static void main(String args[]) {
            new TextLabel();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this question can be answered by searching in google. But I have
I know that this can be easily done by using if(i%5 == 0 OR
I know this is an easy question but I can't figure it out or
I know this isn't so complicated but I can't remember how to do. I
i know this is kinda retarded but I just can't figure it out. I'm
I know this has been asked thousands of times but I just can't find
I know this isn't best practice, but can I include all of the dependencies
I know this is rather laughable, but I can't seem to get simple C++
Can anyone let me know how to implement this feature specified at http://vimeo.com/24475654 Specially
I know this can be done and i have seen it done using some

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.