aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZephaniah E. Hull <warp@aehallh.com>2006-02-19 19:11:04 +0000
committerZephaniah E. Hull <warp@aehallh.com>2006-02-19 19:11:04 +0000
commitc6dbf89d9d40fcbce72493404ea02b7e7957513f (patch)
treec366713a210cb04309695e86394f306856f8bd42
parentBugzilla #5914 <https://bugs.freedesktop.org/show_bug.cgi?id=5914> Stupid (diff)
downloadxf86-input-evdev-c6dbf89d9d40fcbce72493404ea02b7e7957513f.tar.gz
xf86-input-evdev-c6dbf89d9d40fcbce72493404ea02b7e7957513f.tar.bz2
xf86-input-evdev-c6dbf89d9d40fcbce72493404ea02b7e7957513f.zip
Add bell support.
-rw-r--r--ChangeLog5
-rw-r--r--src/evdev_key.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index cc273a0..b8b04e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-19 Zephaniah E. Hull <warp@aehallh.com>
+
+ * src/evdev_key.c: (EvdevKbdBell):
+ Add bell support.
+
2006-02-16 Zephaniah E. Hull <warp@aehallh.com>
* src/evdev_btn.c: (EvdevBtnCalcRemap):
diff --git a/src/evdev_key.c b/src/evdev_key.c
index 9fddb2b..a759f5f 100644
--- a/src/evdev_key.c
+++ b/src/evdev_key.c
@@ -244,12 +244,14 @@ static KeySym map[] = {
};
/*
- * FIXME: We can't actually _do_ anything here.
- * Find a way around this.
+ * FIXME: We have no way of ringing the bell ourselves.
+ * So use the system bell for now.
*/
static void
EvdevKbdBell (int percent, DeviceIntPtr device, pointer ctrl, int unused)
{
+ xf86SoundKbdBell(percent, ((KeybdCtrl*) ctrl)->bell_pitch,
+ ((KeybdCtrl*) ctrl)->bell_duration);
}
static void