Re: [Pgui-devel] navigation and scrolling with hokeys

2002-11-12 Thread Micah Dowty
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: > > ...

Re: [Pgui-devel] navigation and scrolling with hokeys

2002-11-11 Thread Micah Dowty
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

Re: [Pgui-devel] navigation and scrolling with hokeys

2002-11-11 Thread Philippe Ney
... > > 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

Re: [Pgui-devel] navigation and scrolling with hokeys

2002-11-08 Thread Micah Dowty
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

Re: [Pgui-devel] navigation and scrolling with hokeys

2002-11-08 Thread Philippe Ney
> > > 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

Re: [Pgui-devel] navigation and scrolling with hokeys

2002-11-06 Thread Micah Dowty
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

Re: [Pgui-devel] navigation and scrolling with hokeys

2002-11-05 Thread Chuck Groom
> 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) > { >

[Pgui-devel] navigation and scrolling with hokeys

2002-11-05 Thread Philippe Ney
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