aboutsummaryrefslogtreecommitdiff
path: root/iemlib2/src/parentdollarzero.c
blob: 3f209b11d97af6d71167cd7962034e5462019061 (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
57
58
59
60
/* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution.

iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2006 */


#include "m_pd.h"
#ifdef HAVE_G_CANVAS_H
# include "g_canvas.h"
#endif
#include "iemlib.h"


/* -------------- parentdollarzero --------------- */
/* -- receives the $0 value of the parent canvas --*/

static t_class *parentdollarzero_class;

typedef struct _parentdollarzero
{
  t_object     x_obj;
  t_symbol     *s_parent_unique;
  unsigned int x_is_there_a_parent;
} t_parentdollarzero;

static void parentdollarzero_bang(t_parentdollarzero *x)
{
  if(x->x_is_there_a_parent)
    outlet_symbol(x->x_obj.ob_outlet, x->s_parent_unique);
}

static void *parentdollarzero_new(void)
{
  t_parentdollarzero *x = (t_parentdollarzero *)pd_new(parentdollarzero_class);
#ifdef HAVE_G_CANVAS_H
  t_glist *glist = (t_glist *)canvas_getcurrent();
  t_canvas *this_canvas = glist_getcanvas(glist);

  x->x_is_there_a_parent = (unsigned int)(0!=this_canvas->gl_owner);

  if(x->x_is_there_a_parent)
    x->s_parent_unique = canvas_realizedollar((t_canvas *)this_canvas->gl_owner, gensym("$0"));
  else
#else
  x->x_is_there_a_parent=0;
  error("[parentdollarzero]: compiled without g_canvas.h - cannot work properly!");
#endif
    x->s_parent_unique = gensym("");
  outlet_new(&x->x_obj, &s_symbol);
  return (x);
}

void parentdollarzero_setup(void)
{
  parentdollarzero_class = class_new(gensym("parentdollarzero"), (t_newmethod)parentdollarzero_new,
           0, sizeof(t_parentdollarzero), 0, 0);
  class_addcreator((t_newmethod)parentdollarzero_new, gensym("parent$0"), 0);
  class_addbang(parentdollarzero_class, (t_method)parentdollarzero_bang);
//  class_sethelpsymbol(parentdollarzero_class, gensym("iemhelp/help-parentdollarzero"));
}