summaryrefslogtreecommitdiff
path: root/gnu/lib/libdialog
Commit message (Collapse)AuthorAgeFilesLines
* Spelling corrections.Joseph Koshy1998-06-061-2/+2
| | | | | | | | PR: 6868 Submitted by: Josh Gilliam <josh@quick.net> Notes: svn path=/head/; revision=36692
* Fix improperly re-entrant code which caused the menu spammage we'veJordan K. Hubbard1997-10-122-37/+25
| | | | | | | | been seeing since 2.2.1. Pointed-in-the-right-direction by: phk Notes: svn path=/head/; revision=30333
* Fixed synopsis. There was a missing arg, 3 args with the wrong type,Bruce Evans1997-04-131-12/+22
| | | | | | | | and many apparent dependendcies on <sys/types.h> from use of u_char. <dialog.h> avoids u_char, so avoid it here too. Notes: svn path=/head/; revision=24871
* YAMF22Jordan K. Hubbard1997-03-291-2/+2
| | | | Notes: svn path=/head/; revision=24389
* Fix various overflows for items longer then menu width.Andrey A. Chernov1997-02-281-4/+6
| | | | | | | | | | Fix cursor place after PgUp/PgDn. Should go into 2.2 Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> Notes: svn path=/head/; revision=23220
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-2221-21/+21
| | | | Notes: svn path=/head/; revision=22996
* When wrong directory choosed and chdir failed, directory nameAndrey A. Chernov1997-02-182-2/+5
| | | | | | | | | | | | | | was not reset to old name causing any file choosen put error diagnostic about wrong directory, fix it by resetting back to old name after chdir failed. Add \r as alias to \n, some telnets have problem with that. Should go into 2.2 Submitted by: "Anatoly A. Orehovsky" <tolik@mpeks.tomsk.su> & me Notes: svn path=/head/; revision=22879
* Go on one of my periodic rampages through this code, trying to makeJordan K. Hubbard1997-01-174-157/+189
| | | | | | | | | | it DTRT. In the process, discover the usual 10-15 evil bogons which have been lurking in it for years. This closes, for one thing, the recent report Mike Smith made about nested checklist menus returning with the scrolling region messed up. Notes: svn path=/head/; revision=21790
* Allow emacs-style next/prev characters as well as arrow keys so thatJordan K. Hubbard1997-01-155-9/+13
| | | | | | | I can offer this as a consistent feature. Notes: svn path=/head/; revision=21697
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-1421-21/+21
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* Pull the fix from rev 1.31.2.1; i've accidentally committed it toJoerg Wunsch1996-12-261-1/+0
| | | | | | | 2.2 first. Notes: svn path=/head/; revision=20924
* Somewhere along the way, multiple targets started working and nobodyJordan K. Hubbard1996-12-141-52/+1
| | | | | | | noticed. Notes: svn path=/head/; revision=20446
* Add another hateful global to libdialog (what the heck, there are alreadyJordan K. Hubbard1996-12-149-25/+94
| | | | | | | | | so many). For now, the only extended attribute implemented is NO ECHO, useful for things like passwords. See TESTS/input2.c for an example. This should go into 2.2. Notes: svn path=/head/; revision=20442
* Line up some of these OK boxes properly again.Jordan K. Hubbard1996-12-123-4/+4
| | | | Notes: svn path=/head/; revision=20359
* "CONTINUE" was just too long. Make it a nice "OK" now.Jordan K. Hubbard1996-10-042-2/+2
| | | | Notes: svn path=/head/; revision=18682
* Eliminated includes of the "temporary" backwards compatibility headerBruce Evans1996-09-241-4/+4
| | | | | | | | | <sys/dir.h> in applications. Maintained existing (inadequate) ifdefs for dir.h vs dirent.h in libdialog, amd and rarpd, but didn't add any new ones. Notes: svn path=/head/; revision=18485
* Make button highlighting more visible on B/W displays.Jordan K. Hubbard1996-09-061-3/+1
| | | | Notes: svn path=/head/; revision=18078
* Collapse some common arrow key handling semantics from sysinstall intoJordan K. Hubbard1996-09-011-0/+7
| | | | | | | PollObj(), simplifying code which uses it. Notes: svn path=/head/; revision=17984
* cmp -s || install -c ==> install -CPeter Wemm1996-08-301-3/+2
| | | | Notes: svn path=/head/; revision=17935
* Reverse my patch which erroneously removed the library dependenciesJordan K. Hubbard1996-08-131-0/+3
| | | | | | | for a library. They're needed. Notes: svn path=/head/; revision=17575
* Throw some unnecessary dreck out of this Makefile.Jordan K. Hubbard1996-08-111-4/+1
| | | | Notes: svn path=/head/; revision=17518
* 1. Remove some ancient bogons from when I initially added dialogMenuItemJordan K. Hubbard1996-07-115-63/+21
| | | | | | | | support. 2. Have message boxes say "Continue" instead of "Exit" Notes: svn path=/head/; revision=17098
* Fix a couple of whoopers which somehow went undetected until now.Jordan K. Hubbard1996-07-113-56/+66
| | | | Notes: svn path=/head/; revision=17092
* Add missing dialog_clear() calls.Jordan K. Hubbard1996-07-053-0/+3
| | | | Notes: svn path=/head/; revision=16973
* Round out the examples a little better in showing custom buttons in operationJordan K. Hubbard1996-07-021-2/+4
| | | | | | | more than once. Notes: svn path=/head/; revision=16888
* Fix the OK/Cancel accellerator bogon I introduced a few days back.Jordan K. Hubbard1996-04-283-3/+3
| | | | Notes: svn path=/head/; revision=15418
* Fix what I just broke with DITEM_LEAVE_MENUJordan K. Hubbard1996-04-271-1/+1
| | | | Notes: svn path=/head/; revision=15410
* Fix a bogon with ok/cancel callback usage.Jordan K. Hubbard1996-04-272-26/+24
| | | | Notes: svn path=/head/; revision=15406
* More custom hackery to deal with issues discovered in sysinstall.Jordan K. Hubbard1996-04-253-17/+14
| | | | Notes: svn path=/head/; revision=15382
* Allow some post-fire actions to be combined in ways that weren'tJordan K. Hubbard1996-04-253-16/+9
| | | | | | | possible before. Notes: svn path=/head/; revision=15380
* alloca() was being called with highly bogus arguments due to brainJordan K. Hubbard1996-04-252-2/+2
| | | | | | | fade. Fixed. Notes: svn path=/head/; revision=15376
* Cosmetic tweaks.Jordan K. Hubbard1996-04-232-4/+13
| | | | Notes: svn path=/head/; revision=15354
* Another bug fix for the DITEM_REDRAW case.Jordan K. Hubbard1996-04-202-4/+5
| | | | Notes: svn path=/head/; revision=15323
* Make the DITEM_RECREATE option work properly.Jordan K. Hubbard1996-04-203-22/+27
| | | | Notes: svn path=/head/; revision=15322
* Fix a bug which did not properly bias checklist items by their scrollJordan K. Hubbard1996-04-192-8/+10
| | | | | | | factor. Notes: svn path=/head/; revision=15306
* Remove a long-standing window leak I just noticed.Jordan K. Hubbard1996-04-183-2/+18
| | | | Notes: svn path=/head/; revision=15290
* Remove the special-case behavior for fire actions that returnJordan K. Hubbard1996-04-187-176/+104
| | | | | | | | | | | | | | DITEM_FAILURE - formerly they would simply act as an implicit "continue", but this is wrong. If you want this behavior, you should now return with the DITEM_CONTINUE flag set. Also make the semantics of DITEM_RESTORE quite a bit different - rather than restore the screen back to pre-menu state, we restore the menu itself. This is more correct for a variety of reasons when dealing with nested menus (whoops!). Notes: svn path=/head/; revision=15289
* More changes to attempt to make this whole new dialog scheme moreJordan K. Hubbard1996-04-1613-1249/+1370
| | | | | | | | | | | | robust. The new "fire" actions, while affording signficantly more interactivity to libdialog, come at a cost - if the fire action trashes the screen then you're not going to be in Kansas anymore when you come back to the menu and there had better be considerable extra smarts in place for coping with such a situation. These changes are my attempt to do just that. Notes: svn path=/head/; revision=15273
* Remove some of the grot I added to try and save/restore screen contents.Jordan K. Hubbard1996-04-131-27/+3
| | | | | | | This shouldn't be done here, it should be done in the client as needed. Notes: svn path=/head/; revision=15240
* Save screen before calling any fire() callbacks - you never know whatJordan K. Hubbard1996-04-081-363/+379
| | | | | | | they might do to the screen. Notes: svn path=/head/; revision=15143
* Refresh dialogs if a callback action fails.Jordan K. Hubbard1996-04-083-11/+33
| | | | Notes: svn path=/head/; revision=15142
* Make this properly respect obj dirs.Jordan K. Hubbard1996-04-071-35/+37
| | | | Notes: svn path=/head/; revision=15090
* Strive for a little more consistency with my examples.Jordan K. Hubbard1996-04-077-14/+14
| | | | Notes: svn path=/head/; revision=15089
* Add an `aux' field for some other gunk I'm doing.Jordan K. Hubbard1996-04-051-0/+1
| | | | Notes: svn path=/head/; revision=15044
* Add some missing MLINKS, correct some cross references, correct someMike Pritchard1996-02-092-3/+4
| | | | | | | file locations and some minor formatting/style problems. Notes: svn path=/head/; revision=14003
* Added some missing MLINKS for section 3 man pages.Mike Pritchard1996-02-091-1/+15
| | | | | | | | | | Also corrected a few minor formatting errors, file location and cross references in some of the section 3 man pages. This shuts up a lot of the output from "manck" for section 3. Notes: svn path=/head/; revision=13987
* Minor tweak to this test.Jordan K. Hubbard1996-02-081-2/+2
| | | | Notes: svn path=/head/; revision=13969
* Fix small bug with negative item_no.Jordan K. Hubbard1996-01-101-1/+1
| | | | Notes: svn path=/head/; revision=13373
* Refresh before calling selection hook.Jordan K. Hubbard1996-01-052-2/+6
| | | | Notes: svn path=/head/; revision=13232
* Create individual tests for each dialog feature.Jordan K. Hubbard1996-01-0119-336/+1266
| | | | Notes: svn path=/head/; revision=13136