1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */
#ifndef __UI_MAIN_CONFIG_H__
#define __UI_MAIN_CONFIG_H__
#include <pobl/bl_types.h>
#include <pobl/bl_conf.h>
#include <vt_term.h>
#include "ui_layout.h"
typedef struct ui_main_config {
/*
* Public (read only)
*/
int x;
int y;
int geom_hint;
u_int cols;
u_int rows;
u_int font_size;
u_int tab_size;
u_int screen_width_ratio;
u_int num_log_lines;
ui_mod_meta_mode_t mod_meta_mode;
ui_bel_mode_t bel_mode;
ui_sb_mode_t sb_mode;
vt_char_encoding_t encoding;
int is_auto_encoding;
ui_type_engine_t type_engine;
ui_font_present_t font_present;
vt_bidi_mode_t bidi_mode;
vt_vertical_mode_t vertical_mode;
vt_bs_mode_t bs_mode;
vt_unicode_policy_t unicode_policy;
vt_alt_color_mode_t alt_color_mode;
u_long parent_window;
char *disp_name;
char *app_name;
char *title;
char *icon_name;
char *wm_role;
char *term_type;
char *scrollbar_view_name;
char *pic_file_path;
/* BACKWARD COMPAT (3.1.7 or before) */
#if 1
char *shortcut_strs[4];
#endif
char *fg_color;
char *bg_color;
char *cursor_fg_color;
char *cursor_bg_color;
char *bd_color;
char *ul_color;
char *bl_color;
char *rv_color;
char *it_color;
char *co_color;
char *sb_fg_color;
char *sb_bg_color;
char *mod_meta_key;
char *icon_path;
char *input_method;
char *init_str;
char *bidi_separators;
#if defined(USE_WIN32API) || defined(USE_LIBSSH2)
char *default_server;
#endif
#ifdef USE_LIBSSH2
char *public_key;
char *private_key;
#endif
char *work_dir;
char *cmd_path;
char **cmd_argv;
u_int16_t brightness;
u_int16_t contrast;
u_int16_t gamma;
u_int8_t col_size_of_width_a;
u_int8_t step_in_changing_font_size;
u_int8_t alpha;
u_int8_t fade_ratio;
int8_t line_space;
int8_t letter_space;
int8_t use_mdi;
int8_t use_login_shell;
int8_t use_ctl;
int8_t iso88591_font_for_usascii;
int8_t receive_string_via_ucs;
int8_t use_transbg;
int8_t use_char_combining;
int8_t use_multi_col_char;
int8_t use_vertical_cursor;
int8_t borderless;
int8_t use_dynamic_comb;
int8_t logging_vt_seq;
int8_t allow_osc52;
int8_t blink_cursor;
u_int8_t hmargin;
u_int8_t vmargin;
u_int8_t layout_hmargin;
u_int8_t layout_vmargin;
int8_t hide_underline;
int8_t underline_offset;
int8_t baseline_offset;
int8_t use_bold_font;
int8_t use_italic_font;
int8_t use_local_echo;
int8_t use_locked_title;
int8_t use_x11_forwarding;
int8_t use_auto_detect;
int8_t unlimit_log_size;
int8_t use_ot_layout;
int8_t ignore_broadcasted_chars;
int8_t use_ansi_colors;
#if defined(USE_WIN32API) || defined(USE_LIBSSH2)
int8_t show_dialog;
#endif
} ui_main_config_t;
void ui_prepare_for_main_config(bl_conf_t *conf);
void ui_main_config_init(ui_main_config_t *main_config, bl_conf_t *conf, int argc, char **argv);
void ui_main_config_final(ui_main_config_t *main_config);
#endif
|