1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
/*
*
* (c) Vladi Belperchinov-Shabanski "Cade" <cade@biscom.net> 1998-2003
*
* SEE `README',`LICENSE' OR `COPYING' FILE FOR LICENSE AND OTHER DETAILS!
*
* $Id: form_in.cpp,v 1.8 2003/04/27 11:53:43 cade Exp $
*
*/
#include "form_in.h"
#include "scroll.h"
BSet FI_LETTERS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
BSet FI_DIGITS = "0123456789";
BSet FI_ALPHANUM = FI_LETTERS & FI_DIGITS;
BSet FI_REALS = FI_DIGITS & "Ee+-.";
BSet FI_USERS = "";
BSet FI_MASKS = "A#$U"; // A-any, #-int, $-real, U-users
int EditStrBF = CONCOLOR( chWHITE, cBLUE );
int EditStrFH = CONCOLOR( cBLACK, cWHITE );
int TextInput( int x, int y, const char *prompt, int maxlen, int fieldlen, VString *strres, void (*handlekey)( int key, VString &s, int &pos ) )
{
int res = 0;
int insert = 1;
VString str = *strres;
VString tmp;
int ch;
ScrollPos scroll;
scroll.set_min_max( 0, str_len( str ) );
scroll.set_pagesize( fieldlen );
scroll.go( str_len(str) );
int show = 1;
int firsthit = 1;
int opage = -1;
con_cshow();
while(1)
{
if (opage != scroll.page()) show = 1;
if (show)
{
str_copy( tmp, str, scroll.page(), scroll.pagesize() );
str_pad( tmp, -scroll.pagesize() );
tmp = " " + tmp + " ";
if ( scroll.page() > 0 ) str_set_ch( tmp, 0, '<' );
if ( scroll.page()+scroll.pagesize() < str_len(str) ) str_set_ch( tmp, str_len(tmp)-1, '>' );
con_out(x, y, tmp, firsthit ? EditStrFH : EditStrBF );
show = 0;
opage = scroll.page();
}
con_xy( x + scroll.pos() - scroll.page() + 1 , y );
ch = con_getch();
if( ch >= 32 && ch <= 255 && str_len(str) < 70 )
{
if (firsthit)
{
str = "";
scroll.go(0);
firsthit = 0;
}
if (!insert) str_del( str, scroll.pos(), 1 );
str_ins_ch( str, scroll.pos(), ch );
scroll.set_min_max( 0, str_len( str ) );
scroll.go( scroll.pos() );
scroll.down();
show = 1;
};
if (firsthit)
{
show = 1;
firsthit = 0;
}
if( ch == 27 )
{
res = 0;
break;
} else
if( ch == 13 )
{
*strres = str;
res = 1;
break;
} else
if( (ch == KEY_BACKSPACE || ch == 8 ) && (scroll.pos() > 0) )
{
scroll.up();
str_del( str, scroll.pos(), 1 );
show = 1;
} else
if ( ch == KEY_IC ) insert = !insert; else
if ( ch == KEY_LEFT ) scroll.up(); else
if ( ch == KEY_RIGHT ) scroll.down(); else
/*
if ( ch == KEY_PPAGE ) scroll.ppage(); else
if ( ch == KEY_NPAGE ) scroll.npage(); else
*/
if ( ch == KEY_HOME || ch == KEY_CTRL_A ) scroll.go(0); else
if ( ch == KEY_END || ch == KEY_CTRL_E ) scroll.go(str_len(str)); else
if ( ( ch == KEY_DC || ch == KEY_CTRL_D ) && scroll.pos() < str_len(str) )
{
str_del( str, scroll.pos(), 1 );
show = 1;
} else
if ( handlekey )
{
int npos = scroll.pos();
handlekey( ch, str, npos );
scroll.set_min_max( 0, str_len( str ) );
scroll.go( scroll.pos() );
if (scroll.pos() != npos) scroll.go( npos );
show = 1;
}
scroll.set_min_max( 0, str_len( str ) );
scroll.go( scroll.pos() );
}
con_chide();
return res;
}
int TextInput( int x, int y, const char *prompt, int maxlen, int fieldlen, char *strres, void (*handlekey)( int key, VString &s, int &pos ) )
{
VString str = strres;
int res = TextInput( x, y, prompt, maxlen, fieldlen, &str, handlekey );
strcpy( strres, str.data() );
return res;
}
// eof form_in.cpp
|