diff options
author | okan | 2013-05-19 23:38:20 +0000 |
---|---|---|
committer | okan | 2013-05-19 23:38:20 +0000 |
commit | 7c22f25dc0a96380c81fbb79218bd21cf3812004 (patch) | |
tree | 7fd1e8847bcae6bca0793b2f7907e0776a9bae01 /calmwm.h | |
parent | 1f94cf68e821c1e6e3850f540d098737baf9ba00 (diff) | |
download | cwm-7c22f25dc0a96380c81fbb79218bd21cf3812004.tar.gz |
move the 2 small font helper functions to xutil.c
Diffstat (limited to 'calmwm.h')
-rw-r--r-- | calmwm.h | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.h,v 1.204 2013/05/19 23:16:29 okan Exp $ + * $OpenBSD: calmwm.h,v 1.205 2013/05/19 23:38:21 okan Exp $ */ #ifndef _CALMWM_H_ @@ -444,10 +444,6 @@ void conf_mousebind(struct conf *, char *, char *); void conf_screen(struct screen_ctx *); void conf_ungrab(struct conf *, struct keybinding *); -void font_draw(struct screen_ctx *, const char *, - Drawable, int, int, int); -int font_width(XftFont *, const char *, int); - void xev_loop(void); void xu_btn_grab(Window, int, u_int); @@ -466,6 +462,9 @@ void xu_ptr_setpos(Window, int, int); void xu_ptr_ungrab(void); void xu_sendmsg(Window, Atom, long); void xu_set_wm_state(Window win, int); +void xu_xft_draw(struct screen_ctx *, const char *, + Drawable, int, int, int); +int xu_xft_width(XftFont *, const char *, int); void xu_xorcolor(XftColor, XftColor, XftColor *); void xu_ewmh_net_supported(struct screen_ctx *); |