Compare commits
106 Commits
Author | SHA1 | Date | |
---|---|---|---|
bb3e33def3 | |||
3a60b19514 | |||
dd2f298252 | |||
11ea52d170 | |||
4354074607 | |||
4776d6dc61 | |||
d0051e7bb8 | |||
fb67bd666e | |||
f5bd1eed8d | |||
1654d6cd62 | |||
6cc0b0dc08 | |||
b2bb6ebec9 | |||
a662fc6e0a | |||
d066975e78 | |||
26236a4900 | |||
15505bd711 | |||
86468aafe5 | |||
be9afce035 | |||
3c067598fc | |||
86019c5855 | |||
0291c722fb | |||
e0e6b071c6 | |||
cd3b4915c3 | |||
210b303941 | |||
47e3e8be7b | |||
d515d2758f | |||
a8ea79715f | |||
3e0a141016 | |||
cbd8257914 | |||
22cf9626c7 | |||
9e13ecabe8 | |||
266f3dd311 | |||
8d9ade36de | |||
da81f57f6d | |||
c1241bcba3 | |||
eeba6221b1 | |||
a0a99d10e1 | |||
7cf66b443a | |||
038a78a3f4 | |||
e0add428d2 | |||
bf7b8e37ee | |||
610a0a8d12 | |||
f0818217b3 | |||
3c366bd73d | |||
75a19c35bd | |||
a5f31f5707 | |||
b81c1e88cd | |||
5376113039 | |||
c7a8f17bd2 | |||
128d4cf376 | |||
e4fdaba88d | |||
849f1dd7a3 | |||
402dc2bc95 | |||
00a60cb7b2 | |||
e149c531b8 | |||
605e9b6c03 | |||
caf5246268 | |||
93af72e116 | |||
0b8072a5a9 | |||
31ffcd3b9a | |||
9cf07b4b9b | |||
7a2782d02d | |||
1c91c2a99c | |||
b7695fa98c | |||
b54c179d58 | |||
06c18808b6 | |||
a7aee433cc | |||
a3606ecb0e | |||
7d5fe17391 | |||
7f36736d11 | |||
115c01b74e | |||
d77340ed53 | |||
da7a799121 | |||
855a566319 | |||
29e8faed6c | |||
d9c24564d2 | |||
6ba5103df4 | |||
309d071df5 | |||
26b9f3de0f | |||
7afd296c40 | |||
cc8b3b999b | |||
f2abaf8b30 | |||
340b176de6 | |||
18dcf73896 | |||
9f3b0c6ea8 | |||
4508fd2c4e | |||
723361fa12 | |||
96c65400cc | |||
6c1d0e4d60 | |||
6efe1932be | |||
8f7b62e2b6 | |||
2ec16d9cb2 | |||
146bc23c11 | |||
595e797660 | |||
bba30e2686 | |||
08b264393d | |||
b4e63454e5 | |||
bff1526d31 | |||
9a33a72c6a | |||
97797d90a6 | |||
4983707c70 | |||
4229fb7b78 | |||
b27ffbd78b | |||
6366f94e36 | |||
645f1d0dfc | |||
d7d14e53da |
3
.hgtags
3
.hgtags
@ -41,3 +41,6 @@ e4c81a78ffbad6ba4d1ad119cc654da6eca63a4c 3.2
|
|||||||
21a1ed9a69b9541a355758a57103e294fb722c33 3.9
|
21a1ed9a69b9541a355758a57103e294fb722c33 3.9
|
||||||
78f9f72cc9c6bdb022ff8908486b61ef5e242aad 4.0
|
78f9f72cc9c6bdb022ff8908486b61ef5e242aad 4.0
|
||||||
844587572673cf6326c3f61737264a46b728fc0a 4.1
|
844587572673cf6326c3f61737264a46b728fc0a 4.1
|
||||||
|
72749a826cab0baa805620e44a22e54486c97a4e 4.1.1
|
||||||
|
379813a051f03a1b20bdbfdc2d2d1d2d794ace48 4.2
|
||||||
|
abb6579a324fffdf6a23c2fa4c32911277da594a 4.2.1
|
||||||
|
4
LICENSE
4
LICENSE
@ -1,7 +1,7 @@
|
|||||||
MIT/X Consortium License
|
MIT/X Consortium License
|
||||||
|
|
||||||
© 2010 Connor Lane Smith <cls@lubutu.com>
|
© 2010-2011 Connor Lane Smith <cls@lubutu.com>
|
||||||
© 2006-2010 Anselm R Garbe <anselm@garbe.us>
|
© 2006-2011 Anselm R Garbe <anselm@garbe.us>
|
||||||
© 2009 Gottox <gottox@s01.de>
|
© 2009 Gottox <gottox@s01.de>
|
||||||
© 2009 Markus Schnalke <meillo@marmaro.de>
|
© 2009 Markus Schnalke <meillo@marmaro.de>
|
||||||
© 2009 Evan Gates <evan.gates@gmail.com>
|
© 2009 Evan Gates <evan.gates@gmail.com>
|
||||||
|
23
Makefile
23
Makefile
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
include config.mk
|
include config.mk
|
||||||
|
|
||||||
SRC = dmenu.c
|
SRC = dmenu.c draw.c
|
||||||
OBJ = ${SRC:.c=.o}
|
OBJ = ${SRC:.c=.o}
|
||||||
|
|
||||||
all: options dmenu
|
all: options dmenu
|
||||||
@ -15,14 +15,10 @@ options:
|
|||||||
@echo "CC = ${CC}"
|
@echo "CC = ${CC}"
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
@echo CC $<
|
@echo CC -c $<
|
||||||
@${CC} -c ${CFLAGS} $<
|
@${CC} -c $< ${CFLAGS}
|
||||||
|
|
||||||
${OBJ}: config.h config.mk
|
${OBJ}: config.mk
|
||||||
|
|
||||||
config.h:
|
|
||||||
@echo creating $@ from config.def.h
|
|
||||||
@cp config.def.h $@
|
|
||||||
|
|
||||||
dmenu: ${OBJ}
|
dmenu: ${OBJ}
|
||||||
@echo CC -o $@
|
@echo CC -o $@
|
||||||
@ -35,13 +31,13 @@ clean:
|
|||||||
dist: clean
|
dist: clean
|
||||||
@echo creating dist tarball
|
@echo creating dist tarball
|
||||||
@mkdir -p dmenu-${VERSION}
|
@mkdir -p dmenu-${VERSION}
|
||||||
@cp -R LICENSE Makefile README config.mk dmenu.1 config.def.h dmenu_path dmenu_run ${SRC} dmenu-${VERSION}
|
@cp LICENSE Makefile README config.mk dmenu.1 draw.h dmenu_path dmenu_run ${SRC} dmenu-${VERSION}
|
||||||
@tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
|
@tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
|
||||||
@gzip dmenu-${VERSION}.tar
|
@gzip dmenu-${VERSION}.tar
|
||||||
@rm -rf dmenu-${VERSION}
|
@rm -rf dmenu-${VERSION}
|
||||||
|
|
||||||
install: all
|
install: all
|
||||||
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
|
@echo installing executables to ${DESTDIR}${PREFIX}/bin
|
||||||
@mkdir -p ${DESTDIR}${PREFIX}/bin
|
@mkdir -p ${DESTDIR}${PREFIX}/bin
|
||||||
@cp -f dmenu dmenu_path dmenu_run ${DESTDIR}${PREFIX}/bin
|
@cp -f dmenu dmenu_path dmenu_run ${DESTDIR}${PREFIX}/bin
|
||||||
@chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu
|
@chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu
|
||||||
@ -53,9 +49,10 @@ install: all
|
|||||||
@chmod 644 ${DESTDIR}${MANPREFIX}/man1/dmenu.1
|
@chmod 644 ${DESTDIR}${MANPREFIX}/man1/dmenu.1
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
|
@echo removing executables from ${DESTDIR}${PREFIX}/bin
|
||||||
@rm -f ${DESTDIR}${PREFIX}/bin/dmenu ${DESTDIR}${PREFIX}/bin/dmenu_path
|
@rm -f ${DESTDIR}${PREFIX}/bin/dmenu
|
||||||
@rm -f ${DESTDIR}${PREFIX}/bin/dmenu ${DESTDIR}${PREFIX}/bin/dmenu_run
|
@rm -f ${DESTDIR}${PREFIX}/bin/dmenu_path
|
||||||
|
@rm -f ${DESTDIR}${PREFIX}/bin/dmenu_run
|
||||||
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
|
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
|
||||||
@rm -f ${DESTDIR}${MANPREFIX}/man1/dmenu.1
|
@rm -f ${DESTDIR}${MANPREFIX}/man1/dmenu.1
|
||||||
|
|
||||||
|
6
README
6
README
@ -1,6 +1,6 @@
|
|||||||
dmenu - dynamic menu
|
dmenu - dynamic menu
|
||||||
====================
|
====================
|
||||||
dmenu is a generic and efficient menu for X.
|
dmenu is an efficient dynamic menu for X.
|
||||||
|
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
@ -13,8 +13,8 @@ Installation
|
|||||||
Edit config.mk to match your local setup (dmenu is installed into
|
Edit config.mk to match your local setup (dmenu is installed into
|
||||||
the /usr/local namespace by default).
|
the /usr/local namespace by default).
|
||||||
|
|
||||||
Afterwards enter the following command to build and install dmenu (if
|
Afterwards enter the following command to build and install dmenu
|
||||||
necessary as root):
|
(if necessary as root):
|
||||||
|
|
||||||
make clean install
|
make clean install
|
||||||
|
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
/* See LICENSE file for copyright and license details. */
|
|
||||||
|
|
||||||
/* appearance */
|
|
||||||
static const char *font = "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*";
|
|
||||||
static const char *normbgcolor = "#cccccc";
|
|
||||||
static const char *normfgcolor = "#000000";
|
|
||||||
static const char *selbgcolor = "#0066ff";
|
|
||||||
static const char *selfgcolor = "#ffffff";
|
|
||||||
static unsigned int spaceitem = 30; /* px between menu items */
|
|
16
config.mk
16
config.mk
@ -1,7 +1,5 @@
|
|||||||
# dmenu version
|
# dmenu version
|
||||||
VERSION = 4.1.1
|
VERSION = 4.3
|
||||||
|
|
||||||
# Customize below to fit your system
|
|
||||||
|
|
||||||
# paths
|
# paths
|
||||||
PREFIX = /usr/local
|
PREFIX = /usr/local
|
||||||
@ -11,21 +9,17 @@ X11INC = /usr/X11R6/include
|
|||||||
X11LIB = /usr/X11R6/lib
|
X11LIB = /usr/X11R6/lib
|
||||||
|
|
||||||
# Xinerama, comment if you don't want it
|
# Xinerama, comment if you don't want it
|
||||||
XINERAMALIBS = -L${X11LIB} -lXinerama
|
XINERAMALIBS = -lXinerama
|
||||||
XINERAMAFLAGS = -DXINERAMA
|
XINERAMAFLAGS = -DXINERAMA
|
||||||
|
|
||||||
# includes and libs
|
# includes and libs
|
||||||
INCS = -I. -I/usr/include -I${X11INC}
|
INCS = -I${X11INC}
|
||||||
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${XINERAMALIBS}
|
LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
|
||||||
|
|
||||||
# flags
|
# flags
|
||||||
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
|
CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
|
||||||
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
|
CFLAGS = -ansi -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
|
||||||
LDFLAGS = -s ${LIBS}
|
LDFLAGS = -s ${LIBS}
|
||||||
|
|
||||||
# Solaris
|
|
||||||
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
|
|
||||||
#LDFLAGS = ${LIBS}
|
|
||||||
|
|
||||||
# compiler and linker
|
# compiler and linker
|
||||||
CC = cc
|
CC = cc
|
||||||
|
150
dmenu.1
150
dmenu.1
@ -3,101 +3,101 @@
|
|||||||
dmenu \- dynamic menu
|
dmenu \- dynamic menu
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B dmenu
|
.B dmenu
|
||||||
.RB [ \-i ]
|
|
||||||
.RB [ \-b ]
|
.RB [ \-b ]
|
||||||
.RB [ \-l " <lines>"]
|
.RB [ \-f ]
|
||||||
.RB [ \-fn " <font>"]
|
.RB [ \-i ]
|
||||||
.RB [ \-nb " <color>"]
|
.RB [ \-l
|
||||||
.RB [ \-nf " <color>"]
|
.IR lines ]
|
||||||
.RB [ \-p " <prompt>"]
|
.RB [ \-p
|
||||||
.RB [ \-sb " <color>"]
|
.IR prompt ]
|
||||||
.RB [ \-sf " <color>"]
|
.RB [ \-fn
|
||||||
|
.IR font ]
|
||||||
|
.RB [ \-nb
|
||||||
|
.IR color ]
|
||||||
|
.RB [ \-nf
|
||||||
|
.IR color ]
|
||||||
|
.RB [ \-sb
|
||||||
|
.IR color ]
|
||||||
|
.RB [ \-sf
|
||||||
|
.IR color ]
|
||||||
.RB [ \-v ]
|
.RB [ \-v ]
|
||||||
|
.P
|
||||||
|
.BR dmenu_run " ..."
|
||||||
|
.P
|
||||||
|
.B dmenu_path
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
.SS Overview
|
.B dmenu
|
||||||
dmenu is a generic menu for X, originally designed for
|
is a dynamic menu for X, originally designed for
|
||||||
.BR dwm (1).
|
.BR dwm (1).
|
||||||
It manages huge amounts (up to 10.000 and more) of user defined menu items
|
It manages huge numbers of user\-defined menu items efficiently.
|
||||||
efficiently.
|
.P
|
||||||
.SS Options
|
dmenu reads a list of newline\-separated items from stdin and creates a menu.
|
||||||
.TP
|
When the user selects an item or enters any text and presses Return, their
|
||||||
.B \-i
|
choice is printed to stdout and dmenu terminates.
|
||||||
makes dmenu match menu entries case insensitively.
|
.P
|
||||||
|
.B dmenu_run
|
||||||
|
is a dmenu script used by dwm which lists programs in the user's PATH and
|
||||||
|
executes the selected item.
|
||||||
|
.P
|
||||||
|
.B dmenu_path
|
||||||
|
is a script used by dmenu_run to find and cache a list of executables.
|
||||||
|
.SH OPTIONS
|
||||||
.TP
|
.TP
|
||||||
.B \-b
|
.B \-b
|
||||||
defines that dmenu appears at the bottom.
|
dmenu appears at the bottom of the screen.
|
||||||
.TP
|
.TP
|
||||||
.B \-l <lines>
|
.B \-f
|
||||||
activates vertical list mode.
|
dmenu grabs the keyboard before reading stdin. This is faster, but may lock up
|
||||||
The given number of lines will be displayed. Window height will get adjusted.
|
X if stdin is from a terminal.
|
||||||
.TP
|
.TP
|
||||||
.B \-fn <font>
|
.B \-i
|
||||||
defines the font.
|
dmenu matches menu items case insensitively.
|
||||||
.TP
|
.TP
|
||||||
.B \-nb <color>
|
.BI \-l " lines"
|
||||||
defines the normal background color (#RGB, #RRGGBB, and color names are supported).
|
dmenu lists items vertically, with the given number of lines.
|
||||||
.TP
|
.TP
|
||||||
.B \-nf <color>
|
.BI \-p " prompt"
|
||||||
defines the normal foreground color (#RGB, #RRGGBB, and color names are supported).
|
defines the prompt to be displayed to the left of the input field.
|
||||||
.TP
|
.TP
|
||||||
.B \-p <prompt>
|
.BI \-fn " font"
|
||||||
defines a prompt to be displayed before the input area.
|
defines the font or font set used.
|
||||||
.TP
|
.TP
|
||||||
.B \-sb <color>
|
.BI \-nb " color"
|
||||||
defines the selected background color (#RGB, #RRGGBB, and color names are supported).
|
defines the normal background color.
|
||||||
|
.IR #RGB ,
|
||||||
|
.IR #RRGGBB ,
|
||||||
|
and X color names are supported.
|
||||||
.TP
|
.TP
|
||||||
.B \-sf <color>
|
.BI \-nf " color"
|
||||||
defines the selected foreground color (#RGB, #RRGGBB, and color names are supported).
|
defines the normal foreground color.
|
||||||
|
.TP
|
||||||
|
.BI \-sb " color"
|
||||||
|
defines the selected background color.
|
||||||
|
.TP
|
||||||
|
.BI \-sf " color"
|
||||||
|
defines the selected foreground color.
|
||||||
.TP
|
.TP
|
||||||
.B \-v
|
.B \-v
|
||||||
prints version information to standard output, then exits.
|
prints version information to stdout, then exits.
|
||||||
.SH USAGE
|
.SH USAGE
|
||||||
dmenu reads a list of newline-separated items from standard input and creates a
|
dmenu is completely controlled by the keyboard. Besides standard Unix line
|
||||||
menu. When the user selects an item or enters any text and presses Return, his/her
|
editing and item selection (arrow keys, page up/down, home and end), the
|
||||||
choice is printed to standard output and dmenu terminates.
|
following keys are recognized:
|
||||||
.P
|
|
||||||
dmenu is completely controlled by the keyboard. The following keys are recognized:
|
|
||||||
.TP
|
.TP
|
||||||
.B Any printable character
|
.B Tab (Ctrl\-i)
|
||||||
Appends the character to the text in the input field. This works as a filter:
|
|
||||||
only items containing this text will be displayed.
|
|
||||||
.TP
|
|
||||||
.B Left/Right (Up/Down) (Mod1\-h/Mod1\-l)
|
|
||||||
Select the previous/next item.
|
|
||||||
.TP
|
|
||||||
.B PageUp/PageDown (Mod1\-k/Mod1\-j)
|
|
||||||
Select the first item of the previous/next 'page' of items.
|
|
||||||
.TP
|
|
||||||
.B Home/End (Mod1\-g/Mod1\-G)
|
|
||||||
Select the first/last item.
|
|
||||||
.TP
|
|
||||||
.B Tab (Control\-i)
|
|
||||||
Copy the selected item to the input field.
|
Copy the selected item to the input field.
|
||||||
.TP
|
.TP
|
||||||
.B Return (Control\-j)
|
.B Return (Ctrl\-j)
|
||||||
Confirm selection and quit (print the selected item to standard output). Returns
|
Confirm selection. Prints the selected item to stdout and exits, returning
|
||||||
.B 0
|
success.
|
||||||
on termination.
|
|
||||||
.TP
|
.TP
|
||||||
.B Shift\-Return (Control\-Shift\-j)
|
.B Shift\-Return (Ctrl\-Shift\-j)
|
||||||
Confirm selection and quit (print the text in the input field to standard output).
|
Confirm input. Prints the input text to stdout and exits, returning success.
|
||||||
Returns
|
|
||||||
.B 0
|
|
||||||
on termination.
|
|
||||||
.TP
|
.TP
|
||||||
.B Escape (Control\-bracketleft)
|
.B Escape (Ctrl\-c)
|
||||||
Quit without selecting an item. Returns
|
Exit without selecting an item, returning failure.
|
||||||
.B 1
|
|
||||||
on termination.
|
|
||||||
.TP
|
.TP
|
||||||
.B Backspace (Control\-h)
|
.B Ctrl\-y
|
||||||
Remove a character from the input field.
|
Paste the current X selection into the input field.
|
||||||
.TP
|
|
||||||
.B Control\-u
|
|
||||||
Remove all characters from the input field.
|
|
||||||
.TP
|
|
||||||
.B Control\-w
|
|
||||||
Remove all characters of current word from the input field.
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR dwm (1),
|
.BR dwm (1)
|
||||||
.BR wmii (1) .
|
|
||||||
|
21
dmenu_path
21
dmenu_path
@ -2,25 +2,8 @@
|
|||||||
CACHE=$HOME/.dmenu_cache
|
CACHE=$HOME/.dmenu_cache
|
||||||
IFS=:
|
IFS=:
|
||||||
|
|
||||||
uptodate() {
|
if ! test -f "$CACHE" || find $PATH -type d -newer "$CACHE" | grep -q .; then
|
||||||
test -f "$CACHE" &&
|
find $PATH ! -type d \( -perm -1 -o -perm -10 -o -perm -100 \) | sed 's/.*\///' | sort -u > "$CACHE"
|
||||||
for dir in $PATH
|
|
||||||
do
|
|
||||||
test ! $dir -nt "$CACHE" || return 1
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
if ! uptodate
|
|
||||||
then
|
|
||||||
for dir in $PATH
|
|
||||||
do
|
|
||||||
cd "$dir" &&
|
|
||||||
for file in *
|
|
||||||
do
|
|
||||||
test -x "$file" && echo "$file"
|
|
||||||
done
|
|
||||||
done | sort | uniq > "$CACHE".$$ &&
|
|
||||||
mv "$CACHE".$$ "$CACHE"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cat "$CACHE"
|
cat "$CACHE"
|
||||||
|
177
draw.c
Normal file
177
draw.c
Normal file
@ -0,0 +1,177 @@
|
|||||||
|
/* See LICENSE file for copyright and license details. */
|
||||||
|
#include <locale.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <X11/Xlib.h>
|
||||||
|
#include "draw.h"
|
||||||
|
|
||||||
|
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
||||||
|
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
||||||
|
#define DEFAULTFN "fixed"
|
||||||
|
|
||||||
|
static Bool loadfont(DC *dc, const char *fontstr);
|
||||||
|
|
||||||
|
void
|
||||||
|
drawrect(DC *dc, int x, int y, unsigned int w, unsigned int h, Bool fill, unsigned long color) {
|
||||||
|
XSetForeground(dc->dpy, dc->gc, color);
|
||||||
|
if(fill)
|
||||||
|
XFillRectangle(dc->dpy, dc->canvas, dc->gc, dc->x + x, dc->y + y, w, h);
|
||||||
|
else
|
||||||
|
XDrawRectangle(dc->dpy, dc->canvas, dc->gc, dc->x + x, dc->y + y, w-1, h-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
drawtext(DC *dc, const char *text, unsigned long col[ColLast]) {
|
||||||
|
char buf[BUFSIZ];
|
||||||
|
size_t mn, n = strlen(text);
|
||||||
|
|
||||||
|
/* shorten text if necessary */
|
||||||
|
for(mn = MIN(n, sizeof buf); textnw(dc, text, mn) + dc->font.height/2 > dc->w; mn--)
|
||||||
|
if(mn == 0)
|
||||||
|
return;
|
||||||
|
memcpy(buf, text, mn);
|
||||||
|
if(mn < n)
|
||||||
|
for(n = MAX(mn-3, 0); n < mn; buf[n++] = '.');
|
||||||
|
|
||||||
|
drawrect(dc, 0, 0, dc->w, dc->h, True, BG(dc, col));
|
||||||
|
drawtextn(dc, buf, mn, col);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
drawtextn(DC *dc, const char *text, size_t n, unsigned long col[ColLast]) {
|
||||||
|
int x = dc->x + dc->font.height/2;
|
||||||
|
int y = dc->y + dc->font.ascent+1;
|
||||||
|
|
||||||
|
XSetForeground(dc->dpy, dc->gc, FG(dc, col));
|
||||||
|
if(dc->font.set)
|
||||||
|
XmbDrawString(dc->dpy, dc->canvas, dc->font.set, dc->gc, x, y, text, n);
|
||||||
|
else {
|
||||||
|
XSetFont(dc->dpy, dc->gc, dc->font.xfont->fid);
|
||||||
|
XDrawString(dc->dpy, dc->canvas, dc->gc, x, y, text, n);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
eprintf(const char *fmt, ...) {
|
||||||
|
va_list ap;
|
||||||
|
|
||||||
|
va_start(ap, fmt);
|
||||||
|
vfprintf(stderr, fmt, ap);
|
||||||
|
va_end(ap);
|
||||||
|
|
||||||
|
if(fmt[0] != '\0' && fmt[strlen(fmt)-1] == ':') {
|
||||||
|
fputc(' ', stderr);
|
||||||
|
perror(NULL);
|
||||||
|
}
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
freedc(DC *dc) {
|
||||||
|
if(dc->font.set)
|
||||||
|
XFreeFontSet(dc->dpy, dc->font.set);
|
||||||
|
if(dc->font.xfont)
|
||||||
|
XFreeFont(dc->dpy, dc->font.xfont);
|
||||||
|
if(dc->canvas)
|
||||||
|
XFreePixmap(dc->dpy, dc->canvas);
|
||||||
|
XFreeGC(dc->dpy, dc->gc);
|
||||||
|
XCloseDisplay(dc->dpy);
|
||||||
|
free(dc);
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned long
|
||||||
|
getcolor(DC *dc, const char *colstr) {
|
||||||
|
Colormap cmap = DefaultColormap(dc->dpy, DefaultScreen(dc->dpy));
|
||||||
|
XColor color;
|
||||||
|
|
||||||
|
if(!XAllocNamedColor(dc->dpy, cmap, colstr, &color, &color))
|
||||||
|
eprintf("cannot allocate color '%s'\n", colstr);
|
||||||
|
return color.pixel;
|
||||||
|
}
|
||||||
|
|
||||||
|
DC *
|
||||||
|
initdc(void) {
|
||||||
|
DC *dc;
|
||||||
|
|
||||||
|
if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
|
||||||
|
fprintf(stderr, "no locale support\n");
|
||||||
|
if(!(dc = calloc(1, sizeof *dc)))
|
||||||
|
eprintf("cannot malloc %u bytes:", sizeof *dc);
|
||||||
|
if(!(dc->dpy = XOpenDisplay(NULL)))
|
||||||
|
eprintf("cannot open display\n");
|
||||||
|
|
||||||
|
dc->gc = XCreateGC(dc->dpy, DefaultRootWindow(dc->dpy), 0, NULL);
|
||||||
|
XSetLineAttributes(dc->dpy, dc->gc, 1, LineSolid, CapButt, JoinMiter);
|
||||||
|
return dc;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
initfont(DC *dc, const char *fontstr) {
|
||||||
|
if(!loadfont(dc, fontstr ? fontstr : DEFAULTFN)) {
|
||||||
|
if(fontstr != NULL)
|
||||||
|
fprintf(stderr, "cannot load font '%s'\n", fontstr);
|
||||||
|
if(fontstr == NULL || !loadfont(dc, DEFAULTFN))
|
||||||
|
eprintf("cannot load font '%s'\n", DEFAULTFN);
|
||||||
|
}
|
||||||
|
dc->font.height = dc->font.ascent + dc->font.descent;
|
||||||
|
}
|
||||||
|
|
||||||
|
Bool
|
||||||
|
loadfont(DC *dc, const char *fontstr) {
|
||||||
|
char *def, **missing;
|
||||||
|
int i, n;
|
||||||
|
|
||||||
|
if(!*fontstr)
|
||||||
|
return False;
|
||||||
|
if((dc->font.set = XCreateFontSet(dc->dpy, fontstr, &missing, &n, &def))) {
|
||||||
|
char **names;
|
||||||
|
XFontStruct **xfonts;
|
||||||
|
|
||||||
|
n = XFontsOfFontSet(dc->font.set, &xfonts, &names);
|
||||||
|
for(i = dc->font.ascent = dc->font.descent = 0; i < n; i++) {
|
||||||
|
dc->font.ascent = MAX(dc->font.ascent, xfonts[i]->ascent);
|
||||||
|
dc->font.descent = MAX(dc->font.descent, xfonts[i]->descent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if((dc->font.xfont = XLoadQueryFont(dc->dpy, fontstr))) {
|
||||||
|
dc->font.ascent = dc->font.xfont->ascent;
|
||||||
|
dc->font.descent = dc->font.xfont->descent;
|
||||||
|
}
|
||||||
|
if(missing)
|
||||||
|
XFreeStringList(missing);
|
||||||
|
return (dc->font.set || dc->font.xfont);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
mapdc(DC *dc, Window win, unsigned int w, unsigned int h) {
|
||||||
|
XCopyArea(dc->dpy, dc->canvas, win, dc->gc, 0, 0, w, h, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
resizedc(DC *dc, unsigned int w, unsigned int h) {
|
||||||
|
if(dc->canvas)
|
||||||
|
XFreePixmap(dc->dpy, dc->canvas);
|
||||||
|
|
||||||
|
dc->canvas = XCreatePixmap(dc->dpy, DefaultRootWindow(dc->dpy), w, h,
|
||||||
|
DefaultDepth(dc->dpy, DefaultScreen(dc->dpy)));
|
||||||
|
dc->w = w;
|
||||||
|
dc->h = h;
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
textnw(DC *dc, const char *text, size_t len) {
|
||||||
|
if(dc->font.set) {
|
||||||
|
XRectangle r;
|
||||||
|
|
||||||
|
XmbTextExtents(dc->font.set, text, len, NULL, &r);
|
||||||
|
return r.width;
|
||||||
|
}
|
||||||
|
return XTextWidth(dc->font.xfont, text, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
textw(DC *dc, const char *text) {
|
||||||
|
return textnw(dc, text, strlen(text)) + dc->font.height;
|
||||||
|
}
|
34
draw.h
Normal file
34
draw.h
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
/* See LICENSE file for copyright and license details. */
|
||||||
|
|
||||||
|
#define FG(dc, col) ((col)[(dc)->invert ? ColBG : ColFG])
|
||||||
|
#define BG(dc, col) ((col)[(dc)->invert ? ColFG : ColBG])
|
||||||
|
|
||||||
|
enum { ColBG, ColFG, ColBorder, ColLast };
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
int x, y, w, h;
|
||||||
|
Bool invert;
|
||||||
|
Display *dpy;
|
||||||
|
GC gc;
|
||||||
|
Pixmap canvas;
|
||||||
|
struct {
|
||||||
|
int ascent;
|
||||||
|
int descent;
|
||||||
|
int height;
|
||||||
|
XFontSet set;
|
||||||
|
XFontStruct *xfont;
|
||||||
|
} font;
|
||||||
|
} DC; /* draw context */
|
||||||
|
|
||||||
|
void drawrect(DC *dc, int x, int y, unsigned int w, unsigned int h, Bool fill, unsigned long color);
|
||||||
|
void drawtext(DC *dc, const char *text, unsigned long col[ColLast]);
|
||||||
|
void drawtextn(DC *dc, const char *text, size_t n, unsigned long col[ColLast]);
|
||||||
|
void eprintf(const char *fmt, ...);
|
||||||
|
void freedc(DC *dc);
|
||||||
|
unsigned long getcolor(DC *dc, const char *colstr);
|
||||||
|
DC *initdc(void);
|
||||||
|
void initfont(DC *dc, const char *fontstr);
|
||||||
|
void mapdc(DC *dc, Window win, unsigned int w, unsigned int h);
|
||||||
|
void resizedc(DC *dc, unsigned int w, unsigned int h);
|
||||||
|
int textnw(DC *dc, const char *text, size_t len);
|
||||||
|
int textw(DC *dc, const char *text);
|
Reference in New Issue
Block a user