2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__OSDEP_NEWWIN_H
|
|
|
|
#define EL__OSDEP_NEWWIN_H
|
|
|
|
|
|
|
|
#include "terminal/terminal.h"
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
/* {struct open_in_new} and @open_in_new is used for setting up menues
|
|
|
|
* of how new windows can be opened. */
|
|
|
|
struct open_in_new {
|
|
|
|
enum term_env_type env; /* The term->environment the entry covers */
|
2021-01-02 10:20:27 -05:00
|
|
|
char *command; /* The default command for openning a window */
|
|
|
|
char *text; /* The menu text */
|
2005-09-15 09:58:31 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* The table containing all the possible environment types */
|
|
|
|
extern const struct open_in_new open_in_new[];
|
|
|
|
|
|
|
|
/* Iterator for the @open_in_new table over a terminal environment bitmap. */
|
|
|
|
#define foreach_open_in_new(i, term_env) \
|
|
|
|
for ((i) = 0; open_in_new[(i)].env; (i)++) \
|
|
|
|
if (((term_env) & open_in_new[(i)].env))
|
|
|
|
|
|
|
|
/* Returns the number of possible ways to open new windows using the
|
|
|
|
* environment of @term. */
|
|
|
|
int can_open_in_new(struct terminal *term);
|
|
|
|
|
|
|
|
/* Opens a new window with the executable @exe_name under the given terminal
|
|
|
|
* @environment and passing the arguments in the string @param.
|
|
|
|
*
|
|
|
|
* For the ENV_XWIN environment, @exe_name being 'elinks' and @param empty the
|
|
|
|
* window will be opened using: 'xterm -e elinks' */
|
2021-01-02 10:20:27 -05:00
|
|
|
void open_new_window(struct terminal *term, char *exe_name,
|
|
|
|
enum term_env_type environment, char *param);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|