summaryrefslogtreecommitdiff
path: root/wm/icewm/patches/patch-ab
blob: 03a04b79c65ddbe0d27ae5fc711812ec1cb2ceed (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
$NetBSD: patch-ab,v 1.3 2002/05/03 10:56:39 wiz Exp $

--- src/aapm.cc.orig	Tue Oct  9 16:54:03 2001
+++ src/aapm.cc
@@ -25,6 +25,12 @@
 
 #ifdef CONFIG_APPLET_APM
 
+#if defined(__NetBSD__)
+#include <sys/ioctl.h>
+#include <machine/apmvar.h>
+#include <fcntl.h>
+#endif
+
 YColor *YApm::apmBg = 0;
 YColor *YApm::apmFg = 0;
 YFont *YApm::apmFont = 0;
@@ -32,6 +38,7 @@
 extern YPixmap *taskbackPixmap;
 
 void ApmStr(char *s, bool Tool) {
+#if !defined(__NetBSD__)
     char buf[45];
     int len, i, fd = open("/proc/apm", O_RDONLY);
     char driver[16];
@@ -102,6 +109,46 @@
             strcat(s,_(" - Charging"));
         else
             strcat(s,_("M"));
+#else
+    struct apm_power_info aip;
+    int fd = open(APMDEV, O_RDONLY);
+
+    if (fd == -1) {
+        return;
+    }
+
+    memset(&aip, 0, sizeof(aip));
+    if (ioctl(fd, APM_IOC_GETPOWER, &aip) == -1) {
+        fprintf(stderr, "ioctl failed on APMDEV");
+	close(fd);
+        return;
+    }
+
+    if (!Tool) {
+        if (taskBarShowApmTime) {
+            if (aip.minutes_left == 0) {
+                sprintf(s, "%02d", aip.battery_life);
+            } else
+                sprintf(s, "%d:%02d", aip.minutes_left/60, aip.minutes_left%60);
+        } else
+            sprintf(s, "%02d", aip.battery_life);
+    } else {
+        sprintf(s, "%d%%", aip.battery_life);
+    }
+
+    if (aip.ac_state == APM_AC_ON)
+        if (Tool)
+            strcat(s,_(" - Power"));
+        else
+            strcat(s,_("P"));
+    if (aip.battery_state == APM_BATT_CHARGING)
+        if (Tool)
+            strcat(s,_(" - Charging"));
+        else
+            strcat(s,_("M"));
+
+    close(fd);
+#endif
 }
 
 YApm::YApm(YWindow *aParent): YWindow(aParent) {