Update NTK.
[nondaw.git] / timeline / src / Waveform.H
blobc55ac5e735dacbe2ddb871528edb6f3cd2ed4ddc
2 /*******************************************************************************/
3 /* Copyright (C) 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 /*******************************************************************************/
21 #pragma once
23 #include "Engine/Peak.H"
25 class Waveform {
27 public:
29     static bool fill;
30     static bool outline;
31     static bool vary_color;
32     static bool logarithmic;
34     static void scale ( Peak *pbuf, int npeaks, float gain );
35     static void draw ( int X, int Y, int W, int H,
36                        const Peak *pbuf, int peaks, int skip,
37                        Fl_Color color );