5 Epichord - a midi sequencer
6 Copyright (C) 2008 Evan Rinehart
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to
21 The Free Software Foundation, Inc.
22 51 Franklin Street, Fifth Floor
23 Boston, MA 02110-1301, USA
28 int beats_per_measure
;
29 int measures_per_phrase
;
30 int measures_until_record
;
51 void set_quant(int q
);
52 void set_songtool(int i
);
56 void scope_print(const char* text
);
58 void update_config_gui();
60 void set_beats_per_measure(int n
);
61 void set_measures_per_phrase(int n
);
62 void set_measures_until_record(int n
);
64 void set_beats_per_minute(int n
);
65 void set_alwayscopy(int v
);
66 void set_autotrackname(int v
);
67 void set_passthru(int v
);
68 void set_playinsert(int v
);
69 void set_recordonchan(int v
);
70 void set_playmove(int v
);
71 void set_follow(int v
);
72 void set_recordmode(int n
);
73 void set_robmode(int n
);
74 void set_defaultvelocity(int n
);
76 void show_song_edit();
77 void show_pattern_edit();
84 void add_track(track
* t
);
85 void remove_track(int n
);