blob: a3a87219d182d6eeedd8e26dca0d6272210c8feb (
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
51
52
53
54
55
56
|
#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 shift; /* move 100th */
float pointerx;
float pointery;
t_clock* numclock;
} t_wenvgen;
typedef struct _envgen
{
t_object x_obj;
t_float x_val;
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_int resizeable;
t_symbol* r_sym;
t_symbol* s_sym;
t_float min;
t_float max;
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
|