Try to get fullscreenmode to draw nicer.

This commit is contained in:
Dave Davenport 2016-02-29 12:11:04 +01:00
parent 57caf48492
commit fb2c23a429
2 changed files with 29 additions and 19 deletions

View File

@ -198,6 +198,10 @@ static void calculate_window_position ( RofiViewState *state )
// Apply offset.
state->x += config.x_offset;
state->y += config.y_offset;
if ( config.fullscreen ) {
state->x = state->mon.x;
state->y = state->mon.y;
}
}
void rofi_view_queue_redraw ( void )
@ -622,6 +626,10 @@ static void rofi_view_calculate_window_and_element_width ( RofiViewState *state
// Calculate as float to stop silly, big rounding down errors.
state->w = config.menu_width < 101 ? ( state->mon.w / 100.0f ) * ( float ) config.menu_width : config.menu_width;
}
if ( config.fullscreen ) {
state->w = state->mon.w;
state->h = state->mon.h;
}
if ( state->columns > 0 ) {
state->element_width = state->w - ( 2 * ( state->border ) );
@ -1566,13 +1574,18 @@ RofiViewState *rofi_view_create ( Mode *sw,
// we need this at this point so we can get height.
state->line_height = textbox_get_estimated_char_height ();
int element_height = state->line_height * config.element_height;
state->case_indicator = textbox_create ( TB_AUTOWIDTH, ( state->border ), ( state->border ),
0, state->line_height, NORMAL, "*" );
state->top_offset = state->border * 1 + state->line_height + 2 + config.line_margin * 2;
// Height of a row.
if ( config.menu_lines == 0 ) {
if ( config.menu_lines == 0 || config.fullscreen ) {
// Autosize it.
int h = state->mon.h - state->border * 2 - config.line_margin;
int r = ( h ) / ( state->line_height * config.element_height ) - 1 - config.sidebar_mode;
int h = state->mon.h - state->top_offset - config.padding;
if ( config.sidebar_mode == TRUE ) {
h -= state->line_height + config.line_margin;
}
int r = MAX ( 1, ( h ) / ( element_height + config.line_margin ) );
state->menu_lines = r;
}
else {
@ -1593,8 +1606,6 @@ RofiViewState *rofi_view_create ( Mode *sw,
( state->border ) + textbox_get_width ( state->prompt_tb ), ( state->border ),
entrybox_width, state->line_height, NORMAL, input );
state->top_offset = state->border * 1 + state->line_height + 2 + config.line_margin * 2;
// Move indicator to end.
widget_move ( WIDGET ( state->case_indicator ), state->border + textbox_get_width ( state->prompt_tb ) + entrybox_width,
state->border );
@ -1609,7 +1620,6 @@ RofiViewState *rofi_view_create ( Mode *sw,
state->top_offset += config.line_margin * 2 + 2;
}
int element_height = state->line_height * config.element_height;
// filtered list display
state->boxes = g_malloc0_n ( state->max_elements, sizeof ( textbox* ) );
@ -1666,8 +1676,6 @@ RofiViewState *rofi_view_create ( Mode *sw,
// Display it.
xcb_configure_window ( xcb_connection, state->window, mask, vals );
cairo_xcb_surface_set_size ( surface, state->w, state->h );
xcb_map_window ( xcb_connection, state->window );
xcb_flush ( xcb_connection );
// if grabbing keyboard failed, fall through
state->selected = 0;
@ -1677,6 +1685,8 @@ RofiViewState *rofi_view_create ( Mode *sw,
rofi_view_refilter ( state );
rofi_view_update ( state );
xcb_map_window ( xcb_connection, state->window );
xcb_flush ( xcb_connection );
if ( sncontext != NULL ) {
sn_launchee_context_complete ( sncontext );
}