Newer
Older
/* 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. */
/* g_7_guis.c written by Thomas Musil (c) IEM KUG Graz Austria 2000-2001 */
/* thanks to Miller Puckette, Guenther Geiger and Krzystof Czaja */
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "m_pd.h"
#include "g_canvas.h"
#include "g_all_guis.h"
#include <math.h>
extern int gfxstub_haveproperties(void *key);
void my_canvas_draw_select(t_my_canvas* x, t_glist* glist);
void my_canvas_draw_new(t_my_canvas *x, t_glist *glist)
{
t_canvas *canvas=glist_getcanvas(glist);
Mathieu L Bouchard
committed
int x1=text_xpix(&x->x_gui.x_obj, glist);
int y1=text_ypix(&x->x_gui.x_obj, glist);
sys_vgui(".x%lx.c create prect %d %d %d %d -fill #%6.6x -stroke #%6.6x "
Mathieu L Bouchard
committed
"-tags {%lxRECT x%lx text iemgui}\n",
Mathieu L Bouchard
committed
canvas, x1, y1, x1+x->x_vis_w, y1+x->x_vis_h,
Mathieu L Bouchard
committed
x->x_gui.x_bcol, x->x_gui.x_bcol, x, x);
Mathieu L Bouchard
committed
sys_vgui(".x%lx.c create prect %d %d %d %d -stroke #%6.6x "
Mathieu L Bouchard
committed
"-tags {%lxBASE x%lx text iemgui}\n",
Mathieu L Bouchard
committed
canvas, x1, y1, x1+x->x_gui.x_w, y1+x->x_gui.x_h,
Mathieu L Bouchard
committed
x->x_gui.x_bcol, x, x);
}
void my_canvas_draw_move(t_my_canvas *x, t_glist *glist)
{
Mathieu L Bouchard
committed
t_canvas *canvas=glist_getcanvas(glist);
if (!glist_isvisible(canvas)) return;
Mathieu L Bouchard
committed
int x1=text_xpix(&x->x_gui.x_obj, glist);
int y1=text_ypix(&x->x_gui.x_obj, glist);
Mathieu L Bouchard
committed
sys_vgui(".x%lx.c coords %lxRECT %d %d %d %d\n",
Mathieu L Bouchard
committed
canvas, x, x1, y1, x1+x->x_vis_w, y1+x->x_vis_h);
Mathieu L Bouchard
committed
sys_vgui(".x%lx.c coords %lxBASE %d %d %d %d\n",
Mathieu L Bouchard
committed
canvas, x, x1, y1, x1+x->x_gui.x_w, y1+x->x_gui.x_h);
}
void my_canvas_draw_config(t_my_canvas* x, t_glist* glist)
{
t_canvas *canvas=glist_getcanvas(glist);
sys_vgui(".x%lx.c itemconfigure %lxRECT -fill #%6.6x -stroke #%6.6x\n",
canvas, x, x->x_gui.x_bcol, x->x_gui.x_bcol);
Mathieu L Bouchard
committed
char bcol[8]; sprintf(bcol, "#%6.6x", x->x_gui.x_bcol);
sys_vgui(".x%lx.c itemconfigure %lxBASE -stroke %s\n", canvas, x,
x->x_gui.x_selected == canvas && x->x_gui.x_glist == canvas ?
Mathieu L Bouchard
committed
"$pd_colors(selection)" : bcol);
}
void my_canvas_draw_select(t_my_canvas* x, t_glist* glist)
{
t_canvas *canvas=glist_getcanvas(glist);
Mathieu L Bouchard
committed
if (x->x_gui.x_glist != glist_getcanvas(glist)) return;
char bcol[8]; sprintf(bcol, "#%6.6x", x->x_gui.x_bcol);
sys_vgui(".x%lx.c itemconfigure %lxBASE -stroke %s\n", canvas, x,
x->x_gui.x_selected == canvas && x->x_gui.x_glist == canvas ?
Mathieu L Bouchard
committed
"$pd_colors(selection)" : bcol);
static void my_canvas__clickhook(t_scalehandle *sh, int newstate)
if (sh->h_dragon && newstate == 0 && sh->h_scale)
canvas_apply_setundo(x->x_gui.x_glist, (t_gobj *)x);
if (sh->h_dragx || sh->h_dragy)
{
x->x_vis_w += sh->h_dragx;
x->x_vis_h += sh->h_dragy;
Ivica Bukvic
committed
// if select area is larger tahn the visible arae
// make select area match that of the dragged one
// so that we don't have to go into properties to
// manually adjust this
if (x->x_vis_w < x->x_gui.x_w)
x->x_gui.x_w = x->x_vis_w;
if (x->x_vis_h < x->x_gui.x_h)
x->x_gui.x_h = x->x_vis_h;
if (x->x_gui.x_w < x->x_gui.x_h)
x->x_gui.x_h = x->x_gui.x_w;
else
x->x_gui.x_w = x->x_gui.x_h;
if (glist_isvisible(x->x_gui.x_glist))
{
my_canvas_draw_move(x, x->x_gui.x_glist);
Mathieu L Bouchard
committed
iemgui__clickhook3(sh,newstate);
static void my_canvas__motionhook(t_scalehandle *sh, t_floatarg f1, t_floatarg f2)
if (sh->h_dragon && sh->h_scale)
t_my_canvas *x = (t_my_canvas *)(sh->h_master);
int dx = (int)f1, dy = (int)f2;
dx = maxi(dx,1-x->x_vis_w);
dy = maxi(dy,1-x->x_vis_h);
int properties = gfxstub_haveproperties((void *)x);
if (properties)
{
int new_w = x->x_vis_w + sh->h_dragx;
int new_h = x->x_vis_h + sh->h_dragy;
Mathieu L Bouchard
committed
properties_set_field_int(properties,"rng.min_ent",new_w);
properties_set_field_int(properties,"rng.max_ent",new_h);
int min = (new_w < new_h ? new_w : new_h);
if (min <= x->x_gui.x_w)
{
Mathieu L Bouchard
committed
properties_set_field_int(properties,"dim.w_ent",min);
Mathieu L Bouchard
committed
scalehandle_dragon_label(sh,f1,f2);
}
void my_canvas_draw(t_my_canvas *x, t_glist *glist, int mode)
{
Mathieu L Bouchard
committed
if(mode == IEM_GUI_DRAW_MODE_MOVE) my_canvas_draw_move(x, glist);
else if(mode == IEM_GUI_DRAW_MODE_NEW) my_canvas_draw_new(x, glist);
else if(mode == IEM_GUI_DRAW_MODE_SELECT) my_canvas_draw_select(x, glist);
else if(mode == IEM_GUI_DRAW_MODE_CONFIG) my_canvas_draw_config(x, glist);
}
/* ------------------------ cnv widgetbehaviour----------------------------- */
static void my_canvas_getrect(t_gobj *z, t_glist *glist,
int *xp1, int *yp1, int *xp2, int *yp2)
{
t_my_canvas *x = (t_my_canvas *)z;
*xp1 = text_xpix(&x->x_gui.x_obj, glist);
*yp1 = text_ypix(&x->x_gui.x_obj, glist);
if (!glist_istoplevel(glist) || !glist->gl_edit)
{
//if we are trying to calculate visibility of a widget inside a GOP
//or are calculating getrect during runtime
*xp2 = *xp1 + x->x_vis_w;
*yp2 = *yp1 + x->x_vis_h;
}
else
{
*xp2 = *xp1 + x->x_gui.x_w;
*yp2 = *yp1 + x->x_gui.x_h;
}
iemgui_label_getrect(x->x_gui, glist, xp1, yp1, xp2, yp2);
}
static void my_canvas_save(t_gobj *z, t_binbuf *b)
{
t_my_canvas *x = (t_my_canvas *)z;
int bflcol[3];
t_symbol *srl[3];
iemgui_save(&x->x_gui, srl, bflcol);
Mathieu L Bouchard
committed
binbuf_addv(b, "ssiisiiisssiiiiiii;", gensym("#X"),gensym("obj"),
(int)x->x_gui.x_obj.te_xpix, (int)x->x_gui.x_obj.te_ypix,
gensym("cnv"), x->x_gui.x_w, x->x_vis_w, x->x_vis_h,
srl[0], srl[1], srl[2], x->x_gui.x_ldx, x->x_gui.x_ldy,
iem_fstyletoint(&x->x_gui), x->x_gui.x_fontsize,
bflcol[0], bflcol[2], iem_symargstoint(&x->x_gui));
}
static void my_canvas_properties(t_gobj *z, t_glist *owner)
{
t_my_canvas *x = (t_my_canvas *)z;
char buf[800];
t_symbol *srl[3];
iemgui_properties(&x->x_gui, srl);
------selectable_dimensions(pix):------ %d %d size: 0.0 0.0 empty \
------visible_rectangle(pix)(pix):------ %d width: %d height: %d \
%d empty empty %d %d empty %d \
%d %d \
%d %d %d\n",
x->x_gui.x_w, 1,
x->x_vis_w, x->x_vis_h, 0,/*no_schedule*/
-1, -1, -1, -1,/*no linlog, no init, no multi*/
srl[0]->s_name, srl[1]->s_name,
srl[2]->s_name, x->x_gui.x_ldx, x->x_gui.x_ldy,
Mathieu L Bouchard
committed
x->x_gui.x_font_style, x->x_gui.x_fontsize,
0xffffff & x->x_gui.x_bcol, -1/*no frontcolor*/, 0xffffff & x->x_gui.x_lcol);
gfxstub_new(&x->x_gui.x_obj.ob_pd, x, buf);
}
static void my_canvas_get_pos(t_my_canvas *x)
{
Mathieu L Bouchard
committed
if(iemgui_has_snd(&x->x_gui) && x->x_gui.x_snd->s_thing)
{
x->x_at[0].a_w.w_float = text_xpix(&x->x_gui.x_obj, x->x_gui.x_glist);
x->x_at[1].a_w.w_float = text_ypix(&x->x_gui.x_obj, x->x_gui.x_glist);
pd_list(x->x_gui.x_snd->s_thing, &s_list, 2, x->x_at);
}
}
static void my_canvas_dialog(t_my_canvas *x, t_symbol *s, int argc, t_atom *argv)
{
//printf("cnv_dialog: selected=%d\n",x->x_gui.x_selected);
//printf("cnv_dialog: selected=%d\n",x->x_gui.x_selected);
Mathieu L Bouchard
committed
x->x_gui.x_h =
x->x_gui.x_w = maxi(atom_getintarg(0, argc, argv),1);
x->x_vis_w = maxi(atom_getintarg(2, argc, argv),1);
x->x_vis_h = maxi(atom_getintarg(3, argc, argv),1);
iemgui_dialog(&x->x_gui, argc, argv);
Mathieu L Bouchard
committed
x->x_gui.x_loadinit = 0;
Mathieu L Bouchard
committed
iemgui_draw_config(&x->x_gui);
Mathieu L Bouchard
committed
iemgui_shouldvis(&x->x_gui, IEM_GUI_DRAW_MODE_MOVE);
Mathieu L Bouchard
committed
scalehandle_draw(&x->x_gui);
Mathieu L Bouchard
committed
scrollbar_update(x->x_gui.x_glist);
}
static void my_canvas_size(t_my_canvas *x, t_symbol *s, int ac, t_atom *av)
{
int i = (int)atom_getintarg(0, ac, av);
if(i < 1)
i = 1;
x->x_gui.x_w = i;
x->x_gui.x_h = i;
Mathieu L Bouchard
committed
iemgui_size(&x->x_gui);
}
static void my_canvas_vis_size(t_my_canvas *x, t_symbol *s, int ac, t_atom *av)
{
int i;
i = (int)atom_getintarg(0, ac, av);
if(i < 1)
i = 1;
x->x_vis_w = i;
if(ac > 1)
{
i = (int)atom_getintarg(1, ac, av);
if(i < 1)
i = 1;
}
x->x_vis_h = i;
Mathieu L Bouchard
committed
if(glist_isvisible(x->x_gui.x_glist)) iemgui_draw_move(&x->x_gui);
}
static void *my_canvas_new(t_symbol *s, int argc, t_atom *argv)
{
t_my_canvas *x = (t_my_canvas *)pd_new(my_canvas_class);
int bflcol[]={-233017, -1, -66577};
int a=IEM_GUI_DEFAULTSIZE, w=100, h=60;
Mathieu L Bouchard
committed
iem_inttosymargs(&x->x_gui, 0);
iem_inttofstyle(&x->x_gui, 0);
if(((argc >= 10)&&(argc <= 13))
&&IS_A_FLOAT(argv,0)&&IS_A_FLOAT(argv,1)&&IS_A_FLOAT(argv,2))
{
Mathieu L Bouchard
committed
a = maxi(atom_getintarg(0, argc, argv),1);
w = maxi(atom_getintarg(1, argc, argv),1);
h = maxi(atom_getintarg(2, argc, argv),1);
if((argc >= 12) && (IS_A_SYMBOL(argv,3) || IS_A_FLOAT(argv,3)) &&
(IS_A_SYMBOL(argv,4) || IS_A_FLOAT(argv,4)))
{
i = 2;
iemgui_new_getnames(&x->x_gui, 3, argv);
}
else if((argc == 11)&&(IS_A_SYMBOL(argv,3)||IS_A_FLOAT(argv,3)))
{
i = 1;
iemgui_new_getnames(&x->x_gui, 3, argv);
}
else iemgui_new_getnames(&x->x_gui, 3, 0);
if(((argc >= 10)&&(argc <= 13))
&&(IS_A_SYMBOL(argv,i+3)||IS_A_FLOAT(argv,i+3))&&IS_A_FLOAT(argv,i+4)
&&IS_A_FLOAT(argv,i+5)&&IS_A_FLOAT(argv,i+6)
&&IS_A_FLOAT(argv,i+7)&&IS_A_FLOAT(argv,i+8)
&&IS_A_FLOAT(argv,i+9))
{
/* disastrously, the "label" sits in a different part of the
message. So we have to track its location separately (in
the slot x_labelbindex) and initialize it specially here. */
Mathieu L Bouchard
committed
iemgui_getfloatsym(argv+i+3);
Mathieu L Bouchard
committed
ldx = atom_getintarg(i+4, argc, argv);
ldy = atom_getintarg(i+5, argc, argv);
Mathieu L Bouchard
committed
iem_inttofstyle(&x->x_gui, atom_getintarg(i+6, argc, argv));
Mathieu L Bouchard
committed
fs = atom_getintarg(i+7, argc, argv);
bflcol[0] = atom_getintarg(i+8, argc, argv);
bflcol[2] = atom_getintarg(i+9, argc, argv);
}
if((argc == 13)&&IS_A_FLOAT(argv,i+10))
{
Mathieu L Bouchard
committed
iem_inttosymargs(&x->x_gui, atom_getintarg(i+10, argc, argv));
}
x->x_gui.x_draw = (t_iemfunptr)my_canvas_draw;
x->x_gui.x_glist = (t_glist *)canvas_getcurrent();
Mathieu L Bouchard
committed
x->x_gui.x_h = x->x_gui.x_w = a;
Mathieu L Bouchard
committed
if (x->x_gui.x_font_style<0 || x->x_gui.x_font_style>2) x->x_gui.x_font_style=0;
if (iemgui_has_rcv(&x->x_gui))
pd_bind(&x->x_gui.x_obj.ob_pd, x->x_gui.x_rcv);
x->x_gui.x_ldx = ldx;
x->x_gui.x_ldy = ldy;
if(fs < 4)
fs = 4;
x->x_gui.x_fontsize = fs;
iemgui_all_colfromload(&x->x_gui, bflcol);
x->x_at[0].a_type = A_FLOAT;
x->x_at[1].a_type = A_FLOAT;
iemgui_verify_snd_ne_rcv(&x->x_gui);
x->x_gui. x_handle = scalehandle_new((t_object *)x,x->x_gui.x_glist,1,my_canvas__clickhook,my_canvas__motionhook);
x->x_gui.x_lhandle = scalehandle_new((t_object *)x,x->x_gui.x_glist,0,my_canvas__clickhook,my_canvas__motionhook);
return (x);
}
static void my_canvas_ff(t_my_canvas *x)
{
Mathieu L Bouchard
committed
if(iemgui_has_rcv(&x->x_gui))
pd_unbind(&x->x_gui.x_obj.ob_pd, x->x_gui.x_rcv);
gfxstub_deleteforkey(x);
Mathieu L Bouchard
committed
if (x->x_gui. x_handle) scalehandle_free(x->x_gui. x_handle);
if (x->x_gui.x_lhandle) scalehandle_free(x->x_gui.x_lhandle);
}
void g_mycanvas_setup(void)
{
my_canvas_class = class_new(gensym("cnv"), (t_newmethod)my_canvas_new,
(t_method)my_canvas_ff, sizeof(t_my_canvas), CLASS_NOINLET, A_GIMME, 0);
class_addcreator((t_newmethod)my_canvas_new,
gensym("my_canvas"), A_GIMME, 0);
class_addmethod(my_canvas_class, (t_method)my_canvas_dialog,
gensym("dialog"), A_GIMME, 0);
class_addmethod(my_canvas_class, (t_method)my_canvas_size,
gensym("size"), A_GIMME, 0);
Mathieu L Bouchard
committed
iemgui_class_addmethods(my_canvas_class);
class_addmethod(my_canvas_class, (t_method)my_canvas_vis_size,
gensym("vis_size"), A_GIMME, 0);
class_addmethod(my_canvas_class, (t_method)my_canvas_get_pos,
gensym("get_pos"), 0);
Mathieu L Bouchard
committed
wb_init(&my_canvas_widgetbehavior,my_canvas_getrect,0);
class_setwidget(my_canvas_class, &my_canvas_widgetbehavior);
class_sethelpsymbol(my_canvas_class, gensym("my_canvas"));
class_setsavefn(my_canvas_class, my_canvas_save);
class_setpropertiesfn(my_canvas_class, my_canvas_properties);
}