e770acc969
* NEW: Added Key static class containing key constants * NEW: Buffered property in Window class to allow buffered output * NEW: Refresh method in Window class to produce output if Buffered property was set * NEW: Flush method in Window class to clear the input queue * NEW: Ask method in Window class to prompt the user for specific keys * NEW: PrintCenter method in Window class to print text in the centre of the screen * NEW: Window array accessors now used to change character attributes * OPT: Standard input is watched only once * BUG: Inserted missing return statement when reading Window.Border git-svn-id: svn://localhost/gambas/trunk@4627 867c0c6c-44f3-4631-809d-bfa615b0a4ec
29 lines
933 B
C
29 lines
933 B
C
/*
|
|
* c_key.h - gb.ncurses Key static class
|
|
*
|
|
* Copyright (C) 2012 Tobias Boege <tobias@gambas-buch.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* 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
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __C_KEY_H
|
|
#define __C_KEY_H
|
|
|
|
#ifndef __C_KEY_C
|
|
extern GB_DESC CKeyDesc[];
|
|
#endif
|
|
|
|
#endif /* __C_KEY_H */
|