Update NTK.
[nondaw.git] / sequencer / src / const.h
blob31d27e1ff8045cf1fce187a6930408658163650a
2 /*******************************************************************************/
3 /* Copyright (C) 2007,2008 Jonathan Moore Liles */
4 /* */
5 /* This program is free software; you can redistribute it and/or modify it */
6 /* under the terms of the GNU General Public License as published by the */
7 /* Free Software Foundation; either version 2 of the License, or (at your */
8 /* option) any later version. */
9 /* */
10 /* This program is distributed in the hope that it will be useful, but WITHOUT */
11 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
12 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for */
13 /* more details. */
14 /* */
15 /* You should have received a copy of the GNU General Public License along */
16 /* with This program; see the file COPYING. If not,write to the Free Software */
17 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /*******************************************************************************/
20 #pragma once
22 /* getting around this will require bank switching etc, and
23 before that happens I'd like to see a song with 128 phrases in it. */
24 const int MAX_PHRASE = 128;
25 const int MAX_PATTERN = 128;
27 const unsigned int PPQN = 480;
29 /* interval between GUI updates for playhead movement, etc. */
30 const double TRANSPORT_POLL_INTERVAL = 0.05;
32 const char APP_NAME[] = "Non-Sequencer";
33 const char APP_TITLE[] = "The Non-Sequencer";
34 const char COPYRIGHT[] = "Copyright (c) 2007-2012 Jonathan Moore Liles";
36 #define PACKAGE "non-sequencer"
38 /* directories */
40 #define USER_CONFIG_DIR ".non/"
41 #define INSTRUMENT_DIR "instruments/"