rofi/include/textbox.h

52 lines
1.2 KiB
C
Raw Normal View History

#ifndef __TEXTBOX_H__
#define __TEXTBOX_H__
2014-03-22 20:04:19 +00:00
typedef struct
{
unsigned long flags;
2014-03-22 20:04:19 +00:00
Window window, parent;
short x, y, w, h;
short cursor;
XftFont *font;
XftColor color_fg, color_bg;
char *text;
2014-03-22 20:04:19 +00:00
XIM xim;
XIC xic;
XGlyphInfo extents;
} textbox;
2014-03-22 20:04:19 +00:00
typedef enum
{
TB_AUTOHEIGHT = 1 << 0,
TB_AUTOWIDTH = 1 << 1,
TB_LEFT = 1 << 16,
TB_RIGHT = 1 << 17,
TB_CENTER = 1 << 18,
TB_EDITABLE = 1 << 19,
} TextboxFlags;
2014-03-22 20:04:19 +00:00
textbox* textbox_create ( Window parent,
TextboxFlags flags,
short x, short y, short w, short h,
char *font, char *fg, char *bg,
char *text );
2014-03-22 20:04:19 +00:00
void textbox_free ( textbox *tb );
2014-03-22 20:04:19 +00:00
void textbox_font ( textbox *tb, char *font, char *fg, char *bg );
2014-03-22 20:04:19 +00:00
void textbox_text ( textbox *tb, char *text );
void textbox_show ( textbox *tb );
void textbox_draw ( textbox *tb );
2014-03-22 20:04:19 +00:00
int textbox_keypress ( textbox *tb, XEvent *ev );
2014-03-22 20:04:19 +00:00
void textbox_cursor_end ( textbox *tb );
2014-05-22 08:03:36 +00:00
void textbox_move ( textbox *tb, int x, int y );
2014-05-14 18:56:38 +00:00
void textbox_hide ( textbox *tb );
#endif //__TEXTBOX_H__