~ubuntu-branches/ubuntu/oneiric/tuxguitar/oneiric

« back to all changes in this revision

Viewing changes to TuxGuitar-compat/src/org/herac/tuxguitar/io/tg/v08/TGStream.java

  • Committer: Bazaar Package Importer
  • Author(s): Philippe Coval
  • Date: 2008-06-19 00:30:30 UTC
  • mfrom: (1.1.1 upstream) (2.1.3 hardy)
  • Revision ID: james.westby@ubuntu.com-20080619003030-agens2gvd5m4dacu
New upstream release (Closes: #481728) also (LP: #176979, #212207)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.herac.tuxguitar.io.tg.v08;
 
2
 
 
3
public class TGStream {
 
4
        
 
5
        protected static final String TG_VERSION = ("TG_DEVEL-0.8");
 
6
        
 
7
        protected static final int CHANNEL_SOLO = 0x01;
 
8
        
 
9
        protected static final int CHANNEL_MUTE = 0x02;
 
10
        
 
11
        protected static final int MEASURE_HEADER_TIMESIGNATURE = 0x01;
 
12
        
 
13
        protected static final int MEASURE_HEADER_TEMPO = 0x02;
 
14
        
 
15
        protected static final int MEASURE_HEADER_OPEN_REPEAT = 0x04;
 
16
        
 
17
        protected static final int MEASURE_HEADER_CLOSE_REPEAT = 0x08;
 
18
        
 
19
        protected static final int MEASURE_HEADER_MARKER = 0x10;
 
20
        
 
21
        protected static final int MEASURE_HEADER_TRIPLET_FEEL = 0x20;
 
22
        
 
23
        protected static final int MEASURE_CLEF = 0x01;
 
24
        
 
25
        protected static final int MEASURE_KEYSIGNATURE = 0x02;
 
26
        
 
27
        protected static final int COMPONENT_NOTE = 0x01;
 
28
        
 
29
        protected static final int COMPONENT_SILENCE = 0x02;
 
30
        
 
31
        protected static final int COMPONENT_TIEDNOTE = 0x04;
 
32
        
 
33
        protected static final int COMPONENT_EFFECT = 0x08;
 
34
        
 
35
        protected static final int COMPONENT_NEXT_BEAT = 0x10;
 
36
        
 
37
        protected static final int COMPONENT_NEXT_DURATION = 0x20;
 
38
        
 
39
        protected static final int DURATION_DOTTED = 0x01;
 
40
        
 
41
        protected static final int DURATION_DOUBLE_DOTTED = 0x02;
 
42
        
 
43
        protected static final int DURATION_TUPLETO = 0x04;
 
44
        
 
45
        protected static final int EFFECT_VIBRATO = 0x01;
 
46
        
 
47
        protected static final int EFFECT_BEND = 0x02;
 
48
        
 
49
        protected static final int EFFECT_DEAD_NOTE = 0x04;
 
50
        
 
51
        protected static final int EFFECT_SLIDE = 0x08;
 
52
        
 
53
        protected static final int EFFECT_HAMMER = 0x10;
 
54
        
 
55
}