Ok, I got it fixed. There was a bug in the hotspot input filter
preventing the code from working. All in CVS now.
On Mon, Nov 11, 2002 at 02:27:05PM -0700, Micah Dowty wrote:
> Not yet, I'll take a look at that later today
>
> On Mon, Nov 11, 2002 at 10:10:41AM +0100, Philippe Ney wrote:
> > ...
Not yet, I'll take a look at that later today
On Mon, Nov 11, 2002 at 10:10:41AM +0100, Philippe Ney wrote:
> ...
> > > Which give good result to enter/get out of a textbox with the up/down
> > > keyboard keys. The behavior stay if you add chars in the textbox but
> > > if you make a new paragraph
...
> > Which give good result to enter/get out of a textbox with the up/down
> > keyboard keys. The behavior stay if you add chars in the textbox but
> > if you make a new paragraphe (hitting return) you cannot get out of
> > the widget any more. This certainly due to creation of a new
> > paragra
On Fri, Nov 08, 2002 at 04:48:59PM +0100, Philippe Ney wrote:
> > > > 2) How getting out of a text widget (with keyboard input) ?
> > > >
> > > > When you are in a text edit widget, the arrow keys are used to move
> > > > the cursor through the text and the tab key insert a .. tab.
> > > > There i
> > > 2) How getting out of a text widget (with keyboard input) ?
> > >
> > > When you are in a text edit widget, the arrow keys are used to move
> > > the cursor through the text and the tab key insert a .. tab.
> > > There is then no way to get out of the widget w/o another input
> > > device su
On Tue, Nov 05, 2002 at 10:08:20AM -0800, Chuck Groom wrote:
> > 1) how could we manage scrolling of a 'read only' text widget
> >with only help of a keyboard ?
> >
> > I thought about using something like this:
> >
> > --8<--
> > ...
> >
> > static int
> 1) how could we manage scrolling of a 'read only' text widget
>with only help of a keyboard ?
>
> I thought about using something like this:
>
> --8<--
> ...
>
> static int currentPos;
> static int step;
> ...
>
> int mvUp (struct pgEvent *evt)
> {
>
Hi Micah, hi everybody,
I have some questions about navigation and scrolling..
1) how could we manage scrolling of a 'read only' text widget
with only help of a keyboard ?
I thought about using something like this:
--8<--
...
static int currentPos;
stat