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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Philippe Coval
  • Date: 2008-06-19 00:30:30 UTC
  • mto: (5.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20080619003030-h719szrhsngou7c6
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.herac.tuxguitar.io.tg.v09;
 
2
 
 
3
public class TGStream {
 
4
        
 
5
        protected static final String TG_VERSION = ("TuxGuitar File Format - 0.9");
 
6
        
 
7
        protected static final int TRACK_LYRICS = 0x01;
 
8
        
 
9
        protected static final int CHANNEL_SOLO = 0x01;
 
10
        
 
11
        protected static final int CHANNEL_MUTE = 0x02;
 
12
        
 
13
        protected static final int MEASURE_HEADER_TIMESIGNATURE = 0x01;
 
14
        
 
15
        protected static final int MEASURE_HEADER_TEMPO = 0x02;
 
16
        
 
17
        protected static final int MEASURE_HEADER_OPEN_REPEAT = 0x04;
 
18
        
 
19
        protected static final int MEASURE_HEADER_CLOSE_REPEAT = 0x08;
 
20
        
 
21
        protected static final int MEASURE_HEADER_MARKER = 0x10;
 
22
        
 
23
        protected static final int MEASURE_HEADER_TRIPLET_FEEL = 0x20;
 
24
        
 
25
        protected static final int MEASURE_CLEF = 0x01;
 
26
        
 
27
        protected static final int MEASURE_KEYSIGNATURE = 0x02;
 
28
        
 
29
        protected static final int COMPONENT_NOTE = 0x01;
 
30
        
 
31
        protected static final int COMPONENT_SILENCE = 0x02;
 
32
        
 
33
        protected static final int COMPONENT_TIEDNOTE = 0x04;
 
34
        
 
35
        protected static final int COMPONENT_EFFECT = 0x08;
 
36
        
 
37
        protected static final int COMPONENT_NEXT_BEAT = 0x10;
 
38
        
 
39
        protected static final int COMPONENT_NEXT_DURATION = 0x20;
 
40
        
 
41
        protected static final int COMPONENT_VELOCITY = 0x40;
 
42
        
 
43
        protected static final int DURATION_DOTTED = 0x01;
 
44
        
 
45
        protected static final int DURATION_DOUBLE_DOTTED = 0x02;
 
46
        
 
47
        protected static final int DURATION_TUPLETO = 0x04;
 
48
        
 
49
        protected static final int EFFECT_BEND = 0x01;
 
50
        
 
51
        protected static final int EFFECT_TREMOLO_BAR = 0x02;
 
52
        
 
53
        protected static final int EFFECT_HARMONIC = 0x04;
 
54
        
 
55
        protected static final int EFFECT_GRACE = 0x08;
 
56
        
 
57
        protected static final int EFFECT_TRILL = 0x010;
 
58
        
 
59
        protected static final int EFFECT_TREMOLO_PICKING = 0x020;
 
60
        
 
61
        protected static final int EFFECT_VIBRATO = 0x040;
 
62
        
 
63
        protected static final int EFFECT_DEAD = 0x080;
 
64
        
 
65
        protected static final int EFFECT_SLIDE = 0x0100;
 
66
        
 
67
        protected static final int EFFECT_HAMMER = 0x0200;
 
68
        
 
69
        protected static final int EFFECT_GHOST = 0x0400;
 
70
        
 
71
        protected static final int EFFECT_ACCENTUATED = 0x0800;
 
72
        
 
73
        protected static final int EFFECT_HEAVY_ACCENTUATED = 0x01000;
 
74
        
 
75
        protected static final int EFFECT_PALM_MUTE = 0x02000;
 
76
        
 
77
        protected static final int EFFECT_STACCATO = 0x04000;
 
78
        
 
79
        protected static final int EFFECT_TAPPING = 0x08000;
 
80
        
 
81
        protected static final int EFFECT_SLAPPING = 0x010000;
 
82
        
 
83
        protected static final int EFFECT_POPPING = 0x020000;
 
84
        
 
85
        protected static final int EFFECT_FADE_IN = 0x040000;
 
86
        
 
87
        protected static final int GRACE_FLAG_DEAD = 0x01;
 
88
        
 
89
        protected static final int GRACE_FLAG_ON_BEAT = 0x02;
 
90
}