2010-11-22 17:15:28 +03:00
|
|
|
/** \file usermenu.h
|
2009-02-05 21:28:18 +03:00
|
|
|
* \brief Header: user menu implementation
|
|
|
|
*/
|
|
|
|
|
2010-11-22 17:15:28 +03:00
|
|
|
#ifndef MC__USERMENU_H
|
|
|
|
#define MC__USERMENU_H
|
2004-12-03 22:17:46 +03:00
|
|
|
|
2010-02-02 13:48:08 +03:00
|
|
|
#include "lib/global.h"
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2016-03-03 22:51:40 +03:00
|
|
|
#include "src/editor/edit.h" /* WEdit */
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
|
2016-03-03 22:51:40 +03:00
|
|
|
gboolean user_menu_cmd (const WEdit * edit_widget, const char *menu_file, int selected_entry);
|
|
|
|
char *expand_format (const WEdit * edit_widget, char c, gboolean do_quote);
|
1999-10-19 08:21:26 +04:00
|
|
|
int check_format_view (const char *);
|
|
|
|
int check_format_var (const char *, char **);
|
|
|
|
int check_format_cd (const char *);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** inline functions ****************************************************************************/
|
2010-11-22 17:15:28 +03:00
|
|
|
|
|
|
|
#endif /* MC__USERMENU_H */
|