mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
[checkbox] color_node
This commit is contained in:
parent
e8719ba9e7
commit
4411485a04
@ -50,10 +50,15 @@ dlg_format_checkbox(struct dialog_data *dlg_data,
|
|||||||
|
|
||||||
if (text && *text) {
|
if (text && *text) {
|
||||||
if (rw) *rw -= CHECKBOX_LS;
|
if (rw) *rw -= CHECKBOX_LS;
|
||||||
dlg_format_text_do(dlg_data, text, x + CHECKBOX_LS, y,
|
// dlg_format_text_do(dlg_data, text, x + CHECKBOX_LS, y,
|
||||||
|
// w - CHECKBOX_LS, rw,
|
||||||
|
// get_bfu_color(term, "dialog.checkbox-label"),
|
||||||
|
// align, format_only);
|
||||||
|
dlg_format_text_do_node(dlg_data, text, x + CHECKBOX_LS, y,
|
||||||
w - CHECKBOX_LS, rw,
|
w - CHECKBOX_LS, rw,
|
||||||
get_bfu_color(term, "dialog.checkbox-label"),
|
get_bfu_color_node(term, "dialog.checkbox-label"),
|
||||||
align, format_only);
|
align, format_only);
|
||||||
|
|
||||||
if (rw) *rw += CHECKBOX_LS;
|
if (rw) *rw += CHECKBOX_LS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -62,24 +67,29 @@ static widget_handler_status_T
|
|||||||
display_checkbox(struct dialog_data *dlg_data, struct widget_data *widget_data)
|
display_checkbox(struct dialog_data *dlg_data, struct widget_data *widget_data)
|
||||||
{
|
{
|
||||||
struct terminal *term = dlg_data->win->term;
|
struct terminal *term = dlg_data->win->term;
|
||||||
struct color_pair *color;
|
// struct color_pair *color;
|
||||||
|
unsigned int color_node;
|
||||||
const char *text;
|
const char *text;
|
||||||
struct el_box *pos = &widget_data->box;
|
struct el_box *pos = &widget_data->box;
|
||||||
int selected = is_selected_widget(dlg_data, widget_data);
|
int selected = is_selected_widget(dlg_data, widget_data);
|
||||||
|
|
||||||
if (selected) {
|
if (selected) {
|
||||||
color = get_bfu_color(term, "dialog.checkbox-selected");
|
// color = get_bfu_color(term, "dialog.checkbox-selected");
|
||||||
|
color_node = get_bfu_color_node(term, "dialog.checkbox-selected");
|
||||||
} else {
|
} else {
|
||||||
color = get_bfu_color(term, "dialog.checkbox");
|
// color = get_bfu_color(term, "dialog.checkbox");
|
||||||
|
color_node = get_bfu_color_node(term, "dialog.checkbox");
|
||||||
}
|
}
|
||||||
if (!color) return EVENT_PROCESSED;
|
// if (!color) return EVENT_PROCESSED;
|
||||||
|
if (!color_node) return EVENT_PROCESSED;
|
||||||
|
|
||||||
if (widget_data->info.checkbox.checked)
|
if (widget_data->info.checkbox.checked)
|
||||||
text = widget_data->widget->info.checkbox.gid ? "(X)" : "[X]";
|
text = widget_data->widget->info.checkbox.gid ? "(X)" : "[X]";
|
||||||
else
|
else
|
||||||
text = widget_data->widget->info.checkbox.gid ? "( )" : "[ ]";
|
text = widget_data->widget->info.checkbox.gid ? "( )" : "[ ]";
|
||||||
|
|
||||||
draw_dlg_text(dlg_data, pos->x, pos->y, text, CHECKBOX_LEN, 0, color);
|
// draw_dlg_text(dlg_data, pos->x, pos->y, text, CHECKBOX_LEN, 0, color);
|
||||||
|
draw_dlg_text_node(dlg_data, pos->x, pos->y, text, CHECKBOX_LEN, 0, color_node);
|
||||||
|
|
||||||
if (selected) {
|
if (selected) {
|
||||||
set_dlg_cursor(term, dlg_data, pos->x + 1, pos->y, 1);
|
set_dlg_cursor(term, dlg_data, pos->x + 1, pos->y, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user