12345678910111213141516171819202122232425262728293031 |
- /* SLiM - Simple Login Manager
- Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
- Copyright (C) 2004-06 Johannes Winkelmann <jw@tks6.net>
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- */
- #ifndef _NUMLOCK_H_
- #define _NUMLOCK_H_
- #include <X11/Xlib.h>
- #include <X11/XKBlib.h>
- #include <X11/keysym.h>
- class NumLock {
- public:
- NumLock();
- static void setOn();
- static void setOff();
- private:
- static int xkb_init(Display* dpy);
- static unsigned int xkb_mask_modifier( XkbDescPtr xkb, const char *name );
- static unsigned int xkb_numlock_mask(Display* dpy);
- };
- #endif
|