blob: fcbd7c9e01527c3ae3d3ed41a36759d1961edb34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/* $OpenBSD: bell.c,v 1.7 2023/03/08 04:43:11 guenther Exp $ */
/*
* This file is in the public domain.
*
* Author: Mark Lumsden <mark@showcomplex.com>
*
*/
/*
* Control how mg communicates with the user.
*/
#include <sys/queue.h>
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
#include "def.h"
#include "macro.h"
void
bellinit(void)
{
doaudiblebell = 1;
dovisiblebell = 0;
}
int
dobeep_num(const char *msg, int n)
{
ewprintf("%s %d", msg, n);
dobeep();
return (FALSE);
}
int
dobeep_msgs(const char *msg, const char *s)
{
ewprintf("%s %s", msg, s);
dobeep();
return (FALSE);
}
int
dobeep_msg(const char *msg)
{
ewprintf("%s", msg);
dobeep();
return (FALSE);
}
void
dobeep(void)
{
if (doaudiblebell) {
ttbeep();
}
if (dovisiblebell) {
sgarbf = TRUE;
update(CNONE);
if (inmacro) /* avoid delaying macro execution. */
return;
usleep(50000);
}
}
int
toggleaudiblebell(int f, int n)
{
if (f & FFARG)
doaudiblebell = n > 0;
else
doaudiblebell = !doaudiblebell;
return (TRUE);
}
int
togglevisiblebell(int f, int n)
{
if (f & FFARG)
dovisiblebell = n > 0;
else
dovisiblebell = !dovisiblebell;
return (TRUE);
}
|