vote up 0 vote down star
1

I have an interesting aspect to submit to your attention. I am pretty sure the solution to this will prove to be very easy, and yet... i am unable to find it. Here it is what i did : i've drawed a Group on top of a Shell, and i've used this code :

String message = "My message";
Image img = ....//some image

    	group.addListener(SWT.Paint, new Listener() {
    		@Override
    		public void handleEvent(Event event) {
                event.gc.setForeground(someBlueColor);
    			event.gc.drawImage(myImage,
    					10,
    					0);
                event.gc.drawString(message, 10, 0);
    		}
    	});

This adds the image and draws the string on the top margin of the Group. Everything is cool, but when i press the Alt or Tab key, the group top margin becomes visible and cuts in half my image and my message. Is there some way to avoid this? (this is fancy, but i cannot use it with this bug).

PS. I've tried the SWT.Traverse and SWT.KeyDown events on my Group, an none of them fires. Any idea what event is firing when i press Alt or Tab (the shell has focus i think at that point) and (if this is the event X), how can i fire the SWT.Paint event before shutting down action performed on event X? Thanks.

Some visual here.

flag

75% accept rate

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.