~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to kmid/instrname.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
const char *instrumentName[128]={
 
2
    "Acoustic Grand Piano",
 
3
    "Bright Acoustic Piano",
 
4
    "Electric Grand Piano",
 
5
    "Honky-Tonk",
 
6
    "Rhodes Piano",
 
7
    "Chorused Piano",
 
8
    "Harpsichord",
 
9
    "Clavinet",
 
10
    "Celesta",
 
11
    "Glockenspiel",
 
12
    "Music Box",
 
13
    "Vibraphone",
 
14
    "Marimba",
 
15
    "Xylophone",
 
16
    "Tubular Bells",
 
17
    "Dulcimer",
 
18
    "Hammond Organ",
 
19
    "Percussive Organ",
 
20
    "Rock Organ",
 
21
    "Church Organ",
 
22
    "Reed Organ",
 
23
    "Accordion",
 
24
    "Harmonica",
 
25
    "Tango Accordion",
 
26
    "Acoustic Guitar (Nylon)",
 
27
    "Acoustic Guitar (Steel)",
 
28
    "Electric Guitar (Jazz)",
 
29
    "Electric Guitar (Clean)",
 
30
    "Electric Guitar (Muted)",
 
31
    "Overdriven Guitar",
 
32
    "Distortion Guitar",
 
33
    "Guitar Harmonics",
 
34
    "Acoustic Bass",
 
35
    "Electric Bass (Finger)",
 
36
    "Electric Bass (Pick)",
 
37
    "Fretless Bass",
 
38
    "Slap Bass 1",
 
39
    "Slap Bass 2",
 
40
    "Synth Bass 1",
 
41
    "Synth Bass 2",
 
42
    "Violin",
 
43
    "Viola",
 
44
    "Cello",
 
45
    "Contrabass",
 
46
    "Tremolo Strings",
 
47
    "Pizzicato Strings",
 
48
    "Orchestral Harp",
 
49
    "Timpani",
 
50
    "String Ensemble 1",
 
51
    "String Ensemble 2",
 
52
    "Synth Strings 1",
 
53
    "Synth Strings 2",
 
54
    "Choir Aahs",
 
55
    "Voice Oohs",
 
56
    "Synth Voice",
 
57
    "Orchestra Hit",
 
58
    "Trumpet",
 
59
    "Trombone",
 
60
    "Tuba",
 
61
    "Muted Trumpet",
 
62
    "French Horn",
 
63
    "Brass Section",
 
64
    "Synth Brass 1",
 
65
    "Synth Brass 2",
 
66
    "Soprano Sax",
 
67
    "Alto Sax",
 
68
    "Tenor Sax",
 
69
    "Baritone Sax",
 
70
    "Oboe",
 
71
    "English Horn",
 
72
    "Bassoon",
 
73
    "Clarinet",
 
74
    "Piccolo",
 
75
    "Flute",
 
76
    "Recorder",
 
77
    "Pan Flute",
 
78
    "Blown Bottle",
 
79
    "Shakuhachi",
 
80
    "Whistle",
 
81
    "Ocarina",
 
82
    "Lead 1 - Square Wave",
 
83
    "Lead 2 - Saw Tooth",
 
84
    "Lead 3 - Calliope",
 
85
    "Lead 4 - Chiflead",
 
86
    "Lead 5 - Charang",
 
87
    "Lead 6 - Voice",
 
88
    "Lead 7 - Fifths",
 
89
    "Lead 8 - Bass+Lead",
 
90
    "Pad 1 - New Age",
 
91
    "Pad 2 - Warm",
 
92
    "Pad 3 - Polysynth",
 
93
    "Pad 4 - Choir",
 
94
    "Pad 5 - Bow",
 
95
    "Pad 6 - Metallic",
 
96
    "Pad 7 - Halo",
 
97
    "Pad 8 - Sweep",
 
98
    "FX 1 - Rain",
 
99
    "FX 2 - Soundtrack",
 
100
    "FX 3 - Crystal",
 
101
    "FX 4 - Atmosphere",
 
102
    "FX 5 - Brightness",
 
103
    "FX 6 - Goblins",
 
104
    "FX 7 - Echoes",
 
105
    "FX 8 - Sci-fi",
 
106
    "Sitar",
 
107
    "Banjo",
 
108
    "Shamisen",
 
109
    "Koto",
 
110
    "Kalimba",
 
111
    "Bagpipe",
 
112
    "Fiddle",
 
113
    "Shannai",
 
114
    "Tinkle Bell",
 
115
    "Agogo",
 
116
    "Steel Drum",
 
117
    "Wook Block",
 
118
    "Taiko Drum",
 
119
    "Melodic Tom",
 
120
    "Synth Drum",
 
121
    "Reverse Cymbal",
 
122
    "Guitar Fret Noise",
 
123
    "Breath Noise",
 
124
    "Seashore",
 
125
    "Bird Tweet",
 
126
    "Telephone",
 
127
    "Helicopter",
 
128
    "Applause",
 
129
    "Gunshot"
 
130
};
 
131
 
 
132