1 /** \file command.h 2 * \brief Header: command line widget 3 */ 4 5 #ifndef MC__COMMAND_H 6 #define MC__COMMAND_H 7 8 #include "lib/widget.h" 9 10 /*** typedefs(not structures) and defined constants **********************************************/ 11 12 /*** enums ***************************************************************************************/ 13 14 /*** structures declarations (and typedefs of structures)*****************************************/ 15 16 /*** global variables defined in .c file *********************************************************/ 17 18 extern WInput *cmdline; 19 20 /*** declarations of public functions ************************************************************/ 21 22 WInput *command_new (int y, int x, int len); 23 void command_set_default_colors (void); 24 void command_insert (WInput * in, const char *text, gboolean insert_extra_space); 25 26 /*** inline functions ****************************************************************************/ 27 #endif /* MC__COMMAND_H */