summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-02-09 07:56:45 +0100
committerDave Davenport <qball@gmpclient.org>2016-02-09 07:56:45 +0100
commitc3f15a4e2aab70a3638ee3f3c934ccb7a27d92de (patch)
treea3919c393d88d7b47a5216c3f34403449d91e541 /source
parent5d430824b307fefdd1c784bb407aa28675d0009f (diff)
parent37578dff20c4571768bcc8d7dc972ecd6b37156f (diff)
Merge remote-tracking branch 'origin/master' into glib-loop
Diffstat (limited to 'source')
-rw-r--r--source/dialogs/dmenu.c8
-rw-r--r--source/textbox.c2
-rw-r--r--source/view.c12
-rw-r--r--source/xrmoptions.c1
4 files changed, 11 insertions, 12 deletions
diff --git a/source/dialogs/dmenu.c b/source/dialogs/dmenu.c
index 9eb8455e..1d3f56fe 100644
--- a/source/dialogs/dmenu.c
+++ b/source/dialogs/dmenu.c
@@ -64,6 +64,7 @@ typedef struct _DmenuModePrivateData
unsigned int num_active_list;
struct range_pair * selected_list;
unsigned int num_selected_list;
+ unsigned int do_markup;
// List with entries.
char **cmd_list;
unsigned int cmd_list_length;
@@ -171,6 +172,9 @@ static char *get_display_data ( const Mode *data, unsigned int index, int *state
*state |= SELECTED;
}
}
+ if ( pd->do_markup ) {
+ *state |= MARKUP;
+ }
return get_entry ? g_strdup ( retv[index] ) : NULL;
}
@@ -361,6 +365,9 @@ int dmenu_switcher_dialog ( void )
char **cmd_list = pd->cmd_list;
int only_selected = FALSE;
+ if ( find_arg ( "-markup-rows" ) >= 0 ) {
+ pd->do_markup = TRUE;
+ }
if ( find_arg ( "-only-match" ) >= 0 || find_arg ( "-no-custom" ) >= 0 ) {
only_selected = TRUE;
if ( cmd_list_length == 0 ) {
@@ -530,4 +537,5 @@ void print_dmenu_options ( void )
print_help_msg ( "-no-custom", "", "Don't accept custom entry", NULL, is_term );
print_help_msg ( "-select", "[string]", "Select the first row that matches", NULL, is_term );
print_help_msg ( "-password", "", "Do not show what the user inputs. Show '*' instead.", NULL, is_term );
+ print_help_msg ( "-markup-rows", "", "Allow and render pango markup as input data.", NULL, is_term );
}
diff --git a/source/textbox.c b/source/textbox.c
index 75102ec6..b6ec7fc0 100644
--- a/source/textbox.c
+++ b/source/textbox.c
@@ -159,7 +159,7 @@ static void __textbox_update_pango_text ( textbox *tb )
pango_layout_set_attributes ( tb->layout, NULL );
pango_layout_set_text ( tb->layout, string, l );
}
- else if ( tb->flags & TB_MARKUP || tb->tbft & MARKUP ) {
+ else if ( tb->tbft & MARKUP ) {
pango_layout_set_markup ( tb->layout, tb->text, -1 );
}
else {
diff --git a/source/view.c b/source/view.c
index b6e99a5b..4056a793 100644
--- a/source/view.c
+++ b/source/view.c
@@ -918,13 +918,9 @@ static void rofi_view_resize ( RofiViewState *state )
int y_offset = state->top_offset;
int x_offset = state->border;
- int rstate = 0;
- if ( config.markup_rows ) {
- rstate = TB_MARKUP;
- }
// Add newly added boxes.
for ( unsigned int i = last_length; i < state->max_elements; i++ ) {
- state->boxes[i] = textbox_create ( rstate, x_offset, y_offset,
+ state->boxes[i] = textbox_create ( 0, x_offset, y_offset,
state->element_width, element_height, NORMAL, "" );
}
scrollbar_resize ( state->scrollbar, -1, ( state->max_rows ) * ( element_height ) - config.line_margin );
@@ -1527,12 +1523,8 @@ RofiViewState *rofi_view_create ( Mode *sw,
int y_offset = state->top_offset;
int x_offset = state->border;
- int rstate = 0;
- if ( config.markup_rows ) {
- rstate = TB_MARKUP;
- }
for ( unsigned int i = 0; i < state->max_elements; i++ ) {
- state->boxes[i] = textbox_create ( rstate, x_offset, y_offset,
+ state->boxes[i] = textbox_create ( 0, x_offset, y_offset,
state->element_width, element_height, NORMAL, "" );
}
if ( !config.hide_scrollbar ) {
diff --git a/source/xrmoptions.c b/source/xrmoptions.c
index 193a8e4a..e02ed530 100644
--- a/source/xrmoptions.c
+++ b/source/xrmoptions.c
@@ -134,7 +134,6 @@ static XrmOption xrmOptions[] = {
{ xrm_String, "filter", { .str = &config.filter }, NULL, "Pre-set filter" },
{ xrm_String, "separator-style", { .str = &config.separator_style }, NULL, "Separator style (none, dash, solid)" },
{ xrm_Boolean, "hide-scrollbar", { .num = &config.hide_scrollbar }, NULL, "Hide scroll-bar" },
- { xrm_Boolean, "markup-rows", { .num = &config.markup_rows }, NULL, "Show markup" },
{ xrm_Boolean, "fullscreen", { .num = &config.fullscreen }, NULL, "Fullscreen" },
{ xrm_Boolean, "fake-transparency", { .num = &config.fake_transparency }, NULL, "Fake transparency" },
{ xrm_SNumber, "dpi", { .snum = &config.dpi }, NULL, "DPI" },