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);
Ivica Bukvic
committed
static t_class *toggle_class;
void toggle_draw_update(t_gobj *xgobj, t_glist *glist)
t_toggle *x = (t_toggle *)xgobj;
if (x->x_gui.x_changed)
{
if(glist_isvisible(glist))
{
t_canvas *canvas=glist_getcanvas(glist);
//sys_vgui(".x%lx.c itemconfigure %lxX1 -stroke #%6.6x\n", canvas, x,
// (x->x_on!=0.0)?x->x_gui.x_fcol:x->x_gui.x_bcol);
//sys_vgui(".x%lx.c itemconfigure %lxX2 -stroke #%6.6x\n", canvas, x,
// (x->x_on!=0.0)?x->x_gui.x_fcol:x->x_gui.x_bcol);
char colorbuf[MAXPDSTRING];
sprintf(colorbuf, "#%6.6x", x->x_gui.x_fcol);
gui_vmess("gui_toggle_update", "xxis", canvas,
x, x->x_on != 0.0, colorbuf);
}
x->x_gui.x_changed = 0;
}
}
void toggle_draw_new(t_toggle *x, t_glist *glist)
{
Mathieu L Bouchard
committed
int w=(x->x_gui.x_w+29)/30;
int x1=text_xpix(&x->x_gui.x_obj, glist);
int y1=text_ypix(&x->x_gui.x_obj, glist);
int x2=x1+x->x_gui.x_w, y2=y1+x->x_gui.x_h;
int col = (x->x_on!=0.0)?x->x_gui.x_fcol:x->x_gui.x_bcol;
sprintf(colorbuf, "#%6.6x", x->x_gui.x_fcol);
Mathieu L Bouchard
committed
iemgui_base_draw_new(&x->x_gui);
//sys_vgui(".x%lx.c create polyline %d %d %d %d -strokewidth %d "
// "-stroke #%6.6x -tags {%lxX1 x%lx text iemgui}\n",
// canvas, x1+w+1, y1+w+1, x2-w-1, y2-w-1, w, col, x, x);
//sys_vgui(".x%lx.c create polyline %d %d %d %d -strokewidth %d "
// "-stroke #%6.6x -tags {%lxX2 x%lx text iemgui}\n",
// canvas, x1+w+1, y2-w-1, x2-w-1, y1+w+1, w, col, x, x);
gui_vmess("gui_create_toggle", "xxsiiiiiiiiiiii", canvas,
x, colorbuf, w,
(x->x_on != 0.0),
x1+w+1, y1+w+1, x2-w-1, y2-w-1,
x1+w+1, y2-w-1, x2-w-1, y1+w+1, x1, y1);
}
void toggle_draw_move(t_toggle *x, t_glist *glist)
{
t_canvas *canvas=glist_getcanvas(glist);
Mathieu L Bouchard
committed
if (!glist_isvisible(canvas)) return;
int w=(x->x_gui.x_w+29)/30, s=w+1;
int x1=text_xpix(&x->x_gui.x_obj, glist), x2=x1+x->x_gui.x_w;
int y1=text_ypix(&x->x_gui.x_obj, glist), y2=y1+x->x_gui.x_h;
Mathieu L Bouchard
committed
iemgui_base_draw_move(&x->x_gui);
//sys_vgui(".x%lx.c itemconfigure {%lxX1||%lxX2} -strokewidth %d\n", canvas, x, x, w);
//sys_vgui(".x%lx.c coords %lxX1 %d %d %d %d\n",
// canvas, x, x1+s, y1+s, x2-s, y2-s);
//sys_vgui(".x%lx.c coords %lxX2 %d %d %d %d\n",
// canvas, x, x1+s, y2-s, x2-s, y1+s);
gui_vmess("gui_toggle_resize_cross", "xxiiiiiiiiiii",
canvas, x,
w,
x1+s, y1+s, x2-s, y2-s,
x1+s, y2-s, x2-s, y1+s,
x1, y1);
}
void toggle_draw_config(t_toggle* x, t_glist* glist)
{
t_canvas *canvas=glist_getcanvas(glist);
Mathieu L Bouchard
committed
iemgui_base_draw_config(&x->x_gui);
//sys_vgui(".x%lx.c itemconfigure {%lxX1||%lxX2} -stroke #%6.6x\n",
// canvas, x, x, x->x_on?x->x_gui.x_fcol:x->x_gui.x_bcol);
char colorbuf[MAXPDSTRING];
sprintf(colorbuf, "#%6.6x", x->x_gui.x_fcol);
gui_vmess("gui_toggle_update", "xxis", canvas,
x, x->x_on != 0.0, colorbuf);
static void toggle__clickhook(t_scalehandle *sh, int newstate)
t_toggle *x = (t_toggle *)(sh->h_master);
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_gui.x_w += sh->h_dragx;
x->x_gui.x_h += sh->h_dragy;
canvas_dirty(x->x_gui.x_glist, 1);
}
if (glist_isvisible(x->x_gui.x_glist))
{
toggle_draw_move(x, x->x_gui.x_glist);
static void toggle__motionhook(t_scalehandle *sh, t_floatarg f1, t_floatarg f2)
if (sh->h_dragon && sh->h_scale)
t_toggle *x = (t_toggle *)(sh->h_master);
int d = maxi((int)f1,(int)f2);
d = maxi(d,IEM_GUI_MINSIZE-x->x_gui.x_w);
sh->h_dragx = d;
sh->h_dragy = d;
scalehandle_drag_scale(sh);
int properties = gfxstub_haveproperties((void *)x);
if (properties)
{
int new_w = x->x_gui.x_w + sh->h_dragx;
Mathieu L Bouchard
committed
properties_set_field_int(properties,"dim.w_ent",new_w);
Mathieu L Bouchard
committed
scalehandle_dragon_label(sh,f1,f2);
void toggle_draw(t_toggle *x, t_glist *glist, int mode)
{
Mathieu L Bouchard
committed
if(mode == IEM_GUI_DRAW_MODE_UPDATE) sys_queuegui(x, x->x_gui.x_glist, toggle_draw_update);
else if(mode == IEM_GUI_DRAW_MODE_MOVE) toggle_draw_move(x, glist);
else if(mode == IEM_GUI_DRAW_MODE_NEW) toggle_draw_new(x, glist);
else if(mode == IEM_GUI_DRAW_MODE_CONFIG) toggle_draw_config(x, glist);
}
/* ------------------------ tgl widgetbehaviour----------------------------- */
static void toggle_getrect(t_gobj *z, t_glist *glist,
int *xp1, int *yp1, int *xp2, int *yp2)
{
t_toggle *x = (t_toggle *)z;
*xp1 = text_xpix(&x->x_gui.x_obj, glist);
*yp1 = text_ypix(&x->x_gui.x_obj, glist);
*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 toggle_save(t_gobj *z, t_binbuf *b)
{
t_toggle *x = (t_toggle *)z;
int bflcol[3];
t_symbol *srl[3];
iemgui_save(&x->x_gui, srl, bflcol);
Mathieu L Bouchard
committed
binbuf_addv(b, "ssiisiisssiiiiiiiff;", gensym("#X"),gensym("obj"),
(int)x->x_gui.x_obj.te_xpix, (int)x->x_gui.x_obj.te_ypix,
gensym("tgl"), x->x_gui.x_w, iem_symargstoint(&x->x_gui),
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[1], bflcol[2], x->x_on, x->x_nonzero);
}
static void toggle_properties(t_gobj *z, t_glist *owner)
{
t_toggle *x = (t_toggle *)z;
char buf[800], *gfx_tag;
t_symbol *srl[3];
iemgui_properties(&x->x_gui, srl);
Mathieu L Bouchard
committed
----------dimensions(pix):----------- %d %d size: 0 0 empty \
-----------non-zero-value:----------- %g value: 0.0 empty %g \
-1 lin log %d %d empty %d {%s} {%s} {%s} %d %d %d %d %d %d %d\n",
x->x_gui.x_w, IEM_GUI_MINSIZE,
x->x_nonzero, 1.0,/*non_zero-schedule*/
x->x_gui.x_loadinit, -1, -1,/*no multi*/
srl[0]->s_name, srl[1]->s_name, srl[2]->s_name,
x->x_gui.x_ldx, x->x_gui.x_ldy,
x->x_gui.x_font_style, x->x_gui.x_fontsize,
0xffffff & x->x_gui.x_bcol, 0xffffff & x->x_gui.x_fcol, 0xffffff & x->x_gui.x_lcol);
//gfxstub_new(&x->x_gui.x_obj.ob_pd, x, buf);
gfx_tag = gfxstub_new2(&x->x_gui.x_obj.ob_pd, x);
gui_start_vmess("gui_iemgui_dialog", "s", gfx_tag);
gui_start_array();
gui_s("type");
gui_s("tgl");
gui_s("size");
gui_i(x->x_gui.x_w);
gui_s("minimum-size");
gui_i(IEM_GUI_MINSIZE);
gui_s("nonzero-value");
gui_f(x->x_nonzero);
gui_s("nonzero_schedule"); // no idea what this is...
gui_f(1.0);
gui_s("init");
gui_i(x->x_gui.x_loadinit);
gui_s("send-symbol");
gui_s(srl[0]->s_name);
gui_s("receive-symbol");
gui_s(srl[1]->s_name);
gui_s("label");
gui_s(srl[2]->s_name);
gui_s("x-offset");
gui_i(x->x_gui.x_ldx);
gui_s("y-offset");
gui_i(x->x_gui.x_ldy);
gui_s("font-style");
gui_i(x->x_gui.x_font_style);
gui_s("font-size");
gui_i(x->x_gui.x_fontsize);
gui_s("background-color");
gui_i(0xffffff & x->x_gui.x_bcol);
gui_s("foreground-color");
gui_i(0xffffff & x->x_gui.x_fcol);
gui_s("label-color");
gui_i(0xffffff & x->x_gui.x_lcol);
gui_end_array();
gui_end_vmess();
}
static void toggle_bang(t_toggle *x)
{
x->x_gui.x_changed = 1;
Mathieu L Bouchard
committed
x->x_gui.x_draw(x, x->x_gui.x_glist, IEM_GUI_DRAW_MODE_UPDATE);
iemgui_out_float(&x->x_gui, 0, 0, x->x_on);
}
static void toggle_dialog(t_toggle *x, t_symbol *s, int argc, t_atom *argv)
{
canvas_apply_setundo(x->x_gui.x_glist, (t_gobj *)x);
Mathieu L Bouchard
committed
x->x_gui.x_h =
x->x_gui.x_w = iemgui_clip_size(atom_getintarg(0, argc, argv));
t_float nonzero = atom_getfloatarg(2, argc, argv);
if(nonzero == 0.0)
nonzero = 1.0;
x->x_nonzero = nonzero;
if(x->x_on != 0.0)
x->x_on = x->x_nonzero;
int sr_flags = iemgui_dialog(&x->x_gui, argc, argv);
Mathieu L Bouchard
committed
iemgui_draw_config(&x->x_gui);
iemgui_draw_io(&x->x_gui, sr_flags);
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 toggle_click(t_toggle *x, t_floatarg xpos, t_floatarg ypos,
t_floatarg shift, t_floatarg ctrl, t_floatarg alt)
static int toggle_newclick(t_gobj *z, struct _glist *glist,
int xpix, int ypix, int shift, int alt, int dbl, int doit)
toggle_click((t_toggle *)z, (t_floatarg)xpix, (t_floatarg)ypix,
(t_floatarg)shift, 0, (t_floatarg)alt);
return (1);
}
static void toggle_set(t_toggle *x, t_floatarg f)
{
if (x->x_on != f) x->x_gui.x_changed = 1;
x->x_on = f;
if(f != 0.0)
x->x_nonzero = f;
Mathieu L Bouchard
committed
x->x_gui.x_draw(x, x->x_gui.x_glist, IEM_GUI_DRAW_MODE_UPDATE);
}
static void toggle_float(t_toggle *x, t_floatarg f)
{
toggle_set(x, f);
Mathieu L Bouchard
committed
if(x->x_gui.x_put_in2out)
Mathieu L Bouchard
committed
iemgui_out_float(&x->x_gui, 0, 0, x->x_on);
}
static void toggle_fout(t_toggle *x, t_floatarg f)
{
toggle_set(x, f);
Mathieu L Bouchard
committed
iemgui_out_float(&x->x_gui, 0, 0, x->x_on);
}
static void toggle_loadbang(t_toggle *x)
{
Mathieu L Bouchard
committed
if(!sys_noloadbang && x->x_gui.x_loadinit)
toggle_fout(x, (t_float)x->x_on);
}
static void toggle_size(t_toggle *x, t_symbol *s, int ac, t_atom *av)
{
x->x_gui.x_w = iemgui_clip_size((int)atom_getintarg(0, ac, av));
x->x_gui.x_h = x->x_gui.x_w;
Mathieu L Bouchard
committed
iemgui_size(&x->x_gui);
}
static void toggle_nonzero(t_toggle *x, t_floatarg f)
{
if(f != 0.0)
x->x_nonzero = f;
}
static void *toggle_new(t_symbol *s, int argc, t_atom *argv)
{
t_toggle *x = (t_toggle *)pd_new(toggle_class);
int bflcol[]={-262144, -1, -1};
t_float on=0.0, nonzero=1.0;
Mathieu L Bouchard
committed
iem_inttosymargs(&x->x_gui, 0);
iem_inttofstyle(&x->x_gui, 0);
if(((argc == 13)||(argc == 14))&&IS_A_FLOAT(argv,0)
&&IS_A_FLOAT(argv,1)
&&(IS_A_SYMBOL(argv,2)||IS_A_FLOAT(argv,2))
&&(IS_A_SYMBOL(argv,3)||IS_A_FLOAT(argv,3))
&&(IS_A_SYMBOL(argv,4)||IS_A_FLOAT(argv,4))
&&IS_A_FLOAT(argv,5)&&IS_A_FLOAT(argv,6)
&&IS_A_FLOAT(argv,7)&&IS_A_FLOAT(argv,8)&&IS_A_FLOAT(argv,9)
&&IS_A_FLOAT(argv,10)&&IS_A_FLOAT(argv,11)&&IS_A_FLOAT(argv,12))
{
Mathieu L Bouchard
committed
a = atom_getintarg(0, argc, argv);
Mathieu L Bouchard
committed
iem_inttosymargs(&x->x_gui, atom_getintarg(1, argc, argv));
Mathieu L Bouchard
committed
ldx = atom_getintarg(5, argc, argv);
ldy = atom_getintarg(6, argc, argv);
Mathieu L Bouchard
committed
iem_inttofstyle(&x->x_gui, atom_getintarg(7, argc, argv));
Mathieu L Bouchard
committed
fs = maxi(atom_getintarg(8, argc, argv),4);
bflcol[0] = atom_getintarg(9, argc, argv);
bflcol[1] = atom_getintarg(10, argc, argv);
bflcol[2] = atom_getintarg(11, argc, argv);
on = atom_getfloatarg(12, argc, argv);
}
else iemgui_new_getnames(&x->x_gui, 2, 0);
if((argc == 14)&&IS_A_FLOAT(argv,13))
Mathieu L Bouchard
committed
nonzero = atom_getfloatarg(13, argc, argv);
x->x_gui.x_draw = (t_iemfunptr)toggle_draw;
x->x_gui.x_glist = (t_glist *)canvas_getcurrent();
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;
Mathieu L Bouchard
committed
if(x->x_gui.x_loadinit)
x->x_on = (on!=0.0)?nonzero:0.0;
else
x->x_on = 0.0;
Mathieu L Bouchard
committed
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;
x->x_gui.x_fontsize = fs;
x->x_gui.x_w = iemgui_clip_size(a);
x->x_gui.x_h = x->x_gui.x_w;
iemgui_all_colfromload(&x->x_gui, bflcol);
iemgui_verify_snd_ne_rcv(&x->x_gui);
outlet_new(&x->x_gui.x_obj, &s_float);
x->x_gui. x_handle = scalehandle_new((t_object *)x,x->x_gui.x_glist,1,toggle__clickhook,toggle__motionhook);
x->x_gui.x_lhandle = scalehandle_new((t_object *)x,x->x_gui.x_glist,0,toggle__clickhook,toggle__motionhook);
x->x_gui.x_obj.te_iemgui = 1;
x->x_gui.x_changed = 1;
return (x);
}
static void toggle_ff(t_toggle *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_toggle_setup(void)
{
toggle_class = class_new(gensym("tgl"), (t_newmethod)toggle_new,
(t_method)toggle_ff, sizeof(t_toggle), 0, A_GIMME, 0);
class_addcreator((t_newmethod)toggle_new, gensym("toggle"), A_GIMME, 0);
class_addbang(toggle_class, toggle_bang);
class_addfloat(toggle_class, toggle_float);
class_addmethod(toggle_class, (t_method)toggle_click, gensym("click"),
A_FLOAT, A_FLOAT, A_FLOAT, A_FLOAT, A_FLOAT, 0);
class_addmethod(toggle_class, (t_method)toggle_dialog, gensym("dialog"),
A_GIMME, 0);
class_addmethod(toggle_class, (t_method)toggle_loadbang, gensym("loadbang"),
0);
class_addmethod(toggle_class, (t_method)toggle_set, gensym("set"),
A_FLOAT, 0);
class_addmethod(toggle_class, (t_method)toggle_size, gensym("size"),
A_GIMME, 0);
Mathieu L Bouchard
committed
iemgui_class_addmethods(toggle_class);
Mathieu L Bouchard
committed
class_addmethod(toggle_class, (t_method)iemgui_init, gensym("init"),
A_FLOAT, 0);
class_addmethod(toggle_class, (t_method)toggle_nonzero, gensym("nonzero"),
A_FLOAT, 0);
Mathieu L Bouchard
committed
wb_init(&toggle_widgetbehavior,toggle_getrect,toggle_newclick);
class_setwidget(toggle_class, &toggle_widgetbehavior);
class_sethelpsymbol(toggle_class, gensym("toggle"));
class_setsavefn(toggle_class, toggle_save);
class_setpropertiesfn(toggle_class, toggle_properties);
}