Mercurial > hg > octave-nkf
view src/input.h @ 7259:9f02c32eb70d ss-2-9-18
[project @ 2007-12-05 18:02:33 by jwe]
author | jwe |
---|---|
date | Wed, 05 Dec 2007 18:02:34 +0000 |
parents | a1dbe9d80eee |
children | 73036cdd855d |
line wrap: on
line source
/* Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2005, 2006, 2007 John W. Eaton This file is part of Octave. Octave 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 3 of the License, or (at your option) any later version. Octave 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 Octave; see the file COPYING. If not, see <http://www.gnu.org/licenses/>. */ // Use the GNU readline library for command line editing and hisory. #if !defined (octave_input_h) #define octave_input_h 1 #include <cstdio> #include <string> #include "oct-time.h" #include "oct-obj.h" #include "pager.h" class octave_value; extern int octave_read (char *buf, unsigned max_size); extern FILE *get_input_from_file (const std::string& name, int warn = 1); extern FILE *get_input_from_stdin (void); // Global pointer for eval(). extern std::string current_eval_string; // TRUE means get input from current_eval_string. extern bool get_input_from_eval_string; // TRUE means we haven't been asked for the input from // current_eval_string yet. extern bool input_from_eval_string_pending; // TRUE means that input is coming from a file that was named on // the command line. extern bool input_from_command_line_file; // TRUE means we're parsing a function file. extern bool reading_fcn_file; // Simple name of function file we are reading. extern std::string curr_fcn_file_name; // Full name of file we are reading. extern std::string curr_fcn_file_full_name; // TRUE means we're parsing a script file. extern bool reading_script_file; // If we are reading from an M-file, this is it. extern FILE *ff_instream; // TRUE means this is an interactive shell. extern bool interactive; // TRUE means the user forced this shell to be interactive (-i). extern bool forced_interactive; // Should we issue a prompt? extern int promptflag; // A line of input. extern std::string current_input_line; // TRUE after a call to completion_matches. extern bool octave_completion_matches_called; extern std::string gnu_readline (const std::string& s, bool force_readline = false); extern void initialize_command_input (void); extern bool octave_yes_or_no (const std::string& prompt); extern octave_value do_keyboard (const octave_value_list& args = octave_value_list ()); extern std::string VPS4; enum echo_state { ECHO_OFF = 0, ECHO_SCRIPTS = 1, ECHO_FUNCTIONS = 2, ECHO_CMD_LINE = 4 }; extern int Vecho_executing_commands; extern octave_time Vlast_prompt_time; #endif /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */