aboutsummaryrefslogtreecommitdiff
path: root/pd/src/g_all_guis.c
diff options
context:
space:
mode:
authorGuenter Geiger <ggeiger@users.sourceforge.net>2002-11-25 10:47:53 +0000
committerGuenter Geiger <ggeiger@users.sourceforge.net>2002-11-25 10:47:53 +0000
commit5aef03b3a165b309622f6d051bd4d53c42b4532d (patch)
tree808a2924e736f3327c968f0868fd1efdbc3a1aec /pd/src/g_all_guis.c
parentb09bea965d034a8e092b35d369f2ef6591ef0e65 (diff)
This commit was generated by cvs2svn to compensate for changes in r232,
which included commits to RCS files with non-trunk default branches. svn path=/trunk/; revision=233
Diffstat (limited to 'pd/src/g_all_guis.c')
-rw-r--r--pd/src/g_all_guis.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/pd/src/g_all_guis.c b/pd/src/g_all_guis.c
index 5bbf2f4a..db562404 100644
--- a/pd/src/g_all_guis.c
+++ b/pd/src/g_all_guis.c
@@ -26,8 +26,6 @@
/*------------------ global varaibles -------------------------*/
-t_symbol *iemgui_key_sym=0;
-
int iemgui_color_hex[]=
{
16579836, 10526880, 4210752, 16572640, 16572608,
@@ -741,56 +739,6 @@ void iemgui_color(void *x, t_iemgui *iemgui, t_symbol *s, int ac, t_atom *av)
(*iemgui->x_draw)(x, iemgui->x_glist, IEM_GUI_DRAW_MODE_CONFIG);
}
-int iemgui_list(void *x, t_iemgui *iemgui, t_symbol *s, int ac, t_atom *av)
-{
- if(iemgui->x_fsf.x_selected)
- {
- if((ac == 2)&&IS_A_FLOAT(av,0)&&IS_A_SYMBOL(av,1))
- {
- t_symbol *key = atom_getsymbolarg(1, ac, av);
- int keydown = atom_getintarg(0, ac, av);
-
- if(keydown)
- {
- int refresh = 1,i,d=1;
- static char buf[20];
-
- buf[0] = 0;
- if(!strcmp(key->s_name, "Shift_L")||!strcmp(key->s_name, "Shift_R"))
- iemgui->x_fsf.x_shiftdown = 1;
- else
- {
- if(iemgui->x_fsf.x_shiftdown)
- d = 10;
- if(!strcmp(key->s_name, "Up"))
- iemgui->x_obj.te_ypix -= d;
- else if(!strcmp(key->s_name, "Down"))
- iemgui->x_obj.te_ypix += d;
- else if(!strcmp(key->s_name, "Left"))
- iemgui->x_obj.te_xpix -= d;
- else if(!strcmp(key->s_name, "Right"))
- iemgui->x_obj.te_xpix += d;
- else
- refresh = 0;
- if(refresh)
- return(1);
- }
- return(0);
- }
- else
- {
- if(!strcmp(key->s_name, "Shift_L")||!strcmp(key->s_name, "Shift_R"))
- iemgui->x_fsf.x_shiftdown = 0;
- return(0);
- }
- }
- else
- return(-1);
- }
- else
- return(-1);
-}
-
void iemgui_displace(t_gobj *z, t_glist *glist, int dx, int dy)
{
t_iemguidummy *x = (t_iemguidummy *)z;