summaryrefslogtreecommitdiffstats
path: root/ktuberling/soundfactory.h
blob: 0365fdb624310935d5e0b98ac95b9a10a1ba6826 (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
{
  TQ_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