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 line 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 /** returns the next word in the handler's command buffer; if the buffer is empty, displays the given prompt or the 72 * current dialog's path and asks the user for further input; the user must not free or modify the returned string 83 /** adds a single line of input to the dialog handler which is treated as if the user entered the command line */ 90 /** adds a command to the command history of the dialog handler; if a dialog is given, the command is preceeded 91 * by the dialog's command path; if no command is given, only the path to the dialog is added to the command history 98 SCIP_Bool escapecommand /**< should special characters in command be prefixed by an escape char? */ 108 /** 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) Definition: dialog.c:1146 Definition: struct_scip.h:53 Definition: struct_dialog.h:35 void SCIPdialoghdlrClearBuffer(SCIP_DIALOGHDLR *dialoghdlr) Definition: dialog.c:435 SCIP_RETCODE SCIPdialogDisplayCompletions(SCIP_DIALOG *dialog, SCIP *scip, const char *entryname) Definition: dialog.c:1115 type definitions for return codes for SCIP methods SCIP_RETCODE SCIPdialoghdlrGetLine(SCIP_DIALOGHDLR *dialoghdlr, SCIP_DIALOG *dialog, const char *prompt, char **inputline, SCIP_Bool *endoffile) Definition: dialog.c:459 SCIP_RETCODE SCIPdialogWriteHistory(const char *filename) Definition: dialog.c:1251 SCIP_Bool SCIPdialogHasEntry(SCIP_DIALOG *dialog, const char *entryname) Definition: dialog.c:970 void SCIPdialogSetData(SCIP_DIALOG *dialog, SCIP_DIALOGDATA *dialogdata) Definition: dialog.c:1240 SCIP_DIALOG ** SCIPdialogGetSubdialogs(SCIP_DIALOG *dialog) Definition: dialog.c:1210 type definitions for SCIP's main datastructure SCIP_DIALOG * SCIPdialoghdlrGetRoot(SCIP_DIALOGHDLR *dialoghdlr) Definition: dialog.c:425 SCIP_RETCODE SCIPdialoghdlrAddHistory(SCIP_DIALOGHDLR *dialoghdlr, SCIP_DIALOG *dialog, const char *command, SCIP_Bool escapecommand) Definition: dialog.c:711 SCIP_RETCODE SCIPdialogDisplayMenuEntry(SCIP_DIALOG *dialog, SCIP *scip) Definition: dialog.c:1081 SCIP_RETCODE SCIPdialoghdlrAddInputLine(SCIP_DIALOGHDLR *dialoghdlr, const char *inputline) Definition: dialog.c:687 Definition: struct_dialog.h:60 SCIP_RETCODE SCIPdialoghdlrGetWord(SCIP_DIALOGHDLR *dialoghdlr, SCIP_DIALOG *dialog, const char *prompt, char **inputword, SCIP_Bool *endoffile) Definition: dialog.c:536 SCIP_RETCODE SCIPdialogDisplayMenu(SCIP_DIALOG *dialog, SCIP *scip) Definition: dialog.c:1047 type definitions for user interface dialog common defines and data types used in all packages of SCIP Definition: objbranchrule.h:33 int SCIPdialogFindEntry(SCIP_DIALOG *dialog, const char *entryname, SCIP_DIALOG **subdialog) Definition: dialog.c:1003 SCIP_Bool SCIPdialoghdlrIsBufferEmpty(SCIP_DIALOGHDLR *dialoghdlr) Definition: dialog.c:446 |