2012-11-06 23:16:59 -05:00
|
|
|
/*
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
MIT/X11 License
|
|
|
|
Copyright (c) 2012 Sean Pringle <sean.pringle@gmail.com>
|
|
|
|
Modified (c) 2013-2014 Qball Cow <qball@gmpclient.org>
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
a copy of this software and associated documentation files (the
|
|
|
|
"Software"), to deal in the Software without restriction, including
|
|
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
*/
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-19 07:57:54 -05:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <X11/X.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xmd.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xproto.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/XKBlib.h>
|
|
|
|
#include <X11/Xft/Xft.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2014-03-12 03:41:38 -04:00
|
|
|
#include "rofi.h"
|
2014-01-19 07:57:54 -05:00
|
|
|
#include "textbox.h"
|
2014-05-14 13:51:48 -04:00
|
|
|
#define SIDE_MARGIN 2
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-19 07:57:54 -05:00
|
|
|
extern Display *display;
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-05-26 03:00:14 -04:00
|
|
|
/**
|
|
|
|
* Font + font color cache.
|
|
|
|
* Avoid re-loading font on every change on every textbox.
|
|
|
|
*/
|
2014-05-25 17:32:06 -04:00
|
|
|
XftFont *font = NULL;
|
|
|
|
XftFont *font_active = NULL;
|
|
|
|
XftColor color_fg;
|
|
|
|
XftColor color_bg;
|
|
|
|
XftColor color_hlfg;
|
|
|
|
XftColor color_hlbg;
|
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_moveresize ( textbox *tb, int x, int y, int w, int h );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
|
|
|
// Xft text box, optionally editable
|
2014-03-22 16:04:19 -04:00
|
|
|
textbox* textbox_create ( Window parent,
|
|
|
|
TextboxFlags flags,
|
|
|
|
short x, short y, short w, short h,
|
2014-05-25 17:32:06 -04:00
|
|
|
TextBoxFontType tbft,
|
2014-05-21 11:33:28 -04:00
|
|
|
char *text )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
textbox *tb = calloc ( 1, sizeof ( textbox ) );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
tb->flags = flags;
|
2014-01-10 04:35:38 -05:00
|
|
|
tb->parent = parent;
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-10 04:35:38 -05:00
|
|
|
tb->x = x;
|
|
|
|
tb->y = y;
|
2014-03-22 16:04:19 -04:00
|
|
|
tb->w = MAX ( 1, w );
|
|
|
|
tb->h = MAX ( 1, h );
|
2012-11-06 23:16:59 -05:00
|
|
|
|
2014-05-26 04:32:26 -04:00
|
|
|
unsigned int cp = ( tbft == NORMAL ) ? color_bg.pixel : color_hlbg.pixel;
|
2012-11-06 23:16:59 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
tb->window = XCreateSimpleWindow ( display, tb->parent, tb->x, tb->y, tb->w, tb->h, 0, None, cp );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-10 04:35:38 -05:00
|
|
|
// need to preload the font to calc line height
|
2014-05-25 17:32:06 -04:00
|
|
|
textbox_font ( tb, tbft );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
textbox_text ( tb, text ? text : "" );
|
|
|
|
textbox_cursor_end ( tb );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-10 04:35:38 -05:00
|
|
|
// auto height/width modes get handled here
|
2014-03-22 16:04:19 -04:00
|
|
|
textbox_moveresize ( tb, tb->x, tb->y, tb->w, tb->h );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-10 04:35:38 -05:00
|
|
|
// edit mode controls
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( tb->flags & TB_EDITABLE )
|
|
|
|
{
|
|
|
|
tb->xim = XOpenIM ( display, NULL, NULL, NULL );
|
|
|
|
tb->xic = XCreateIC ( tb->xim, XNInputStyle, XIMPreeditNothing | XIMStatusNothing, XNClientWindow, tb->window, XNFocusWindow, tb->window, NULL );
|
2014-01-10 04:35:38 -05:00
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-10 04:35:38 -05:00
|
|
|
return tb;
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// set an Xft font by name
|
2014-05-25 17:32:06 -04:00
|
|
|
void textbox_font ( textbox *tb, TextBoxFontType tbft )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-05-25 17:32:06 -04:00
|
|
|
switch ( tbft )
|
2014-03-22 16:04:19 -04:00
|
|
|
{
|
2014-05-25 17:32:06 -04:00
|
|
|
case HIGHLIGHT:
|
|
|
|
tb->font = font;
|
|
|
|
tb->color_bg = color_hlbg;
|
|
|
|
tb->color_fg = color_hlfg;
|
|
|
|
break;
|
|
|
|
case ACTIVE:
|
|
|
|
tb->font = font_active;
|
|
|
|
tb->color_bg = color_bg;
|
|
|
|
tb->color_fg = color_fg;
|
|
|
|
break;
|
|
|
|
case ACTIVE_HIGHLIGHT:
|
|
|
|
tb->font = font_active;
|
|
|
|
tb->color_bg = color_hlbg;
|
|
|
|
tb->color_fg = color_hlfg;
|
|
|
|
break;
|
|
|
|
case NORMAL:
|
|
|
|
default:
|
|
|
|
tb->font = font;
|
|
|
|
tb->color_bg = color_bg;
|
|
|
|
tb->color_fg = color_fg;
|
|
|
|
break;
|
2014-01-13 15:35:43 -05:00
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// outer code may need line height, width, etc
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_extents ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-05-21 11:33:28 -04:00
|
|
|
XftTextExtentsUtf8 ( display, tb->font, ( unsigned char * ) tb->text, strlen ( tb->text ), &tb->extents );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// set the default text to display
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_text ( textbox *tb, char *text )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( tb->text )
|
|
|
|
{
|
|
|
|
free ( tb->text );
|
|
|
|
}
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
tb->text = strdup ( text );
|
|
|
|
tb->cursor = MAX ( 0, MIN ( ( int ) strlen ( text ), tb->cursor ) );
|
|
|
|
textbox_extents ( tb );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
2014-05-22 03:33:32 -04:00
|
|
|
void textbox_move ( textbox *tb, int x, int y )
|
2014-05-14 13:51:48 -04:00
|
|
|
{
|
|
|
|
if ( x != tb->x || y != tb->y )
|
|
|
|
{
|
|
|
|
tb->x = x;
|
|
|
|
tb->y = y;
|
|
|
|
XMoveResizeWindow ( display, tb->window, tb->x, tb->y, tb->w, tb->h );
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
// within the parent. handled auto width/height modes
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_moveresize ( textbox *tb, int x, int y, int w, int h )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-01-10 04:35:38 -05:00
|
|
|
if ( tb->flags & TB_AUTOHEIGHT )
|
2014-03-22 16:04:19 -04:00
|
|
|
{
|
2014-01-10 04:35:38 -05:00
|
|
|
h = tb->font->ascent + tb->font->descent;
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
2014-01-10 04:35:38 -05:00
|
|
|
|
|
|
|
if ( tb->flags & TB_AUTOWIDTH )
|
2014-03-22 16:04:19 -04:00
|
|
|
{
|
2014-05-22 03:33:32 -04:00
|
|
|
if ( w > 1 )
|
2014-05-14 13:51:48 -04:00
|
|
|
{
|
2014-05-22 03:33:32 -04:00
|
|
|
w = MIN ( w, tb->extents.width + 2 * SIDE_MARGIN );
|
2014-05-14 13:51:48 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-05-22 03:33:32 -04:00
|
|
|
w = tb->extents.width + 2 * SIDE_MARGIN;
|
2014-05-14 13:51:48 -04:00
|
|
|
}
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( x != tb->x || y != tb->y || w != tb->w || h != tb->h )
|
|
|
|
{
|
2014-01-10 04:35:38 -05:00
|
|
|
tb->x = x;
|
|
|
|
tb->y = y;
|
2014-03-22 16:04:19 -04:00
|
|
|
tb->w = MAX ( 1, w );
|
|
|
|
tb->h = MAX ( 1, h );
|
|
|
|
XMoveResizeWindow ( display, tb->window, tb->x, tb->y, tb->w, tb->h );
|
2014-01-10 04:35:38 -05:00
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_show ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
XMapWindow ( display, tb->window );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
2014-05-14 14:56:38 -04:00
|
|
|
void textbox_hide ( textbox *tb )
|
|
|
|
{
|
|
|
|
XUnmapWindow ( display, tb->window );
|
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
|
|
|
|
|
|
|
// will also unmap the window if still displayed
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_free ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( tb->flags & TB_EDITABLE )
|
|
|
|
{
|
|
|
|
XDestroyIC ( tb->xic );
|
|
|
|
XCloseIM ( tb->xim );
|
2014-01-10 04:35:38 -05:00
|
|
|
}
|
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( tb->text )
|
|
|
|
{
|
|
|
|
free ( tb->text );
|
|
|
|
}
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
XDestroyWindow ( display, tb->window );
|
|
|
|
free ( tb );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_draw ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-01-10 04:35:38 -05:00
|
|
|
XGlyphInfo extents;
|
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
GC context = XCreateGC ( display, tb->window, 0, 0 );
|
|
|
|
Pixmap canvas = XCreatePixmap ( display, tb->window, tb->w, tb->h, DefaultDepth ( display, DefaultScreen ( display ) ) );
|
|
|
|
XftDraw *draw = XftDrawCreate ( display, canvas, DefaultVisual ( display, DefaultScreen ( display ) ), DefaultColormap ( display, DefaultScreen ( display ) ) );
|
2014-01-10 04:35:38 -05:00
|
|
|
|
|
|
|
// clear canvas
|
2014-03-22 16:04:19 -04:00
|
|
|
XftDrawRect ( draw, &tb->color_bg, 0, 0, tb->w, tb->h );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-05-22 03:33:32 -04:00
|
|
|
char *text = tb->text ? tb->text : "";
|
|
|
|
int text_len = strlen ( text );
|
|
|
|
int length = text_len;
|
|
|
|
int line_height = tb->font->ascent + tb->font->descent;
|
|
|
|
int line_width = 0;
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-05-22 03:33:32 -04:00
|
|
|
int cursor_x = 0;
|
|
|
|
int cursor_width = MAX ( 2, line_height / 10 );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( tb->flags & TB_EDITABLE )
|
|
|
|
{
|
2014-02-27 14:26:35 -05:00
|
|
|
int cursor_offset = 0;
|
2014-05-21 11:33:28 -04:00
|
|
|
cursor_offset = MIN ( tb->cursor, text_len );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-06-02 07:23:36 -04:00
|
|
|
// Trailing spaces still go wrong....
|
|
|
|
// The replace by _ is needed, one way or the other.
|
|
|
|
// Make a copy, and replace all trailing spaces.
|
2014-06-02 07:29:43 -04:00
|
|
|
char *test = strdup ( text );
|
|
|
|
for ( int iter = strlen ( text ) - 1; iter >= 0 && test[iter] == ' '; iter-- )
|
2014-06-02 07:23:36 -04:00
|
|
|
{
|
|
|
|
test[iter] = '_';
|
|
|
|
}
|
2014-01-10 04:35:38 -05:00
|
|
|
// calc cursor position
|
2014-06-02 07:23:36 -04:00
|
|
|
XftTextExtentsUtf8 ( display, tb->font, ( unsigned char * ) test, cursor_offset, &extents );
|
2014-05-19 11:57:27 -04:00
|
|
|
// Add a small 4px offset between cursor and last glyph.
|
2014-05-22 03:33:32 -04:00
|
|
|
cursor_x = extents.width + ( ( extents.width > 0 ) ? 2 : 0 );
|
2014-06-02 07:29:43 -04:00
|
|
|
free ( test );
|
2014-04-25 03:11:10 -04:00
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-10 04:35:38 -05:00
|
|
|
// calc full input text width
|
2014-01-13 03:42:52 -05:00
|
|
|
// Calculate the right size, so no characters are cut off.
|
|
|
|
// TODO: Check performance of this.
|
2014-05-22 03:33:32 -04:00
|
|
|
do
|
|
|
|
{
|
2014-05-21 11:33:28 -04:00
|
|
|
XftTextExtentsUtf8 ( display, tb->font, ( unsigned char * ) text, length, &extents );
|
2014-01-13 03:42:52 -05:00
|
|
|
line_width = extents.width;
|
2014-05-14 13:51:48 -04:00
|
|
|
if ( line_width <= ( tb->w - 2 * SIDE_MARGIN ) )
|
2014-03-22 16:04:19 -04:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2014-01-13 15:35:43 -05:00
|
|
|
|
2014-05-21 11:33:28 -04:00
|
|
|
for ( length -= 1; length > 0 && ( text[length] & 0xc0 ) == 0x80; length -= 1 )
|
2014-03-22 16:04:19 -04:00
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
2014-05-22 03:33:32 -04:00
|
|
|
} while ( line_width > 0 );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-13 03:42:52 -05:00
|
|
|
int x = SIDE_MARGIN, y = tb->font->ascent;
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( tb->flags & TB_RIGHT )
|
|
|
|
{
|
|
|
|
x = tb->w - line_width;
|
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( tb->flags & TB_CENTER )
|
|
|
|
{
|
|
|
|
x = ( tb->w - line_width ) / 2;
|
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-05-21 11:33:28 -04:00
|
|
|
// draw the text.
|
|
|
|
XftDrawStringUtf8 ( draw, &tb->color_fg, tb->font, x, y, ( unsigned char * ) text, length );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-10 04:35:38 -05:00
|
|
|
// draw the cursor
|
|
|
|
if ( tb->flags & TB_EDITABLE )
|
2014-03-22 16:04:19 -04:00
|
|
|
{
|
|
|
|
XftDrawRect ( draw, &tb->color_fg, cursor_x + SIDE_MARGIN, 2, cursor_width, line_height - 4 );
|
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-05-22 03:33:32 -04:00
|
|
|
XftDrawRect ( draw, &tb->color_bg, tb->w, 0, 0, tb->h );
|
2014-01-10 04:35:38 -05:00
|
|
|
// flip canvas to window
|
2014-03-22 16:04:19 -04:00
|
|
|
XCopyArea ( display, canvas, tb->window, context, 0, 0, tb->w, tb->h, 0, 0 );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
XFreeGC ( display, context );
|
|
|
|
XftDrawDestroy ( draw );
|
|
|
|
XFreePixmap ( display, canvas );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
2014-02-25 03:13:34 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
static size_t nextrune ( textbox *tb, int inc )
|
|
|
|
{
|
2014-02-25 03:13:34 -05:00
|
|
|
ssize_t n;
|
|
|
|
|
|
|
|
/* return location of next utf8 rune in the given direction (+1 or -1) */
|
2014-03-22 16:04:19 -04:00
|
|
|
for ( n = tb->cursor + inc; n + inc >= 0 && ( tb->text[n] & 0xc0 ) == 0x80; n += inc )
|
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
2014-02-25 03:13:34 -05:00
|
|
|
return n;
|
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
// cursor handling for edit mode
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_cursor ( textbox *tb, int pos )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
tb->cursor = MAX ( 0, MIN ( ( int ) strlen ( tb->text ), pos ) );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// move right
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_cursor_inc ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
textbox_cursor ( tb, nextrune ( tb, 1 ) );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// move left
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_cursor_dec ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
textbox_cursor ( tb, nextrune ( tb, -1 ) );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// end of line
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_cursor_end ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
tb->cursor = ( int ) strlen ( tb->text );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// insert text
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_insert ( textbox *tb, int pos, char *str )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
int len = ( int ) strlen ( tb->text ), slen = ( int ) strlen ( str );
|
|
|
|
pos = MAX ( 0, MIN ( len, pos ) );
|
2014-01-10 04:35:38 -05:00
|
|
|
// expand buffer
|
2014-03-22 16:04:19 -04:00
|
|
|
tb->text = realloc ( tb->text, len + slen + 1 );
|
2014-01-10 04:35:38 -05:00
|
|
|
// move everything after cursor upward
|
|
|
|
char *at = tb->text + pos;
|
2014-03-22 16:04:19 -04:00
|
|
|
memmove ( at + slen, at, len - pos + 1 );
|
2014-01-10 04:35:38 -05:00
|
|
|
// insert new str
|
2014-03-22 16:04:19 -04:00
|
|
|
memmove ( at, str, slen );
|
|
|
|
textbox_extents ( tb );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove text
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_delete ( textbox *tb, int pos, int dlen )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
int len = strlen ( tb->text );
|
|
|
|
pos = MAX ( 0, MIN ( len, pos ) );
|
2014-01-10 04:35:38 -05:00
|
|
|
// move everything after pos+dlen down
|
|
|
|
char *at = tb->text + pos;
|
2014-03-22 16:04:19 -04:00
|
|
|
memmove ( at, at + dlen, len - pos );
|
|
|
|
textbox_extents ( tb );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// delete on character
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_cursor_del ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
int del_r = nextrune ( tb, 1 );
|
|
|
|
textbox_delete ( tb, tb->cursor, del_r - tb->cursor );
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// back up and delete one character
|
2014-03-22 16:04:19 -04:00
|
|
|
void textbox_cursor_bkspc ( textbox *tb )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( tb->cursor > 0 )
|
|
|
|
{
|
|
|
|
textbox_cursor_dec ( tb );
|
|
|
|
textbox_cursor_del ( tb );
|
2014-01-10 04:35:38 -05:00
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// handle a keypress in edit mode
|
|
|
|
// 0 = unhandled
|
|
|
|
// 1 = handled
|
|
|
|
// -1 = handled and return pressed (finished)
|
2014-03-22 16:04:19 -04:00
|
|
|
int textbox_keypress ( textbox *tb, XEvent *ev )
|
2012-08-23 21:28:39 -04:00
|
|
|
{
|
2014-01-10 04:35:38 -05:00
|
|
|
KeySym key;
|
|
|
|
Status stat;
|
2014-03-22 16:04:19 -04:00
|
|
|
char pad[32];
|
|
|
|
int len;
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( !( tb->flags & TB_EDITABLE ) )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
len = Xutf8LookupString ( tb->xic, &ev->xkey, pad, sizeof ( pad ), &key, &stat );
|
2014-01-10 04:35:38 -05:00
|
|
|
pad[len] = 0;
|
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
if ( key == XK_Left )
|
|
|
|
{
|
|
|
|
textbox_cursor_dec ( tb );
|
2014-01-10 04:35:38 -05:00
|
|
|
return 1;
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
|
|
|
else if ( key == XK_Right )
|
|
|
|
{
|
|
|
|
textbox_cursor_inc ( tb );
|
2014-01-10 04:35:38 -05:00
|
|
|
return 1;
|
2014-01-31 13:39:09 -05:00
|
|
|
} /*else if ( key == XK_Home ) {
|
2014-02-01 08:03:23 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
textbox_cursor_home( tb );
|
|
|
|
return 1;
|
|
|
|
} else if ( key == XK_End ) {
|
|
|
|
textbox_cursor_end( tb );
|
|
|
|
return 1;
|
|
|
|
} */
|
|
|
|
else if ( key == XK_Delete )
|
|
|
|
{
|
|
|
|
textbox_cursor_del ( tb );
|
2014-01-10 04:35:38 -05:00
|
|
|
return 1;
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
|
|
|
else if ( key == XK_BackSpace )
|
|
|
|
{
|
|
|
|
textbox_cursor_bkspc ( tb );
|
2014-01-10 04:35:38 -05:00
|
|
|
return 1;
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
|
|
|
else if ( key == XK_Return )
|
|
|
|
{
|
2014-01-10 04:35:38 -05:00
|
|
|
return -1;
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
|
|
|
else if ( !iscntrl ( *pad ) )
|
|
|
|
{
|
|
|
|
textbox_insert ( tb, tb->cursor, pad );
|
|
|
|
textbox_cursor_inc ( tb );
|
2014-01-10 04:35:38 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2012-08-23 21:28:39 -04:00
|
|
|
}
|
2014-05-25 17:32:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***
|
|
|
|
* Font setup.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void textbox_setup (
|
|
|
|
const char *font_str, const char *font_active_str,
|
|
|
|
const char *bg, const char *fg,
|
|
|
|
const char *hlbg, const char *hlfg
|
|
|
|
)
|
|
|
|
{
|
2014-05-26 03:00:14 -04:00
|
|
|
Visual *visual = DefaultVisual ( display, DefaultScreen ( display ) );
|
|
|
|
Colormap colormap = DefaultColormap ( display, DefaultScreen ( display ) );
|
2014-05-25 17:32:06 -04:00
|
|
|
font = XftFontOpenName ( display, DefaultScreen ( display ), font_str );
|
|
|
|
font_active = XftFontOpenName ( display, DefaultScreen ( display ), font_active_str );
|
|
|
|
|
2014-05-26 03:00:14 -04:00
|
|
|
XftColorAllocName ( display, visual, colormap, fg, &color_fg );
|
|
|
|
XftColorAllocName ( display, visual, colormap, bg, &color_bg );
|
|
|
|
XftColorAllocName ( display, visual, colormap, hlfg, &color_hlfg );
|
|
|
|
XftColorAllocName ( display, visual, colormap, hlbg, &color_hlbg );
|
2014-05-25 17:32:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void textbox_cleanup ()
|
|
|
|
{
|
|
|
|
if ( font != NULL )
|
|
|
|
{
|
2014-05-26 03:00:14 -04:00
|
|
|
Visual *visual = DefaultVisual ( display, DefaultScreen ( display ) );
|
|
|
|
Colormap colormap = DefaultColormap ( display, DefaultScreen ( display ) );
|
|
|
|
|
2014-05-25 17:32:06 -04:00
|
|
|
XftFontClose ( display, font );
|
|
|
|
font = NULL;
|
|
|
|
|
|
|
|
XftFontClose ( display, font_active );
|
|
|
|
font_active = NULL;
|
|
|
|
|
2014-05-26 03:00:14 -04:00
|
|
|
XftColorFree ( display, visual, colormap, &color_fg );
|
|
|
|
XftColorFree ( display, visual, colormap, &color_bg );
|
|
|
|
XftColorFree ( display, visual, colormap, &color_hlfg );
|
|
|
|
XftColorFree ( display, visual, colormap, &color_hlbg );
|
2014-05-25 17:32:06 -04:00
|
|
|
}
|
|
|
|
}
|