blob: 52be870126266fde670d3f44783d0c67992146b6 (
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
|
/* Copyright (c) 1997-1999 Miller Puckette.
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
/* misc. */
#include "m_pd.h"
#include "s_stuff.h"
#include <math.h>
#include <stdio.h>
#include <string.h>
#ifdef UNISTD
#include <sys/types.h>
#include <sys/time.h>
#include <sys/times.h>
#include <sys/param.h>
#include <unistd.h>
#endif
#ifdef MSW
#include <wtypes.h>
#include <time.h>
#endif
static t_class *namecanvas_class;
typedef struct _namecanvas
{
t_object x_obj;
t_symbol *x_sym;
t_pd *x_owner;
} t_namecanvas;
static void *namecanvas_new(t_symbol *s)
{
t_namecanvas *x = (t_namecanvas *)pd_new(namecanvas_class);
x->x_owner = (t_pd *)canvas_getcurrent();
x->x_sym = s;
if (*s->s_name) pd_bind(x->x_owner, s);
return (x);
}
static void namecanvas_free(t_namecanvas *x)
{
if (*x->x_sym->s_name) pd_unbind(x->x_owner, x->x_sym);
}
void namecanvas_setup(void)
{
namecanvas_class = class_new(gensym("namecanvas"),
(t_newmethod)namecanvas_new, (t_method)namecanvas_free,
sizeof(t_namecanvas), CLASS_NOINLET, A_DEFSYM, 0);
}
|