new libdraw

This commit is contained in:
Connor Lane Smith 2010-07-30 10:25:55 +01:00
parent d77340ed53
commit 115c01b74e
2 changed files with 6 additions and 3 deletions

View File

@ -34,12 +34,14 @@ drawbar(void)
/* print prompt? */
if(prompt) {
dc.w = promptw;
drawbox(&dc, selcol);
drawtext(&dc, prompt, selcol);
dc.x += dc.w;
}
dc.w = mw - dc.x;
drawtext(&dc, text, normcol);
drawcursor(&dc, text, cursor, normcol);
drawline(&dc, textnw(&dc, text, cursor) + dc.font.height/2, 2, 1,
dc.font.height-2, normcol);
commitdraw(&dc, win);
}

View File

@ -24,7 +24,7 @@ static void calcoffsetsv(void);
static char *cistrstr(const char *s, const char *sub);
static void cleanup(void);
static void dinput(void);
static void drawitem(char *s, unsigned long col[ColLast]);
static void drawitem(const char *s, unsigned long col[ColLast]);
static void drawmenuh(void);
static void drawmenuv(void);
static void match(void);
@ -140,6 +140,7 @@ drawbar(void) {
/* print prompt? */
if(prompt) {
dc.w = promptw;
drawbox(&dc, selcol);
drawtext(&dc, prompt, selcol);
dc.x += dc.w;
}
@ -156,7 +157,7 @@ drawbar(void) {
}
void
drawitem(char *s, unsigned long col[ColLast]) {
drawitem(const char *s, unsigned long col[ColLast]) {
drawbox(&dc, col);
drawtext(&dc, s, col);
}