Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] SWT Combo doesn't have a focus control

The platform I tested is Linux, it's OK on MSWindows
----- Original Message -----
From: "David Whiteman" <dlwhiteman@xxxxxxxxxxxxxxx>
To: <platform-swt-dev@xxxxxxxxxxx>
Sent: Monday, April 28, 2003 3:17 PM
Subject: Re: [platform-swt-dev] SWT Combo doesn't have a focus control


> Thanks.  What platform is this on?  Do you mind creating a bug report
here:
>
> https://bugs.eclipse.org/bugs/
>
> David
>
> Monday, April 28, 2003, 2:43:55 PM, Cuong MacroNT wrote:
>
> > Here is a simple testcase:
>
> > import org.eclipse.swt.widgets.Combo;
> > import org.eclipse.swt.widgets.Composite;
> > import org.eclipse.swt.events.FocusListener;
> > import org.eclipse.swt.events.FocusEvent;
> > import org.eclipse.swt.SWT;
>
> > public class TestComboFocus implements FocusListener
> > {
> >     Public TestComboFocus(Composite parent)
> >     {
> >         Combo combo = new Combo(parent, SWT.DROP_DOWN);
> >         combo.addFocusListener(this);
> >     }
>
> >     public void focusGained(FocusEvent e)
> >     {
> >         System.out.println("Combo is in focus");
> >     }
>
> >     public void focusLost(FocusEvent e)
> >     {
> >         System.out.println("Combo is lost focus");
> >     }
>
> > }
>
> > These methods focusGained(), focusLost() never called when the cursor is
in
> > or out of Combo
> > text box.
>
> --
> Regards,
> David
> mailto:dlwhiteman@xxxxxxxxxxxxxxx
>
> _______________________________________________
> platform-swt-dev mailing list
> platform-swt-dev@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/platform-swt-dev
>



Back to the top