atom feed46 messages in at.iem.pd-listRe: [PD] auto-completion with popup [...
FromSent OnAttachments
yvan volochineApr 4, 2011 11:29 am 
Mathieu BouchardApr 4, 2011 1:04 pm 
Pedro LopesApr 4, 2011 1:32 pm 
yvan volochineApr 4, 2011 1:39 pm 
Mathieu BouchardApr 4, 2011 1:39 pm 
Hans-Christoph SteinerApr 6, 2011 11:17 am 
Mathieu BouchardApr 6, 2011 12:23 pm 
yvan volochineApr 6, 2011 12:26 pm 
Hans-Christoph SteinerApr 6, 2011 1:03 pm 
Mathieu BouchardApr 6, 2011 2:09 pm 
Mathieu BouchardApr 6, 2011 2:22 pm 
yvan volochineApr 7, 2011 12:15 am 
JFApr 14, 2011 2:53 am 
yvan volochineApr 14, 2011 4:55 am 
JFApr 14, 2011 8:15 am 
Joe WhiteApr 14, 2011 8:27 am 
András MurányiApr 14, 2011 8:57 am 
Hans-Christoph SteinerApr 14, 2011 9:40 am 
Pagano, PatrickApr 14, 2011 10:29 am 
yvan volochineApr 14, 2011 12:23 pm 
Joe WhiteApr 15, 2011 4:33 am 
yvan volochineMay 6, 2011 8:17 am.gif
Patrice ColetMay 6, 2011 11:16 am 
yvan volochineMay 6, 2011 12:31 pm 
Patrice ColetMay 6, 2011 3:17 pm 
IOhannes m zmölnigMay 6, 2011 4:15 pm 
Hans-Christoph SteinerMay 6, 2011 5:08 pm 
Hans-Christoph SteinerMay 6, 2011 5:24 pm 
Patrice ColetMay 6, 2011 6:05 pm 
IOhannes m zmölnigMay 7, 2011 2:23 am 
yvan volochineMay 7, 2011 4:58 am 
IOhannes m zmölnigMay 7, 2011 7:04 am.tcl
Hans-Christoph SteinerMay 7, 2011 10:45 am 
yvan volochineMay 7, 2011 11:01 am 
IOhannes m zmölnigMay 8, 2011 12:33 am 
Hans-Christoph SteinerMay 8, 2011 9:37 am 
Hans-Christoph SteinerMay 8, 2011 9:40 am 
yvan volochineMay 9, 2011 10:31 am 
IOhannes m zmoelnigMay 10, 2011 1:56 am 
András MurányiMay 10, 2011 11:54 am 
Hans-Christoph SteinerMay 11, 2011 12:45 pm 
JFMay 11, 2011 7:31 pm 
yvan volochineMay 12, 2011 3:32 am 
Mathieu BouchardSep 19, 2011 9:48 pm 
Mathieu BouchardSep 19, 2011 9:52 pm 
yvan volochineSep 21, 2011 1:27 am 
Subject:Re: [PD] auto-completion with popup [was: 3 new gui-plugins]
From:Patrice Colet (cole@free.fr)
Date:May 6, 2011 3:17:20 pm
List:at.iem.pd-list

ok, but pd-vanilla is actually 0.43 and has tcl/tk-8.4, while pd-extended is
0.42 and has tcl/tk-8.5, so now it's not possible to use the new plugin release without recompiling
vanilla, or using a recent nightly build of pd-extended, that reduces a lot the chances
for using it.

I've installed the version 0.33 on vanilla and it doesn't look so bad, if it's just a matter of using pdsend instead of using pd it's possible to use
both with this code:

if {[llength [info procs ::pdsend]] == 0} { proc ::pdsend {args} {::pd "[join $args { }] ;"}}

Miller, why pd-vanilla still uses 8.4 ???

I'm actually coding an interface that is 8.4 compatible but with weird
behaviors, and working well with 8.5 and it's new options.

----- "yvan volochine" <yvan@gmail.com> a écrit :

On 05/06/2011 08:16 PM, Patrice Colet wrote:

thank you for this plugin, is it possible to have a 8.4 compatible code? then it would be possible to load it within pd-vanilla

no sorry I won't support tcl-8.4 (and its ugly fonts)

note that gui-plugins work only in pd >= 0.43 (vanilla or not) if you use pd-0.43 you should update tcl/tk to 8.5 anyway.

I found the time to refine autocompletion-plugin so I ended up kinda rewriting it (screenshot below).

there are lots of changes, it would be nice if some of you could test it and tell me what's wrong or what is weird etc...

latest is here:

http://github.com/gusano/pd_stuffs/tree/master/gui-plugins/autocompletion

I tested it only on linux and pd-0.43.1-test2 (vanilla).

list of changes:

- new GUI (à la DesireData) - added support for osx and win32 (untested) - added bash-completion-mode behavior (more or less) - added *.cfg file for options - completions update while typing - added 'All' mode (requested: completions popup as soon as you type) - hiting 'Enter' without the popup unedits and select the object ...

I'd like to track down bugs before releasing it this time ;)

thanks for the help.