mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-25 13:55:34 -05:00
Fix indentation
This commit is contained in:
parent
c86a28ca70
commit
7e74d39a01
4 changed files with 25 additions and 25 deletions
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Type of a mode.
|
* Type of a mode.
|
||||||
* Access should be done via mode_* functions.
|
* Access should be done via mode_* functions.
|
||||||
*/
|
*/
|
||||||
typedef struct rofi_mode Mode;
|
typedef struct rofi_mode Mode;
|
||||||
|
|
||||||
|
|
|
@ -49,15 +49,15 @@
|
||||||
#include "rofi.h"
|
#include "rofi.h"
|
||||||
#include "view.h"
|
#include "view.h"
|
||||||
|
|
||||||
const char *const monitor_position_entries[] = {
|
const char *const monitor_position_entries[] = {
|
||||||
"on focused monitor",
|
"on focused monitor",
|
||||||
"on focused window",
|
"on focused window",
|
||||||
"at mouse pointer",
|
"at mouse pointer",
|
||||||
"on monitor with focused window",
|
"on monitor with focused window",
|
||||||
"on monitor that has mouse pointer"
|
"on monitor that has mouse pointer"
|
||||||
};
|
};
|
||||||
static int stored_argc = 0;
|
static int stored_argc = 0;
|
||||||
static char **stored_argv = NULL;
|
static char **stored_argv = NULL;
|
||||||
|
|
||||||
void cmd_set_arguments ( int argc, char **argv )
|
void cmd_set_arguments ( int argc, char **argv )
|
||||||
{
|
{
|
||||||
|
|
|
@ -66,7 +66,7 @@
|
||||||
static int rofi_view_calculate_height ( RofiViewState *state );
|
static int rofi_view_calculate_height ( RofiViewState *state );
|
||||||
|
|
||||||
/** Thread pool used for filtering */
|
/** Thread pool used for filtering */
|
||||||
GThreadPool *tpool = NULL;
|
GThreadPool *tpool = NULL;
|
||||||
|
|
||||||
/** Global pointer to the currently active RofiViewState */
|
/** Global pointer to the currently active RofiViewState */
|
||||||
RofiViewState *current_active_menu = NULL;
|
RofiViewState *current_active_menu = NULL;
|
||||||
|
@ -103,15 +103,15 @@ struct
|
||||||
/** redraw idle time. */
|
/** redraw idle time. */
|
||||||
guint repaint_source;
|
guint repaint_source;
|
||||||
} CacheState = {
|
} CacheState = {
|
||||||
.main_window = XCB_WINDOW_NONE,
|
.main_window = XCB_WINDOW_NONE,
|
||||||
.fake_bg = NULL,
|
.fake_bg = NULL,
|
||||||
.edit_surf = NULL,
|
.edit_surf = NULL,
|
||||||
.edit_draw = NULL,
|
.edit_draw = NULL,
|
||||||
.fake_bgrel = FALSE,
|
.fake_bgrel = FALSE,
|
||||||
.flags = MENU_NORMAL,
|
.flags = MENU_NORMAL,
|
||||||
.views = G_QUEUE_INIT,
|
.views = G_QUEUE_INIT,
|
||||||
.idle_timeout = 0,
|
.idle_timeout = 0,
|
||||||
.count = 0L,
|
.count = 0L,
|
||||||
.repaint_source = 0,
|
.repaint_source = 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
/**
|
/**
|
||||||
* Structure holding xcb objects needed to function.
|
* Structure holding xcb objects needed to function.
|
||||||
*/
|
*/
|
||||||
struct _xcb_stuff xcb_int = {
|
struct _xcb_stuff xcb_int = {
|
||||||
.connection = NULL,
|
.connection = NULL,
|
||||||
.screen = NULL,
|
.screen = NULL,
|
||||||
.screen_nbr = -1,
|
.screen_nbr = -1,
|
||||||
|
@ -65,20 +65,20 @@ struct _xcb_stuff xcb_int = {
|
||||||
.sncontext = NULL,
|
.sncontext = NULL,
|
||||||
.monitors = NULL
|
.monitors = NULL
|
||||||
};
|
};
|
||||||
xcb_stuff *xcb = &xcb_int;
|
xcb_stuff *xcb = &xcb_int;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Depth of root window.
|
* Depth of root window.
|
||||||
*/
|
*/
|
||||||
xcb_depth_t *depth = NULL;
|
xcb_depth_t *depth = NULL;
|
||||||
xcb_visualtype_t *visual = NULL;
|
xcb_visualtype_t *visual = NULL;
|
||||||
xcb_colormap_t map = XCB_COLORMAP_NONE;
|
xcb_colormap_t map = XCB_COLORMAP_NONE;
|
||||||
/**
|
/**
|
||||||
* Visual of the root window.
|
* Visual of the root window.
|
||||||
*/
|
*/
|
||||||
static xcb_visualtype_t *root_visual = NULL;
|
static xcb_visualtype_t *root_visual = NULL;
|
||||||
xcb_atom_t netatoms[NUM_NETATOMS];
|
xcb_atom_t netatoms[NUM_NETATOMS];
|
||||||
const char *netatom_names[] = { EWMH_ATOMS ( ATOM_CHAR ) };
|
const char *netatom_names[] = { EWMH_ATOMS ( ATOM_CHAR ) };
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds for each supported modifier the possible modifier mask.
|
* Holds for each supported modifier the possible modifier mask.
|
||||||
|
@ -89,8 +89,8 @@ static unsigned int x11_mod_masks[NUM_X11MOD];
|
||||||
cairo_surface_t *x11_helper_get_screenshot_surface ( void )
|
cairo_surface_t *x11_helper_get_screenshot_surface ( void )
|
||||||
{
|
{
|
||||||
return cairo_xcb_surface_create ( xcb->connection,
|
return cairo_xcb_surface_create ( xcb->connection,
|
||||||
xcb_stuff_get_root_window ( xcb ), root_visual,
|
xcb_stuff_get_root_window ( xcb ), root_visual,
|
||||||
xcb->screen->width_in_pixels, xcb->screen->height_in_pixels );
|
xcb->screen->width_in_pixels, xcb->screen->height_in_pixels );
|
||||||
}
|
}
|
||||||
|
|
||||||
static xcb_pixmap_t get_root_pixmap ( xcb_connection_t *c,
|
static xcb_pixmap_t get_root_pixmap ( xcb_connection_t *c,
|
||||||
|
@ -941,7 +941,7 @@ void x11_disable_decoration ( xcb_window_t window )
|
||||||
{
|
{
|
||||||
// Flag used to indicate we are setting the decoration type.
|
// Flag used to indicate we are setting the decoration type.
|
||||||
const uint32_t MWM_HINTS_DECORATIONS = ( 1 << 1 );
|
const uint32_t MWM_HINTS_DECORATIONS = ( 1 << 1 );
|
||||||
// Motif property data structure
|
// Motif property data structure
|
||||||
struct MotifWMHints
|
struct MotifWMHints
|
||||||
{
|
{
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
|
|
Loading…
Reference in a new issue