All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pub_dialog.h
Go to the documentation of this file.
22 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
59 /** returns the next word in the handler's command buffer; if the buffer is empty, displays the given prompt or the
60 * current dialog's path and asks the user for further input; the user must not free or modify the returned string
71 /** adds a single line of input to the dialog handler which is treated as if the user entered the command line */
78 /** adds a command to the command history of the dialog handler; if a dialog is given, the command is preceeded
79 * by the dialog's command path; if no command is given, only the path to the dialog is added to the command history
86 SCIP_Bool escapecommand /**< should special characters in command be prefixed by an escape char? */
96 /** returns TRUE iff a dialog entry matching exactly the given name is existing in the given dialog */
void SCIPdialogGetPath(SCIP_DIALOG *dialog, const char sepchar, char *path) void SCIPdialoghdlrClearBuffer(SCIP_DIALOGHDLR *dialoghdlr) SCIP_RETCODE SCIPdialogDisplayCompletions(SCIP_DIALOG *dialog, SCIP *scip, const char *entryname) type definitions for return codes for SCIP methods SCIP_Bool SCIPdialogHasEntry(SCIP_DIALOG *dialog, const char *entryname) SCIP_DIALOGDATA * SCIPdialogGetData(SCIP_DIALOG *dialog) void SCIPdialogSetData(SCIP_DIALOG *dialog, SCIP_DIALOGDATA *dialogdata) int SCIPdialogGetNSubdialogs(SCIP_DIALOG *dialog) SCIP_DIALOG ** SCIPdialogGetSubdialogs(SCIP_DIALOG *dialog) type definitions for SCIP's main datastructure SCIP_DIALOG * SCIPdialoghdlrGetRoot(SCIP_DIALOGHDLR *dialoghdlr) SCIP_RETCODE SCIPdialoghdlrAddHistory(SCIP_DIALOGHDLR *dialoghdlr, SCIP_DIALOG *dialog, const char *command, SCIP_Bool escapecommand) SCIP_RETCODE SCIPdialogDisplayMenuEntry(SCIP_DIALOG *dialog, SCIP *scip) const char * SCIPdialogGetDesc(SCIP_DIALOG *dialog) SCIP_RETCODE SCIPdialoghdlrAddInputLine(SCIP_DIALOGHDLR *dialoghdlr, const char *inputline) SCIP_RETCODE SCIPdialoghdlrGetWord(SCIP_DIALOGHDLR *dialoghdlr, SCIP_DIALOG *dialog, const char *prompt, char **inputword, SCIP_Bool *endoffile) SCIP_DIALOG * SCIPdialogGetParent(SCIP_DIALOG *dialog) SCIP_RETCODE SCIPdialogDisplayMenu(SCIP_DIALOG *dialog, SCIP *scip) type definitions for user interface dialog SCIP_Bool SCIPdialogIsSubmenu(SCIP_DIALOG *dialog) common defines and data types used in all packages of SCIP const char * SCIPdialogGetName(SCIP_DIALOG *dialog) int SCIPdialogFindEntry(SCIP_DIALOG *dialog, const char *entryname, SCIP_DIALOG **subdialog) SCIP_Bool SCIPdialoghdlrIsBufferEmpty(SCIP_DIALOGHDLR *dialoghdlr) |