File src/ui/fileview.c changed (mode: 100644) (index 08f66ea8c..a55280191) |
... |
... |
static void column_line_print(const char buf[], int offset, AlignType align, |
123 |
123 |
static void column_line_match(const char full_column[], |
static void column_line_match(const char full_column[], |
124 |
124 |
const format_info_t *info, int *match_from, int *match_to); |
const format_info_t *info, int *match_from, int *match_to); |
125 |
125 |
static void draw_line_number(const column_data_t *cdt, int column); |
static void draw_line_number(const column_data_t *cdt, int column); |
|
126 |
|
static int is_primary_colored_column_id(int id); |
126 |
127 |
static int is_primary_column_id(int id); |
static int is_primary_column_id(int id); |
127 |
|
static cchar_t prepare_col_color(const view_t *view, int primary, int line_nr, |
|
128 |
|
const column_data_t *cdt, int real_id); |
|
|
128 |
|
static cchar_t prepare_col_color(const view_t *view, int is_primary_colored, |
|
129 |
|
int line_nr, const column_data_t *cdt, int real_id); |
129 |
130 |
static void mix_in_common_colors(col_attr_t *col, const view_t *view, |
static void mix_in_common_colors(col_attr_t *col, const view_t *view, |
130 |
131 |
dir_entry_t *entry, int line_color); |
dir_entry_t *entry, int line_color); |
131 |
132 |
static void mix_in_file_hi(const view_t *view, dir_entry_t *entry, int type_hi, |
static void mix_in_file_hi(const view_t *view, dir_entry_t *entry, int type_hi, |
|
... |
... |
column_line_print(const char buf[], int offset, AlignType align, |
1182 |
1183 |
const int numbers_visible = (offset == 0 && cdt->number_width > 0); |
const int numbers_visible = (offset == 0 && cdt->number_width > 0); |
1183 |
1184 |
const int padding = (cfg.extra_padding != 0); |
const int padding = (cfg.extra_padding != 0); |
1184 |
1185 |
|
|
1185 |
|
const int primary = is_primary_column_id(info->id); |
|
|
1186 |
|
const int is_primary_colored = is_primary_colored_column_id(info->id); |
1186 |
1187 |
const cchar_t line_attrs = |
const cchar_t line_attrs = |
1187 |
|
prepare_col_color(view, primary, 0, cdt, info->real_id); |
|
|
1188 |
|
prepare_col_color(view, is_primary_colored, 0, cdt, info->real_id); |
1188 |
1189 |
|
|
1189 |
1190 |
/* Non-empty prefix contains tree pseudo-graphics. */ |
/* Non-empty prefix contains tree pseudo-graphics. */ |
1190 |
|
size_t extra_prefix = primary ? *cdt->prefix_len : 0U; |
|
|
1191 |
|
const int is_treeable_column = is_primary_column_id(info->id); |
|
1192 |
|
size_t extra_prefix = is_treeable_column ? *cdt->prefix_len : 0U; |
1191 |
1193 |
|
|
1192 |
1194 |
if(extra_prefix != 0U && align == AT_RIGHT) |
if(extra_prefix != 0U && align == AT_RIGHT) |
1193 |
1195 |
{ |
{ |
|
... |
... |
column_line_match(const char full_column[], const format_info_t *info, |
1292 |
1294 |
const column_data_t *cdt = info->data; |
const column_data_t *cdt = info->data; |
1293 |
1295 |
dir_entry_t *entry = cdt->entry; |
dir_entry_t *entry = cdt->entry; |
1294 |
1296 |
|
|
1295 |
|
int primary = is_primary_column_id(info->id); |
|
1296 |
|
if(!primary || cdt->view->matches == 0 || !entry->search_match || |
|
|
1297 |
|
int is_searchable_column = is_primary_column_id(info->id); |
|
1298 |
|
if(!is_searchable_column || cdt->view->matches == 0 || !entry->search_match || |
1297 |
1299 |
cdt->custom_match) |
cdt->custom_match) |
1298 |
1300 |
{ |
{ |
1299 |
1301 |
return; |
return; |
|
... |
... |
column_line_match(const char full_column[], const format_info_t *info, |
1326 |
1328 |
} |
} |
1327 |
1329 |
} |
} |
1328 |
1330 |
|
|
1329 |
|
/* Checks whether column id corresponds to a column that displays part of |
|
1330 |
|
* entry's path or name. Returns non-zero if so. */ |
|
|
1331 |
|
/* Checks whether column id corresponds to a column that is affected by a |
|
1332 |
|
* highlight derived from file's type/path/name. Returns non-zero if so. */ |
|
1333 |
|
static int |
|
1334 |
|
is_primary_colored_column_id(int id) |
|
1335 |
|
{ |
|
1336 |
|
return id == SK_BY_EXTENSION |
|
1337 |
|
|| id == SK_BY_FILEEXT |
|
1338 |
|
|| is_primary_column_id(id); |
|
1339 |
|
} |
|
1340 |
|
|
|
1341 |
|
/* Checks whether column id corresponds to a column that displays a substantial |
|
1342 |
|
* part of entry's path. Such columns can be searched and also display |
|
1343 |
|
* pseudographics of a tree. Returns non-zero if so. */ |
1331 |
1344 |
static int |
static int |
1332 |
1345 |
is_primary_column_id(int id) |
is_primary_column_id(int id) |
1333 |
1346 |
{ |
{ |
|
... |
... |
is_primary_column_id(int id) |
1335 |
1348 |
|| id == SK_BY_INAME |
|| id == SK_BY_INAME |
1336 |
1349 |
|| id == SK_BY_ROOT |
|| id == SK_BY_ROOT |
1337 |
1350 |
|| id == SK_BY_FILEROOT |
|| id == SK_BY_FILEROOT |
1338 |
|
|| id == SK_BY_EXTENSION |
|
1339 |
|
|| id == SK_BY_FILEEXT |
|
1340 |
1351 |
|| vlua_viewcolumn_is_primary(curr_stats.vlua, id); |
|| vlua_viewcolumn_is_primary(curr_stats.vlua, id); |
1341 |
1352 |
} |
} |
1342 |
1353 |
|
|
1343 |
1354 |
/* Calculate color attributes for a view column. Returns attributes that can be |
/* Calculate color attributes for a view column. Returns attributes that can be |
1344 |
1355 |
* used for drawing on a window. */ |
* used for drawing on a window. */ |
1345 |
1356 |
static cchar_t |
static cchar_t |
1346 |
|
prepare_col_color(const view_t *view, int primary, int line_nr, |
|
|
1357 |
|
prepare_col_color(const view_t *view, int is_primary_colored, int line_nr, |
1347 |
1358 |
const column_data_t *cdt, int real_id) |
const column_data_t *cdt, int real_id) |
1348 |
1359 |
{ |
{ |
1349 |
1360 |
const col_scheme_t *const cs = ui_view_get_cs(view); |
const col_scheme_t *const cs = ui_view_get_cs(view); |
|
... |
... |
prepare_col_color(const view_t *view, int primary, int line_nr, |
1371 |
1382 |
|
|
1372 |
1383 |
/* Highlight derived from file type/path/name always affects primary field, |
/* Highlight derived from file type/path/name always affects primary field, |
1373 |
1384 |
* but the rest depends on configuration. */ |
* but the rest depends on configuration. */ |
1374 |
|
const int with_line_hi = primary |
|
|
1385 |
|
const int with_line_hi = is_primary_colored |
1375 |
1386 |
|| (cfg.color_what == CW_ONE_ROW && is_current) |
|| (cfg.color_what == CW_ONE_ROW && is_current) |
1376 |
1387 |
|| (cfg.color_what == CW_ALL_ROWS); |
|| (cfg.color_what == CW_ALL_ROWS); |
1377 |
1388 |
const int line_color = with_line_hi ? cdt->line_hi_group : -1; |
const int line_color = with_line_hi ? cdt->line_hi_group : -1; |
|
... |
... |
prepare_col_color(const view_t *view, int primary, int line_nr, |
1381 |
1392 |
{ |
{ |
1382 |
1393 |
int color = (view == curr_view || !cdt->is_main) ? CURR_LINE_COLOR |
int color = (view == curr_view || !cdt->is_main) ? CURR_LINE_COLOR |
1383 |
1394 |
: OTHER_LINE_COLOR; |
: OTHER_LINE_COLOR; |
1384 |
|
/* Avoid combining attributes for non-primary column. */ |
|
1385 |
|
if(!primary) |
|
|
1395 |
|
/* Avoid combining attributes for non-primary columns. */ |
|
1396 |
|
if(!is_primary_colored) |
1386 |
1397 |
{ |
{ |
1387 |
1398 |
cs_overlap_colors(&col, &cs->color[color]); |
cs_overlap_colors(&col, &cs->color[color]); |
1388 |
1399 |
} |
} |