head 1.4; access; symbols ISELECT_1_4_0:1.4 ISELECT_1_3_1:1.3 ISELECT_1_3_0:1.2 ISELECT_1_2_0:1.1.1.4 ISELECT_1_1_0:1.1.1.3 ISELECT_1_0_4:1.1.1.2 ISELECT_1_0_0:1.1.1.1 vendor:1.1.1; locks; strict; comment @ * @; 1.4 date 2007.07.08.09.28.11; author rse; state Exp; branches; next 1.3; commitid P0IqEKWWbsvcIWos; 1.3 date 2005.10.05.18.19.42; author rse; state Exp; branches; next 1.2; 1.2 date 2004.09.11.15.18.49; author rse; state Exp; branches; next 1.1; 1.1 date 97.09.16.13.27.04; author rse; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 97.09.16.13.27.04; author rse; state Exp; branches; next 1.1.1.2; 1.1.1.2 date 97.10.30.09.17.02; author rse; state Exp; branches; next 1.1.1.3; 1.1.1.3 date 98.04.05.16.34.29; author rse; state Exp; branches; next 1.1.1.4; 1.1.1.4 date 99.03.31.06.44.53; author rse; state Exp; branches; next ; desc @@ 1.4 log @bump up version and copyright information @ text @/* _ ____ _ _ ** (_) ___| ___| | ___ ___| |_ ** / /\___ \ / _ \ |/ _ \/ __| __| ** / / ___) | __/ | __/ (__| |_ ** (_( |____/ \___|_|\___|\___|\__| ** ** iSelect -- Interactive Selection Tool ** ** iSelect is a Curses-based tool for interactive line selection ** in an ASCII file via a full-screen terminal session. ** ** ====================================================================== ** ** Copyright (c) 1997-2007 Ralf S. Engelschall. ** ** This program is free software; it may be redistributed and/or ** modified only under the terms of the GNU General Public License, ** which may be found in the iSelect source distribution. ** Look at the file COPYING for details. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ** See the the GNU General Public License for more details. ** ** ====================================================================== ** ** iselect_browse.h -- Curses-based file browser header */ /* * The Structure of our screen lines */ struct Line { char *cpLine; /* the input line */ int fSelectable; /* whether selectable or not */ int fSelected; /* whether already selected or not */ char *cpResult; /* the result string */ } Line; #define MAXLINELEN 1024 #define MAXLINES 1024 #define MAXBUF MAXLINELEN*MAXLINES extern struct Line *spaLines[MAXLINES]; extern int nLines; /* * Prototypes */ extern int iSelect(char *caBuf, int pos, char *title, char *name, char *tagbegin, char *tagend, int stripco, int stripws, int browsealways, int allselectable, int multiselect, int exitnoselect, char **keystr); /*EOF*/ @ 1.3 log @adjust copyright yearW @ text @d14 1 a14 1 ** Copyright (c) 1997-2005 Ralf S. Engelschall. @ 1.2 log @modernize source tree @ text @d14 1 a14 1 ** Copyright (c) 1997-2004 Ralf S. Engelschall. @ 1.1 log @Initial revision @ text @d14 1 a14 1 ** Copyright (c) 1996,1997 Ralf S. Engelschall, All rights reserved. d16 9 a24 10 ** This program is free software; it may be redistributed and/or modified ** only under the terms of either the Artistic License or the GNU General ** Public License, which may be found in the ePerl source distribution. ** Look at the files ARTISTIC and COPYING or run ``eperl -l'' to receive ** a built-in copy of both license files. ** ** This program is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the ** Artistic License or the GNU General Public License for more details. d37 1 a37 1 int fSelected; /* whether alreay selected or not */ d41 1 a41 1 #define MAXLINELEN 256 d47 9 a55 1 extern char caBuf[MAXBUF]; @ 1.1.1.1 log @Import iSelect 1.0.0 @ text @@ 1.1.1.2 log @Import iSelect 1.0.4 @ text @d42 1 a42 1 #define MAXLINELEN 1024 a48 8 /* * Prototypes */ extern int iSelect(int pos, char *title, char *name, int stripco, int stripws, int browsealways, int allselectable, int multiselect, int exitnoselect); @ 1.1.1.3 log @Import iSelect 1.1.0 @ text @d38 1 a38 1 int fSelected; /* whether already selected or not */ d48 1 d53 2 a54 2 extern int iSelect(char *caBuf, int pos, char *title, char *name, char *tagbegin, char *tagend, int stripco, int stripws, d56 1 a56 2 int multiselect, int exitnoselect, char **keystr); @ 1.1.1.4 log @Import iSelect 1.2.0 @ text @d14 1 a14 1 ** Copyright (c) 1996-1999 Ralf S. Engelschall. d16 10 a25 9 ** This program is free software; it may be redistributed and/or ** modified only under the terms of the GNU General Public License, ** which may be found in the iSelect source distribution. ** Look at the file COPYING for details. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ** See the the GNU General Public License for more details. @