Re: [Clam-devel] subnetworks interfacing - NE several opened files

2008-07-30 Thread Natanael Olaiz
BTW, I forgot to ask: I kept three static methods on BaseNetwork: - static std::size_t PositionOfLastIdentifier( const std::string str) - static std::size_t PositionOfProcessingIdentifier( const std::string str) - static char NamesIdentifiersSeparator() Is that ok? El 07/30/2008

Re: [Clam-devel] Ladspa Plugins using embeded Networks

2008-07-30 Thread Pau Arumí
That's absolutely great! A big step forward to make CLAM more useful. I'm missing a simple SConstruct, so users can compile their own plugins on a clam independent directory. Is this planned? I see that the NE support (metadata editor) is on the way. This will be even more great. Couldn't we

Re: [Clam-devel] subnetworks interfacing - NE several opened files

2008-07-30 Thread Pau Arumí
On dc, 2008-07-30 at 03:48 -0300, Natanael Olaiz wrote: Here is almost the same refactoring, but BaseNetwork is all pure virtual, FlattenedNetwork is the actual Network, and MainWindow uses _flattenedNetwork for all player/flow management and BaseNetwork (for now the same FlattenedNetwork)

Re: [Clam-devel] subnetworks interfacing - NE several opened files

2008-07-30 Thread Natanael Olaiz
BTW, that question is related with this one: does the abstract interface need to have declared *all* the methods of both implementations? Also, remember the planning. Let's refactor the Network interface (graph getter, update changes to flowcontrol) *before* introducing the new Network class.

Re: [Clam-devel] Ladspa Plugins using embeded Networks

2008-07-30 Thread David García Garzón
I just noticed i have enabled the hardy-backports source. I think we should move to 4.4 so let's add it. Also Jun is working with 4.4 in windows. l Wednesday 30 July 2008 08:53:28 Natanael Olaiz va escriure: LadspaMetadataEditor.ui uses QFormLayout, which is since Qt 4.4. I updated my Qt and

Re: [Clam-devel] Ladspa Plugins using embeded Networks

2008-07-30 Thread David García Garzón
Enable hardy-backports on the apt/source.list El Wednesday 30 July 2008 10:15:44 Pau Arumí va escriure: That's absolutely great! A big step forward to make CLAM more useful. I'm missing a simple SConstruct, so users can compile their own plugins on a clam independent directory. Is this

Re: [Clam-devel] Ladspa Plugins using embeded Networks

2008-07-30 Thread Pau Arumí
Enable hardy-backports on the apt/source.list I did unsuccessfully -- better catch up with the recent mails than answering the older ones... ___ Clam-devel mailing list Clam-devel@llistes.projectes.lafarga.org

Re: [Clam-devel] (Urgent) Last commit (11755) considered harmful

2008-07-30 Thread David García Garzón
Oh, yes, QtOpenGL-dev is not included in libqt4-dev but as a separate package libqt4-opengl-dev you have to explicitly install. El Wednesday 30 July 2008 12:03:52 Pau Arumí va escriure: David, your last commit introducing the new QDialog class only in qt4.4 breaks compilation on ubuntu

Re: [Clam-devel] Ladspa Plugins using embeded Networks

2008-07-30 Thread David García Garzón
El Wednesday 30 July 2008 14:16:58 Pau Arumí va escriure: Enable hardy-backports on the apt/source.list I did unsuccessfully -- better catch up with the recent mails than answering the older ones... sorry but iua-mail just dropped a bunch of mails since today 00h. David.

Re: [Clam-devel] (Urgent) Last commit (11755) considered harmful

2008-07-30 Thread Pau Arumí
On dc, 2008-07-30 at 16:16 +0200, David García Garzón wrote: Quoting clam/CLAM/INSTALL * Qt4 packages to compile NetworkEditor and Annotator: qt4-dev-tools libqt4-dev (and libqt4-opengl-dev in latest versions) No, I had libqt4-opengl-dev. The problem was that the qt4.py changes you made

Re: [Clam-devel] (Urgent) Last commit (11755) considered harmful

2008-07-30 Thread David García Garzón
It's true that I could use a QGridLayout instead of QFormLayout and keep backward compatibility, but, in Qt 4.3 i had a lot of problems with fonts, and multiple opengl contexts that are solved in Qt 4.4 (remember tonnetz + keyspace was forbiden i my three computers) so i would rather prefer to

Re: [Clam-devel] Ladspa Plugins using embeded Networks

2008-07-30 Thread Hernán Ordiales
On Tue, Jul 29, 2008 at 4:41 PM, David García Garzón [EMAIL PROTECTED] wrote: Network based ladspa plugins are already usable: - The network is now embeded into the plugin so you are not limited to a single CLAM based plugin indicated by CLAM_NETWORK_PLUGIN_PATH. - Metadata is not hardcoded

[Clam-devel] pyclam: CLAM python bindings (some preliminary results)

2008-07-30 Thread Hernán Ordiales
Hi all, Recently I been playing a little with Boost.Python and CLAM library and I'd like to show you the results: By now I was able to parse with sucess only a subset of clam classes and the problems that arose with basic ones were temporary solved with a couple of workarounds (especially

Re: [Clam-devel] pyclam: CLAM python bindings (some preliminary results)

2008-07-30 Thread David García Garzón
Wow, all that working in python seems amazing to me. Great work, Hernan! Could you sent a tarball/patch? i want to play with it. :-) David. El Wednesday 30 July 2008 21:36:50 Hernán Ordiales va escriure: Hi all, Recently I been playing a little with Boost.Python and CLAM library and I'd

Re: [Clam-devel] pyclam: CLAM python bindings (some preliminary results)

2008-07-30 Thread David García Garzón
6mb is to much load i would prefer the files to compile it + instructions. I can wait. El Wednesday 30 July 2008 21:53:02 Hernán Ordiales va escriure: On Wed, Jul 30, 2008 at 4:43 PM, David García Garzón [EMAIL PROTECTED] wrote: Wow, all that working in python seems amazing to me. Great

Re: [Clam-devel] pyclam: CLAM python bindings (some preliminary results)

2008-07-30 Thread Hernán Ordiales
On Wed, Jul 30, 2008 at 4:58 PM, David García Garzón [EMAIL PROTECTED] wrote: 6mb is to much load i would prefer the files to compile it + instructions. I can wait. ok -- Hernán http://h.ordia.com.ar GnuPG: 0xEE8A3FE9 ___ Clam-devel mailing list

COMMIT 11760 (Re: [Clam-devel] subnetworks interfacing - NE several opened files)

2008-07-30 Thread Natanael Olaiz
Commit 11760: * BaseNetwork: added, abstract model of a network, with the static methods of the actual Network * Network: derived from BaseNetwork. * NetworkCanvas: use CLAM::BaseNetwork interface instead CLAM::Network El 07/30/2008 07:19 AM, Pau Arumí escribió: Reordering the

[Clam-devel] [OT] Clamwin logo

2008-07-30 Thread Xavier Amatriain
Has the clamwin logo and color scheme always been so similar to ours? I don't recall that but maybe it has always been this way: http://www.clamwin.com/templates/ClamWin/images/clamwin_logo.png ___ Clam-devel mailing list

Re: [Clam-devel] pyclam: CLAM python bindings (some preliminary results)

2008-07-30 Thread Pau Arumí
Recently I been playing a little with Boost.Python and CLAM library and I'd like to show you the results: Super! this is something wished for long time! Now, is anybody else to pull a rabbit out the hat? ;-) ___ Clam-devel mailing list

Re: [Clam-devel] pyclam: CLAM python bindings (some preliminary results)

2008-07-30 Thread Hernán Ordiales
Hi again, I prepared a tarball[1], see the README file for instructions. Most problems and issues are commented and explained inside the code (don't worry, the project are a few files) Some notes: * As said is a subset of classes, i was increasing the code base step by step and i think i can