summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/custom-ipaq.h60
-rw-r--r--library/custom-sharp.h53
-rw-r--r--library/sound.cpp63
3 files changed, 34 insertions, 142 deletions
diff --git a/library/custom-ipaq.h b/library/custom-ipaq.h
index 2886940..553b571 100644
--- a/library/custom-ipaq.h
+++ b/library/custom-ipaq.h
@@ -8,73 +8,13 @@
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#include <unistd.h>
21#include <stdio.h>
22#include <signal.h>
23#include <fcntl.h>
24#include <sys/ioctl.h>
25#include <linux/soundcard.h>
26#include <qpe/resource.h>
27#include <qsound.h>
28#include <qpe/sound.h>
29
30
31#ifndef QT_NO_SOUND
32
33#define CUSTOM_SOUND_ALARM \
34{ \
35 int fd; \
36 int vol; \
37 bool vol_reset = false; \
38 \
39 if ((( fd = open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) || \
40 (( fd = open ( "/dev/mixer", O_RDWR )) >= 0 )) { \
41 \
42 if ( ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { \
43 Config cfg ( "qpe" ); \
44 cfg. setGroup ( "Volume" ); \
45 \
46 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); \
47 if ( volalarm < 0 ) \
48 volalarm = 0; \
49 else if ( volalarm > 100 ) \
50 volalarm = 100; \
51 volalarm |= ( volalarm << 8 ); \
52 if ( ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) \
53 vol_reset = true; \
54 } \
55 } \
56 \
57 Sound snd ( "alarm" ); \
58 snd. play ( ); \
59 while ( !snd. isFinished ( )) \
60 qApp-> processEvents ( ); \
61 \
62 if ( fd >= 0 ) { \
63 if ( vol_reset ) \
64 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); \
65 ::close ( fd ); \
66 } \
67}
68
69#define CUSTOM_SOUND_KEYCLICK { QSound::play ( Resource::findSound ( "keysound" )); }
70#define CUSTOM_SOUND_TOUCH { QSound::play ( Resource::findSound ( "screensound" )); }
71
72#else
73
74#define CUSTOM_SOUND_ALARM { ; }
75#define CUSTOM_SOUND_KEYCLICK { ; }
76#define CUSTOM_SOUND_TOUCH { ; }
77
78
79#endif
80 20
diff --git a/library/custom-sharp.h b/library/custom-sharp.h
index 08f8a6f..3dab34f 100644
--- a/library/custom-sharp.h
+++ b/library/custom-sharp.h
@@ -27,81 +27,28 @@
27#define APM_IOC_BATTERY_BACK_CHK _IO(APM_IOC_MAGIC, 32) 27#define APM_IOC_BATTERY_BACK_CHK _IO(APM_IOC_MAGIC, 32)
28#endif 28#endif
29#ifndef APM_IOC_BATTERY_MAIN_CHK 29#ifndef APM_IOC_BATTERY_MAIN_CHK
30#define APM_IOC_BATTERY_MAIN_CHK _IO(APM_IOC_MAGIC, 33) 30#define APM_IOC_BATTERY_MAIN_CHK _IO(APM_IOC_MAGIC, 33)
31#endif 31#endif
32 32
33#include <unistd.h> 33#include <unistd.h>
34#include <stdio.h> 34#include <stdio.h>
35#include <signal.h> 35#include <signal.h>
36#include <fcntl.h> 36#include <fcntl.h>
37#include <sys/ioctl.h> 37#include <sys/ioctl.h>
38 38
39#define SHARP_DEV_IOCTL_COMMAND_START 0x5680
40
41/* --- for SHARP_BUZZER device --- */
42#define SHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
43#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
44#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1)
45#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2)
46#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3)
47#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4)
48#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5)
49
50#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
51#define SHARP_BUZ_KEYSOUND 2 /* key sound */
52#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */
53#define SHARP_PDA_WARNSOUND 4 /* warning occurred */
54#define SHARP_PDA_ERRORSOUND 5 /* error occurred */
55#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */
56#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */
57#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */
58#define SHARP_PDA_APPSTART 9 /* application start */
59#define SHARP_PDA_APPQUIT 10 /* application ends */
60#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
61#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */
62#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */
63#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */
64
65
66#define CUSTOM_BUZZER( sound ) \
67{ \
68 static int fd = open( "/dev/sharp_buz", O_RDWR|O_NONBLOCK ); \
69 ioctl( fd, SHARP_BUZZER_MAKESOUND, sound ); \
70}
71
72#define CUSTOM_SOUND_ALARM CUSTOM_BUZZER( SHARP_BUZ_SCHEDULE_ALARM )
73#define CUSTOM_SOUND_KEYCLICK CUSTOM_BUZZER( SHARP_BUZ_KEYSOUND )
74#define CUSTOM_SOUND_TOUCH CUSTOM_BUZZER( SHARP_BUZ_TOUCHSOUND )
75
76 39
77#include <sys/ioctl.h> 40#include <sys/ioctl.h>
78#include <asm/sharp_char.h> 41#include <asm/sharp_char.h>
79 42
80// a bit awkward, as this value is defined in emailclient.cpp aswell...
81#define LED_MAIL 0
82#define SHARP_LED_MAIL 9
83
84#define CUSTOM_LEDS( led, status ) \
85{ \
86 if ( led == LED_MAIL ) \
87 led = SHARP_LED_MAIL; \
88 static int fd = open( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); \
89 sharp_led_status leds; \
90 memset(&leds, 0, sizeof(leds)); \
91 leds.which = led; \
92 leds.status = status; \
93 ioctl( fd, SHARP_LED_SETSTATUS, (char*)&leds ); \
94}
95
96#define QPE_HAVE_MEMALERTER 43#define QPE_HAVE_MEMALERTER
97 44
98#define QPE_MEMALERTER_IMPL \ 45#define QPE_MEMALERTER_IMPL \
99static void sig_handler(int sig) \ 46static void sig_handler(int sig) \
100{ \ 47{ \
101 switch (sig) { \ 48 switch (sig) { \
102 case SIGHUP: \ 49 case SIGHUP: \
103 memstate = VeryLow; \ 50 memstate = VeryLow; \
104 break; \ 51 break; \
105 case SIGUSR1: \ 52 case SIGUSR1: \
106 memstate = Normal; \ 53 memstate = Normal; \
107 break; \ 54 break; \
diff --git a/library/sound.cpp b/library/sound.cpp
index 602fcf0..1ff3b3f 100644
--- a/library/sound.cpp
+++ b/library/sound.cpp
@@ -93,101 +93,106 @@ static int WAVsoundDuration(const QString& filename)
93 // ignored chunk 93 // ignored chunk
94 if ( chunk.size < 10000000 ) 94 if ( chunk.size < 10000000 )
95 (void)input.at(input.at()+chunk.size); 95 (void)input.at(input.at()+chunk.size);
96 } 96 }
97 } 97 }
98 98
99//qDebug("%dms",total); 99//qDebug("%dms",total);
100 return total; 100 return total;
101} 101}
102 102
103class SoundData : public QSound { 103class SoundData : public QSound {
104public: 104public:
105 SoundData(const QString& name) : 105 SoundData ( const QString& name ) :
106 QSound(Resource::findSound(name)), 106 QSound ( Resource::findSound ( name )),
107 filename(Resource::findSound(name)) 107 filename ( Resource::findSound ( name ))
108 { 108 {
109 loopsleft=0; 109 loopsleft=0;
110 } 110 ms = WAVsoundDuration(filename);
111 }
111 112
112 void playLoop(int loopcnt = -1) 113 void playLoop ( int loopcnt = -1 )
113 { 114 {
114 // needs server support 115 // needs server support
115 loopsleft = loopcnt; 116 loopsleft = loopcnt;
116 117
117 int ms = WAVsoundDuration(filename); 118 if ( ms )
118 if ( ms ) 119 startTimer ( ms > 50 ? ms-50 : 0 ); // 50 for latency
119 startTimer(ms > 50 ? ms-50 : 0); // 50 for latency 120 play ( );
120 play(); 121 }
121 }
122 122
123 void timerEvent ( QTimerEvent *e ) 123 void timerEvent ( QTimerEvent *e )
124 { 124 {
125 if (loopsleft >= 0) { 125 if ( loopsleft >= 0 ) {
126 if (--loopsleft <= 0) 126 if ( --loopsleft <= 0 ) {
127 killTimer (e->timerId()); 127 killTimer ( e-> timerId ( ));
128 return; 128 loopsleft = 0;
129 } 129 return;
130 play(); 130 }
131 } 131 }
132 play();
133 }
132 134
133 bool isFinished ( ) const 135 bool isFinished ( ) const
134 { 136 {
135 return ( loopsleft == 0 ); 137 return ( loopsleft == 0 );
136 } 138 }
137 139
138private: 140private:
139 QString filename; 141 QString filename;
140 int loopsleft; 142 int loopsleft;
143 int ms;
141}; 144};
145
142#endif 146#endif
143 147
144Sound::Sound(const QString& name) 148Sound::Sound(const QString& name)
145{ 149{
146#ifndef QT_NO_SOUND 150#ifndef QT_NO_SOUND
147 d = new SoundData(name); 151 d = new SoundData(name);
148#endif 152#endif
149} 153}
150 154
151Sound::~Sound() 155Sound::~Sound()
152{ 156{
153#ifndef QT_NO_SOUND 157#ifndef QT_NO_SOUND
154 delete d; 158 delete d;
155#endif 159#endif
156} 160}
157 161
158void Sound::play() 162void Sound::play()
159{ 163{
160#ifndef QT_NO_SOUND 164#ifndef QT_NO_SOUND
161 d->killTimers();
162 d->playLoop(1); 165 d->playLoop(1);
163#endif 166#endif
164} 167}
165 168
166void Sound::playLoop() 169void Sound::playLoop()
167{ 170{
168#ifndef QT_NO_SOUND 171#ifndef QT_NO_SOUND
169 d->killTimers(); 172 d->killTimers();
170 d->playLoop(); 173 d->playLoop();
171#endif 174#endif
172} 175}
173 176
174void Sound::stop() 177void Sound::stop()
175{ 178{
176#ifndef QT_NO_SOUND 179#ifndef QT_NO_SOUND
177 d->killTimers(); 180 d->killTimers();
178#endif 181#endif
179} 182}
180 183
181bool Sound::isFinished() const 184bool Sound::isFinished() const
182{ 185{
183#ifndef QT_NO_SOUND 186#ifndef QT_NO_SOUND
184 return d->isFinished(); 187 return d->isFinished();
188#else
189 return true;
185#endif 190#endif
186} 191}
187 192
188void Sound::soundAlarm() 193void Sound::soundAlarm()
189{ 194{
190#ifndef QT_NO_COP 195#ifndef QT_NO_COP
191 QCopEnvelope( "QPE/TaskBar", "soundAlarm()" ); 196 QCopEnvelope( "QPE/TaskBar", "soundAlarm()" );
192#endif 197#endif
193} 198}