blob: bb23baca8d3cc21ef3a3e8f20095d1eade5673e1 (
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
|
/* -------------------------------------------------------------
KDE Tuberling
Sound factory
mailto:e.bischoff@noos.fr
------------------------------------------------------------- */
#ifndef _SOUNDFACTORY_H_
#define _SOUNDFACTORY_H_
#include "tqobject.h"
class TQDomDocument;
class TopLevel;
class SoundFactory : public TQObject
{
Q_OBJECT
public:
SoundFactory(TopLevel *parent, const char *name, uint selectedLanguage);
~SoundFactory();
void change(uint selectedLanguage);
void playSound(const TQString &soundRef) const;
protected:
bool registerLanguages(TQDomDocument &layoutDocument);
bool loadLanguage(TQDomDocument &layoutDocument, uint toLoad);
private:
void loadFailure();
private:
int sounds; // Number of sounds
TQString *namesList, // List of sound names
*filesList; // List of sound files associated with each sound name
TopLevel *topLevel; // Top-level window
};
#endif
|