1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Event Log for Unix PuTTY. Doesn't yet allow X selection of its

contents, and doesn't automatically maintain scroll position at the
bottom when new entries are added while the list is open, but it's a
start.

[originally from svn r3087]
This commit is contained in:
Simon Tatham
2003-04-09 18:46:45 +00:00
parent 65fab07ad0
commit b49980b953
6 changed files with 244 additions and 22 deletions

View File

@ -305,9 +305,16 @@ union control {
*/
int draglist;
/*
* If this is set, the list can have more than one element
* selected at a time. This is not guaranteed to work on a
* drop-down list, so don't try it!
* If this is non-zero, the list can have more than one
* element selected at a time. This is not guaranteed to
* work on a drop-down list, so don't try it!
*
* Different non-zero values request slightly different
* types of multi-selection (this may well be meaningful
* only in GTK, so everyone else can ignore it if they
* want). 1 means the list box expects to have individual
* items selected, whereas 2 means it expects the user to
* want to select a large contiguous range at a time.
*/
int multisel;
/*