Not yet working stack checking (symbol STACKCHECK)
[gnokii.git] / xgnokii / xgnokii_xring.h
1 /*
2
3   X G N O K I I
4
5   A Linux/Unix GUI for Nokia mobile phones.
6
7   Released under the terms of the GNU GPL, see file COPYING for more details.
8
9 */
10
11 #ifndef XGNOKII_XRING_H
12 #define XGNOKII_XRING_H
13
14 #include <assert.h>
15
16 enum {
17   KIE_BLACK,    KIE_BLACKSEL,
18   KIE_WHITEL,   KIE_WHITELSEL,
19   KIE_WHITEM,   KIE_WHITEMSEL,
20   KIE_WHITER,   KIE_WHITERSEL,
21   KIE_COUNT
22 };
23
24 #define WHITE_COUNT 21 /* how many keys on the keyboard */
25
26 #define BLACK_PRESSED 64
27 #define WHITE_PRESSED 128
28
29 typedef struct
30 {
31   GdkPixmap * pixmap;
32   GdkBitmap * mask;
33 } PixmapAndMask;
34
35 extern void GUI_ShowRingtonesWindow ();
36 extern void GUI_CreateRingtonesWindow ();
37
38 #endif