aboutsummaryrefslogtreecommitdiff
path: root/gui/envgen.h
blob: 8db6b43c2b07722a4d3c356025947d7031f05f76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef __GG_ENVGEN_H__
#define __GG_ENVGEN_H__

#include "g_canvas.h"

typedef struct _wenvgen {
     t_glist* glist;
     int    width;
     int    height;
     int    numdoodles;
     int    grabbed; /* for moving points */
     int    pointerx;
     int    pointery;
} t_wenvgen;

typedef struct _envgen
{
     t_object x_obj;

     t_float x_val;
     
     t_float x_slevel;
     t_float x_time;
     int x_state;
     int last_state;
     int sustain_state;
     int envchanged;

     t_float* finalvalues;
     t_float* duration;
     t_float  totaldur;
     t_int    args; /* get rid of that */
     t_int resizing;


     t_clock* x_clock;
     t_float x_freeze;

     t_outlet* out2;
     /* widget parameters */
     t_wenvgen w;
} t_envgen;


t_widgetbehavior envgen_widgetbehavior;
void envgen_drawme(t_envgen *x, t_glist *glist, int firsttime);
int envgen_set_values(t_envgen * x);
void envgen_resize(t_envgen* x,int ns);

#endif