~profzoom/ubuntu/quantal/wmaker/bug-1079925

« back to all changes in this revision

Viewing changes to src/extend_pixmaps.h

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2004-11-10 14:05:30 UTC
  • Revision ID: james.westby@ubuntu.com-20041110140530-qpd66b5lm38x7apk
Tags: upstream-0.91.0
ImportĀ upstreamĀ versionĀ 0.91.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "wconfig.h"
 
2
 
 
3
static char *PRED_XKBGROUP1_XPM[] = {
 
4
    "    10    10        2            1",
 
5
    ". c #000000",
 
6
    "# c None",
 
7
    "........##",
 
8
    ".......###",
 
9
    "..########",
 
10
    "..########",
 
11
    "......####",
 
12
    ".....#####",
 
13
    "..########",
 
14
    "..########",
 
15
    "........##",
 
16
    "........##"
 
17
};
 
18
 
 
19
#ifdef LANGUAGE_TH
 
20
static char *PRED_XKBGROUP2_XPM[] = {
 
21
    "    10    10        2            1",
 
22
    ". c #000000",
 
23
    "# c None",
 
24
    "#..###..##",
 
25
    ".#..#.#..#",
 
26
    ".#...###..",
 
27
    "#...####..",
 
28
    "##..####..",
 
29
    "##..####..",
 
30
    "##..####..",
 
31
    "##..####..",
 
32
    "##..####..",
 
33
    "##.#####.#"
 
34
};
 
35
#elif defined LANGUAGE_SK
 
36
static char *PRED_XKBGROUP2_XPM[] = {
 
37
    "    10    10        2            1",
 
38
    ". c #000000",
 
39
    "# c None",
 
40
    "####..####",
 
41
    "####..####",
 
42
    "##......##",
 
43
    "##......##",
 
44
    "####..####",
 
45
    "#........#",
 
46
    "#........#",
 
47
    "####..####",
 
48
    "###....###",
 
49
    "##......##"};
 
50
#elif defined LANGUAGE_EL
 
51
static char *PRED_XKBGROUP2_XPM[] = {
 
52
    "    10    10        2            1",
 
53
    ". c #000000",
 
54
    "# c None",
 
55
    "##..######",
 
56
    "##..##....",
 
57
    "......####",
 
58
    "##..##....",
 
59
    "##..######",
 
60
    "..........",
 
61
    "##########",
 
62
    "..........",
 
63
    "##########",
 
64
    "##########"};
 
65
#else
 
66
static char *PRED_XKBGROUP2_XPM[] = {
 
67
    "    10    10        2            1",
 
68
    ". c #000000",
 
69
    "# c None",
 
70
    "##########",
 
71
    "#...##...#",
 
72
    "..........",
 
73
    "..........",
 
74
    "..........",
 
75
    "..........",
 
76
    "#........#",
 
77
    "##......##",
 
78
    "###....###",
 
79
    "####..####"
 
80
};
 
81
#endif
 
82
 
 
83
static char *PRED_XKBGROUP3_XPM[] = {
 
84
    "    10    10        2            1",
 
85
    ". c #000000",
 
86
    "# c None",
 
87
    "..........",
 
88
    "..........",
 
89
    "..##..##..",
 
90
    "..##..##..",
 
91
    "..........",
 
92
    "..........",
 
93
    "..######..",
 
94
    "...####...",
 
95
    "....##....",
 
96
    ".........."
 
97
};
 
98
 
 
99
static char *PRED_XKBGROUP4_XPM[] = {
 
100
    "    10    10        2            1",
 
101
    ". c #000000",
 
102
    "# c None",
 
103
    "..........",
 
104
    ".########.",
 
105
    ".#..##..#.",
 
106
    ".#..##..#.",
 
107
    ".########.",
 
108
    ".#......#.",
 
109
    ".##....##.",
 
110
    ".###..###.",
 
111
    ".########.",
 
112
    ".........."
 
113
};
 
114
 
 
115
 
 
116
 
 
117