0
votes
1answer
416 views

How to set Cursor position in SWT Text

I am trying to set the cursor position of SWT Text to the end after appending string. I am aware of changing cursor position of SWT StyledText, but not sure of SWT Text. If you people have come across ...
3
votes
1answer
132 views

Creating multiple identical text verify listeners in eclipse-rcp/swt

I'm trying to validate the input of multiple text boxes (i.e. they should be a number), and found the useful code snippet below here. However, if I have three text boxes (text, moreText and ...
1
vote
1answer
406 views

Java SWT Button with text OVER image

SWT does not support "Text over Image" in a Button. When the Image is set, hides the text. What could be the best approach to achieve this? The best workaround i could think of was to "merge" the ...
0
votes
1answer
136 views

How to draw rotated text inside of a GD

I doing some 2D drawing in a SWT GUI. For that I have a GC Object. How can I draw rotatet text inside of an SWT Canvas?
0
votes
2answers
699 views

How to set a Mask to a SWT Text to only allow Decimals

What I want is that the user can only input decimal numbers on a Text, I don't want it to allow text input as: HELLO ABC.34 34.HEY 32.3333.123 I have been trying using VerifyListener, but it only ...
0
votes
0answers
710 views

SWT table with combo and text field: can't edit text field after picking from combo

I created a monster, it was supposed to be a more elegant solution to the problem but it escaped from my control. The problem is as follows: I have a dialog window with a table in it. When a dialog ...
0
votes
2answers
288 views

SWT Text set scroll value

In my application I have an SWT text field. I need to set a scroll value (roll the text in the field to the end in my case). How I can do that?
4
votes
1answer
660 views

Which editor to use for rich text formatting (WYSIWYG) in an Eclipse RCP project?

Based on the following criteria, what editor do you suggest for rich text formatting (WYSIWYG) in an Eclipse RCP project? The must have list: bullet-lists bold formatting font size It should be as ...
3
votes
3answers
1k views

Validation in swt text

I would like to validate numbers input in text box. I want the user to input only integer, decimal in the box between a maximum and minimum values. How can I make sure of this? Thank you.
0
votes
1answer
535 views

How can I create a read-only SWT text that is impossible to select? (by keybord and mouse)

How can I create a read-only SWT text that is impossible to select? (by keyboard and mouse) for example: Text text = new Text(shell, SWT.BORDER | SWT.READ_ONLY); text.append("text text text text ...
1
vote
1answer
341 views

Displaying text on a swt button vertically

I'm trying to display text on a button. Instead of displaying it as "Vertical", I'd like to display it as V e r t i c a l Any assistance is much appreciated.
1
vote
1answer
972 views

How can I verify that a swt text widget is a decimal value

In swt, text widget allow any string. But What is the most appropriate SWT widget in which to enter a Decimal value? I found two answers : First, implement the VerifyKeyListener and VerifyListener, ...
4
votes
1answer
626 views

Is it possible to modify how Text swt widget wrap word?

The development platform is an Eclipse RCP 3.4 on Fedora (It's using Gtk native component). I need to avoid word wrapping. i.e.: "Hello World" is displayed as case N°1 but I need the case N°2. ...
1
vote
1answer
590 views

SWT Text Box Border Color

How to customize SWT Text Box Border color? Is there any API to modify the border color of SWT widgets. This is very urgent for me
1
vote
1answer
764 views

SWT Text Box,SWT Text Box Border color

How to set the Border color of Text Box using SWT API?
6
votes
2answers
663 views

Why isn't text anti-aliasing working, while using a SWT GC to draw text?

Right now my goal is to have anti-aliased text on my Labels. If my research was correct, SWT Labels do not natively support anti-aliasing on text, so my current workaround attempt is to create an ...
1
vote
1answer
2k views

Java Swt Text (SWT.MULTI) append text without scroll

I have a Java SWT GUI with a multiline Text control. I want to append lines of text to the Text control without affecting the position of the cursor within the text box. In particular, the user should ...
0
votes
2answers
807 views

Disable copy paste in SWT Text Component

I'm using SWT Text component. Do someone know how can I prevent copy/paste operation for the Text component. Thanks Subha
3
votes
2answers
1k views

Use Tab-key on a multiline text filed in swt?

How do I prevent a multi-line text field from "stealing" tab-key presses? I mean: I'd like to use TAB to cycle between the elements of a window, but when I enter the multiline text, TAB becomes a ...
2
votes
1answer
1k views

Text and Image on SWT Button

Is there a way to have a SWT buuton with both image and text in a view? I have tried embedding Swings in SWT and the view looks exactly as I want, but when there is an operation going on, this view ...
0
votes
1answer
384 views

Draw2D figure with get position at offset

I am looking for a way to get the position coordinates for an offset of a Draw2D TextFlow. For example SWT's StyledText supports that directly (getLocationAtOffset), but none of the Draw2D text ...
3
votes
2answers
3k views

Simple SWT question, how to have text fields fill 100% horizontally

If I have a text field with SWT, how can I get the field to fill to 100% or some specified width. For example, this text field will only reach for so much horizontally. public class Tmp { public ...