|
|
|
@ -15,17 +15,17 @@
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
#include <gtk/gtkx.h>
|
|
|
|
|
|
|
|
|
|
#include "../compile/ubl-cmake.h"
|
|
|
|
|
#include "ubl-cmake.h"
|
|
|
|
|
#ifdef WEBKIT_FOUND
|
|
|
|
|
#include <webkit2/webkit2.h>
|
|
|
|
|
#endif
|
|
|
|
|
#define DesktopPath "/usr/share/applications/"
|
|
|
|
|
|
|
|
|
|
#define for_dictionaries(obj, obj1) for (obj = obj1->first; obj != NULL; obj = obj->next)
|
|
|
|
|
|
|
|
|
|
#define try bool __HadError=false;
|
|
|
|
|
#define catch(x) ExitJmp:if(__HadError)
|
|
|
|
|
#define throw(x) {__HadError=true;goto ExitJmp;}
|
|
|
|
|
static char** array_size_pow;
|
|
|
|
|
#define for_dictionaries(obj, obj1) for (obj = obj1->first; obj != NULL; obj = obj->next)
|
|
|
|
|
|
|
|
|
|
#define new(type) malloc(sizeof(type))
|
|
|
|
|
#define new_arr(type,size) malloc(sizeof(type)*size)
|
|
|
|
|
|
|
|
|
@ -221,6 +221,7 @@ void yon_terminal_integrated_start(GtkWidget *terminal, char* command, void *end
|
|
|
|
|
|
|
|
|
|
enum YON_TYPE{
|
|
|
|
|
YON_TYPE_STRING,
|
|
|
|
|
YON_TYPE_STRING_LIST,
|
|
|
|
|
YON_TYPE_INT,
|
|
|
|
|
YON_TYPE_BOOLEAN,
|
|
|
|
|
YON_TYPE_OTHER
|
|
|
|
@ -257,6 +258,8 @@ void yon_window_config_add_custom_parameter(char *param_name, char *section, voi
|
|
|
|
|
|
|
|
|
|
void yon_window_config_erase_custom_parameter(char *param_name, char *section);
|
|
|
|
|
|
|
|
|
|
int yon_window_config_get_parameter(char *section, char *config_parameter, void *return_value, enum YON_TYPE type);
|
|
|
|
|
|
|
|
|
|
int yon_gtk_combo_box_fill(GtkWidget *combo, char **parameters,int size);
|
|
|
|
|
|
|
|
|
|
int yon_gtk_combo_box_text_find(GtkWidget *combo_box, char *text_to_find);
|
|
|
|
|