Terminal emulator with all the bells and whistles
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
728 B
20 lines
728 B
#ifndef _MAIN_H__ |
|
#define _MAIN_H__ 1 |
|
|
|
#include "config.h" |
|
|
|
Config * main_config_get(void); |
|
void main_new(Evas_Object *win, Evas_Object *term); |
|
void main_new_with_dir(Evas_Object *win, Evas_Object *term, const char *wdir); |
|
void main_split_h(Evas_Object *win, Evas_Object *term, const char *cmd); |
|
void main_split_v(Evas_Object *win, Evas_Object *term, const char *cmd); |
|
void term_close(Evas_Object *win, Evas_Object *term, |
|
Eina_Bool hold_if_requested); |
|
|
|
void main_media_update(const Config *config); |
|
void main_media_mute_update(const Config *config); |
|
void main_media_visualize_update(const Config *config); |
|
void main_config_sync(const Config *config); |
|
|
|
void change_theme(Evas_Object *win, Config *config); |
|
#endif
|
|
|