Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-29 Thread Jonathan Wilkes
I was just browsing through g_canvas.c and saw there's a 
dirty message in 0.42 you can use to manually set the dirty 
flag for a canvas.  So once you're abstraction has initialized, 
just send it a dirty 0 message.

Any reason this message hasn't been documented yet?  Or was it 
documented somewhere and I just missed it?

-Jonathan

--- On Thu, 9/23/10, Husk 00 hus...@gmail.com wrote:

 From: Husk 00 hus...@gmail.com
 Subject: Re: [PD] [Pd-announce] mediagrid v0.1
 To: Jonathan Wilkes jancs...@yahoo.com
 Cc: pd-list@iem.at List pd-list@iem.at, Hans-Christoph Steiner 
 h...@at.or.at
 Date: Thursday, September 23, 2010, 12:28 PM
 On Thu, Sep 23, 2010 at 2:54 AM,
 Jonathan Wilkes jancs...@yahoo.com
 wrote:
  That's really nice!
 
 thanks!
 
  Unfortunately when your abstraction initializes
 itself, something
  you are doing is setting the dirty flag.  This means
 for each
  instance you'll get a dialog asking if you want to
 save the
  changes.  (I think it's because you are sending a
 
 Yes, I know this problem and I didn't know that in 0.43
 it's solved
 (thanks Joao!). For this reason when I use a mediagrid
 istance with a
 lot of elements I usually use a killall -9 command (by
 shell object or
 popen) in order to close pd. I know it's not elegant but it
 works.
 Waiting for 0.43 ;)
 
  donecanvasdialog message to a canvas somewhere.)
 
 Yes, I use this message for draw the GOP. So I guess is
 this.
 
  This is on Pd version 0.42.5-extended in Ubuntu
 Hardy.
 
  I think matju has an object called [#many] in Gridflow
 that is
  an abstraction that dynamically creates GUI content on
 a GOP.
  I can't remember if it sets the dirty flag or not-- if
 not, you
  might see how he does it and use whatever method he
 uses.
 
  -Jonathan
 
 
 Thanks Jonathan for the suggestion. I know and apreciate
 gridflow, but
 I need to keep mediagrid easy to share (and right now I
 have two
 important dependence like pyext and ffmpeg)
 
 husk
 
 
  --- On Wed, 9/22/10, Hans-Christoph Steiner h...@at.or.at
 wrote:
 
  From: Hans-Christoph Steiner h...@at.or.at
  Subject: Re: [PD] [Pd-announce] mediagrid v0.1
  To: pd-list@iem.at
 List pd-list@iem.at
  Date: Wednesday, September 22, 2010, 11:34 PM
 
  Wow, the GUI is impressive, that's Pd? 
 Downloading
  now.  You should post this on the library
 downloads
  page:
 
  http://puredata.info/community/projects/software/
 
  Also, you don't need httpS, http just works and
 without the
  certificate warning:
 
  http://code.autistici.org/trac/planetQ/wiki/mediagrid
 
  .hc
 
  On Sep 22, 2010, at 2:10 PM, Husk 00 wrote:
 
   Hi list,
   just to share this abstraction I'm using in
 my recent
  patches.
   Mediagrid is a graphical file chooser.
   It is based on videogrid external from Sergi
 Lario and
  Lluis Gomez i Bigorda.
   Apart to be an abstraction and not an
 external, the
  main difference is
   that mediagrid is cross-platform and you can
 manage
  audio file also
   and no just video or images.
   Here more infos and download:
   https://code.autistici.org/trac/planetQ/wiki/mediagrid
  
   cheers
   husk
  
  
   --when Art become pratical
   we call it technology.
  
   When Technology become useless
   we call it Art
  
   www.estereotips.net
  
  
 ___
   Pd-announce mailing list
   pd-annou...@iem.at
   http://lists.puredata.info/listinfo/pd-announce
 
 
 
 
 
  I hate it when they say, He gave his life for
 his
  country.  Nobody gives their life for anything.
  We steal the lives of these kids.  -Admiral Gene
  LeRocque
 
 
  ___
  Pd-list@iem.at
  mailing list
  UNSUBSCRIBE and account-management - 
  http://lists.puredata.info/listinfo/pd-list
 
 
 
 
 
  ___
  Pd-list@iem.at
 mailing list
  UNSUBSCRIBE and account-management - 
  http://lists.puredata.info/listinfo/pd-list
 
 
 
 
 -- 
 when Art become pratical
 we call it technology.
 
 When Technology become useless
 we call it Art
 
 www.estereotips.net
 


  

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-23 Thread Husk 00
On Wed, Sep 22, 2010 at 11:34 PM, Hans-Christoph Steiner h...@at.or.at wrote:

 Wow, the GUI is impressive, that's Pd?  Downloading now.  You should post
 this on the library downloads page:

 http://puredata.info/community/projects/software/

thanks.
Sure I'll do.
husk

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-23 Thread Husk 00
On Thu, Sep 23, 2010 at 2:54 AM, Jonathan Wilkes jancs...@yahoo.com wrote:
 That's really nice!

thanks!

 Unfortunately when your abstraction initializes itself, something
 you are doing is setting the dirty flag.  This means for each
 instance you'll get a dialog asking if you want to save the
 changes.  (I think it's because you are sending a

Yes, I know this problem and I didn't know that in 0.43 it's solved
(thanks Joao!). For this reason when I use a mediagrid istance with a
lot of elements I usually use a killall -9 command (by shell object or
popen) in order to close pd. I know it's not elegant but it works.
Waiting for 0.43 ;)

 donecanvasdialog message to a canvas somewhere.)

Yes, I use this message for draw the GOP. So I guess is this.

 This is on Pd version 0.42.5-extended in Ubuntu Hardy.

 I think matju has an object called [#many] in Gridflow that is
 an abstraction that dynamically creates GUI content on a GOP.
 I can't remember if it sets the dirty flag or not-- if not, you
 might see how he does it and use whatever method he uses.

 -Jonathan


Thanks Jonathan for the suggestion. I know and apreciate gridflow, but
I need to keep mediagrid easy to share (and right now I have two
important dependence like pyext and ffmpeg)

husk


 --- On Wed, 9/22/10, Hans-Christoph Steiner h...@at.or.at wrote:

 From: Hans-Christoph Steiner h...@at.or.at
 Subject: Re: [PD] [Pd-announce] mediagrid v0.1
 To: pd-list@iem.at List pd-list@iem.at
 Date: Wednesday, September 22, 2010, 11:34 PM

 Wow, the GUI is impressive, that's Pd?  Downloading
 now.  You should post this on the library downloads
 page:

 http://puredata.info/community/projects/software/

 Also, you don't need httpS, http just works and without the
 certificate warning:

 http://code.autistici.org/trac/planetQ/wiki/mediagrid

 .hc

 On Sep 22, 2010, at 2:10 PM, Husk 00 wrote:

  Hi list,
  just to share this abstraction I'm using in my recent
 patches.
  Mediagrid is a graphical file chooser.
  It is based on videogrid external from Sergi Lario and
 Lluis Gomez i Bigorda.
  Apart to be an abstraction and not an external, the
 main difference is
  that mediagrid is cross-platform and you can manage
 audio file also
  and no just video or images.
  Here more infos and download:
  https://code.autistici.org/trac/planetQ/wiki/mediagrid
 
  cheers
  husk
 
 
  --when Art become pratical
  we call it technology.
 
  When Technology become useless
  we call it Art
 
  www.estereotips.net
 
  ___
  Pd-announce mailing list
  pd-annou...@iem.at
  http://lists.puredata.info/listinfo/pd-announce


 

 I hate it when they say, He gave his life for his
 country.  Nobody gives their life for anything.
 We steal the lives of these kids.  -Admiral Gene
 LeRocque


 ___
 Pd-list@iem.at
 mailing list
 UNSUBSCRIBE and account-management - 
 http://lists.puredata.info/listinfo/pd-list





 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management - 
 http://lists.puredata.info/listinfo/pd-list




-- 
when Art become pratical
we call it technology.

When Technology become useless
we call it Art

www.estereotips.net

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-23 Thread Mathieu Bouchard

On Wed, 22 Sep 2010, Jonathan Wilkes wrote:

(I think it's because you are sending a donecanvasdialog message to a 
canvas somewhere.) This is on Pd version 0.42.5-extended in Ubuntu 
Hardy. I think matju has an object called [#many] in Gridflow that is an 
abstraction that dynamically creates GUI content on a GOP. I can't 
remember if it sets the dirty flag or not-- if not, you might see how he 
does it and use whatever method he uses.


It doesn't, it uses 'coords' to change the size of the GOP (when you use 
the options 'spacing' and 'margins').


The properties-dialogue of [#many] should set 'dirty' (to be consistent 
with other properties-dialogues) but doesn't. That's on the TODO list.


 ___
| Mathieu Bouchard -- Villeray, Montréal, QC___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-23 Thread Mathieu Bouchard

On Thu, 23 Sep 2010, Mathieu Bouchard wrote:

It doesn't, it uses 'coords' to change the size of the GOP (when you use 
the options 'spacing' and 'margins').


(... and every time [#many] is loaded, of course).

 ___
| Mathieu Bouchard -- Villeray, Montréal, QC___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-22 Thread Hans-Christoph Steiner


Wow, the GUI is impressive, that's Pd?  Downloading now.  You should  
post this on the library downloads page:


http://puredata.info/community/projects/software/

Also, you don't need httpS, http just works and without the  
certificate warning:


http://code.autistici.org/trac/planetQ/wiki/mediagrid

.hc

On Sep 22, 2010, at 2:10 PM, Husk 00 wrote:


Hi list,
just to share this abstraction I'm using in my recent patches.
Mediagrid is a graphical file chooser.
It is based on videogrid external from Sergi Lario and Lluis Gomez i  
Bigorda.

Apart to be an abstraction and not an external, the main difference is
that mediagrid is cross-platform and you can manage audio file also
and no just video or images.
Here more infos and download:
https://code.autistici.org/trac/planetQ/wiki/mediagrid

cheers
husk


--
when Art become pratical
we call it technology.

When Technology become useless
we call it Art

www.estereotips.net

___
Pd-announce mailing list
pd-annou...@iem.at
http://lists.puredata.info/listinfo/pd-announce





I hate it when they say, He gave his life for his country.  Nobody  
gives their life for anything.  We steal the lives of these kids.  - 
Admiral Gene LeRocque



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-22 Thread Jonathan Wilkes
That's really nice!

Unfortunately when your abstraction initializes itself, something 
you are doing is setting the dirty flag.  This means for each 
instance you'll get a dialog asking if you want to save the 
changes.  (I think it's because you are sending a  
donecanvasdialog message to a canvas somewhere.)

This is on Pd version 0.42.5-extended in Ubuntu Hardy.

I think matju has an object called [#many] in Gridflow that is 
an abstraction that dynamically creates GUI content on a GOP.  
I can't remember if it sets the dirty flag or not-- if not, you 
might see how he does it and use whatever method he uses.

-Jonathan

--- On Wed, 9/22/10, Hans-Christoph Steiner h...@at.or.at wrote:

 From: Hans-Christoph Steiner h...@at.or.at
 Subject: Re: [PD] [Pd-announce] mediagrid v0.1
 To: pd-list@iem.at List pd-list@iem.at
 Date: Wednesday, September 22, 2010, 11:34 PM
 
 Wow, the GUI is impressive, that's Pd?  Downloading
 now.  You should post this on the library downloads
 page:
 
 http://puredata.info/community/projects/software/
 
 Also, you don't need httpS, http just works and without the
 certificate warning:
 
 http://code.autistici.org/trac/planetQ/wiki/mediagrid
 
 .hc
 
 On Sep 22, 2010, at 2:10 PM, Husk 00 wrote:
 
  Hi list,
  just to share this abstraction I'm using in my recent
 patches.
  Mediagrid is a graphical file chooser.
  It is based on videogrid external from Sergi Lario and
 Lluis Gomez i Bigorda.
  Apart to be an abstraction and not an external, the
 main difference is
  that mediagrid is cross-platform and you can manage
 audio file also
  and no just video or images.
  Here more infos and download:
  https://code.autistici.org/trac/planetQ/wiki/mediagrid
  
  cheers
  husk
  
  
  --when Art become pratical
  we call it technology.
  
  When Technology become useless
  we call it Art
  
  www.estereotips.net
  
  ___
  Pd-announce mailing list
  pd-annou...@iem.at
  http://lists.puredata.info/listinfo/pd-announce
 
 
 
 
 I hate it when they say, He gave his life for his
 country.  Nobody gives their life for anything. 
 We steal the lives of these kids.  -Admiral Gene
 LeRocque
 
 
 ___
 Pd-list@iem.at
 mailing list
 UNSUBSCRIBE and account-management - 
 http://lists.puredata.info/listinfo/pd-list
 


  

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-22 Thread João Pais

Unfortunately when your abstraction initializes itself, something
you are doing is setting the dirty flag.  This means for each
instance you'll get a dialog asking if you want to save the
changes.  (I think it's because you are sending a
donecanvasdialog message to a canvas somewhere.)

This is on Pd version 0.42.5-extended in Ubuntu Hardy.


this stops happening in Pd 0.43 (thanks to a request to MSP), btw

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] [Pd-announce] mediagrid v0.1

2010-09-22 Thread Jonathan Wilkes
Ah, that's good to know.  Thanks.

-Jonathan

--- On Thu, 9/23/10, João Pais jmmmp...@googlemail.com wrote:

 From: João Pais jmmmp...@googlemail.com
 Subject: Re: [PD] [Pd-announce] mediagrid v0.1
 To: pd-list@iem.at List pd-list@iem.at, Hans-Christoph Steiner 
 h...@at.or.at, Jonathan Wilkes jancs...@yahoo.com
 Date: Thursday, September 23, 2010, 3:40 AM
  Unfortunately when your
 abstraction initializes itself, something
  you are doing is setting the dirty flag.  This
 means for each
  instance you'll get a dialog asking if you want to
 save the
  changes.  (I think it's because you are sending
 a
  donecanvasdialog message to a canvas somewhere.)
 
  This is on Pd version 0.42.5-extended in Ubuntu
 Hardy.
 
 this stops happening in Pd 0.43 (thanks to a request to
 MSP), btw
 


  

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list