Update NTK.
[nondaw.git] / sequencer / src / phrase.H
blobf9b6ca27ab0b3b368585bb428e277cddc7474bce
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 #include "grid.H"
23 #include "canvas.H"
25 class pattern;
27 #include <vector>
28 using std::vector;
30 class phrase : public Grid
33     static vector <phrase*> _phrases;
35     void _add ( void );
37 public:
39     static signal <void> signal_create_destroy;
41     int draw_shape ( void ) const { return SQUARE; }
43     phrase ( void );
44     ~phrase ( void );
45     phrase ( const phrase &rhs );
47     static int phrases ( void );
48     static phrase * phrase_by_number ( int n );
49     static void reset ( void );
51     phrase *create ( void );
52     phrase * by_number ( int n ) const;
54     void put ( int x, int y, tick_t l );
55     phrase * clone ( void );
56     const char * row_name ( int r ) const;
57     void draw_row_names ( Canvas *c ) const;
58     void play ( tick_t start, tick_t end );
59     void trigger ( tick_t start, tick_t end );
61     void load ( smf *f );
62     void dump ( smf *f );