rofi/include/view-internal.h

81 lines
1.8 KiB
C
Raw Normal View History

2016-02-06 13:27:36 +00:00
#ifndef ROFI_VIEW_INTERNAL_H
#define ROFI_VIEW_INTERNAL_H
#include "widgets/widget.h"
#include "widgets/textbox.h"
#include "widgets/separator.h"
#include "widgets/listview.h"
#include "widgets/box.h"
#include "keyb.h"
2016-02-19 18:29:06 +00:00
#include "x11-helper.h"
2016-02-06 13:27:36 +00:00
/**
2016-02-08 17:16:16 +00:00
* @ingroup ViewHandle
2016-02-06 13:27:36 +00:00
*
* @{
*/
// State of the menu.
2016-02-11 19:24:29 +00:00
struct RofiViewState
2016-02-06 13:27:36 +00:00
{
2016-05-08 09:13:11 +00:00
Mode *sw;
2016-02-06 13:27:36 +00:00
// Update/Refilter list.
2016-05-08 09:13:11 +00:00
int refilter;
int rchanged;
2016-02-06 13:27:36 +00:00
box *main_box;
2016-02-06 13:27:36 +00:00
// Entries
box *input_bar;
separator *input_bar_separator;
textbox *prompt;
2016-05-08 09:13:11 +00:00
textbox *text;
textbox *case_indicator;
listview *list_view;
2016-06-26 13:48:12 +00:00
// Small overlay.
textbox *overlay;
2016-05-08 09:13:11 +00:00
int *distance;
unsigned int *line_map;
2016-02-06 13:27:36 +00:00
2016-05-08 09:13:11 +00:00
unsigned int num_lines;
2016-02-06 13:27:36 +00:00
// Selected element.
2016-05-08 09:13:11 +00:00
unsigned int filtered_lines;
2016-02-06 13:27:36 +00:00
// Last offset in paginating.
2016-05-08 09:13:11 +00:00
unsigned int last_offset;
2016-02-06 13:27:36 +00:00
KeyBindingAction prev_action;
2016-05-08 09:13:11 +00:00
xcb_timestamp_t last_button_press;
2016-02-06 13:27:36 +00:00
2016-05-08 09:13:11 +00:00
int quit;
int skip_absorb;
2016-02-06 13:27:36 +00:00
// Return state
2016-05-08 09:13:11 +00:00
unsigned int selected_line;
MenuReturn retv;
unsigned int border;
workarea mon;
2016-02-06 13:27:36 +00:00
// Sidebar view
box *sidebar_bar;
2016-05-08 09:13:11 +00:00
unsigned int num_modi;
textbox **modi;
2016-02-10 18:40:19 +00:00
2016-05-08 09:13:11 +00:00
MenuFlags menu_flags;
int mouse_seen;
int reload;
2016-02-06 13:27:36 +00:00
// Handlers.
2016-05-08 09:13:11 +00:00
void ( *x11_event_loop )( struct RofiViewState *state, xcb_generic_event_t *ev, xkb_stuff *xkb );
void ( *finalize )( struct RofiViewState *state );
int width;
int height;
int x;
int y;
2016-10-11 06:18:34 +00:00
GRegex **tokens;
2016-02-11 19:24:29 +00:00
};
2016-02-06 13:27:36 +00:00
/** @} */
#endif