Stan wrote: > What is Fl_Input supposed to do with tabs? The documentation > doesn't mention tab explicitly, so I suppose it's supposed > fall into the category of "correctly display anything." > > Instead, it seems to control some state change involving > highlighting, depending in part on the position of the > cursor within the text. Try it, it's easier to see than > to explain in words :-) > > Typing shift-tab displays ^I. Typing control-tab does nothing. > In fact, typing control-anything does nothing when the anything > isn't one of the special keys mentioned in the docs. > > Can anyone shed a little light? > > This is fltk-1.1.x-5800
Hitting Tab when the text is selected will move the cursor to the end of the field. If there is no selection, Tab will move to the next widget in the window. Shift+Tab should move to the previous widget in the window. Ctrl+Tab changes desktops in some window managers; otherwise it would be passed to the other widgets in the window as a shortcut key event. -- ______________________________________________________________________ Michael Sweet, Easy Software Products mike at easysw dot com Internet Printing and Document Software http://www.easysw.com _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

