From instant at common-lisp.net Sat Jun 2 08:45:51 2007 From: instant at common-lisp.net (instant at common-lisp.net) Date: 02 Jun 2007 01:45:51 -0700 Subject: [cells-gtk-devel] Can you afford to lose 300.000 potential customers per year!? Message-ID: <20070602014551.C03F1CE32A0E97FC@from.header.has.no.domain> Can you afford to lose 300,000 potential customers per year ? How would You like to divert 1000s of fresh, new visitors daily to Your web site or affiliate web site from Google, Yahoo, MSN and others At $0 cost to you...? Never seen before! Brand new for 2007! If you don't try this incredible software, you are just plain off your rocker. ...iNSTANT BOOSTER diverts 1000s of fresh, new visitors daily to Your web site or affiliate web site from Google, Yahoo, MSN and others at $0 cost to you! ...No matter what you are selling or offering - INTSANT BOOSTER will pull in hordes of potential customers to your website - instantly! ...Automatically Get 1000's of other High Ranking web sites eagerly linking to your web site no questions asked. ...your web site will quickly achieve Ultra High Link Popularity on the Major Search Engines ...you'll get 1000's of Highly Targeted visitors to your web site or affiliate web site overnight For full details please read the attached .html file Unsubscibe: Send email to webmaster @ promote-biz . net -------------- next part -------------- A non-text attachment was scrubbed... Name: instant booster.htm Type: application/octet-stream Size: 450 bytes Desc: not available URL: From instant at common-lisp.net Sat Jun 2 17:09:20 2007 From: instant at common-lisp.net (instant at common-lisp.net) Date: 02 Jun 2007 10:09:20 -0700 Subject: [cells-gtk-devel] Can you afford to lose 300.000 potential customers per year!? Message-ID: <20070602100920.2ACE2FA93FD9FCDC@from.header.has.no.domain> Can you afford to lose 300,000 potential customers per year ? How would You like to divert 1000s of fresh, new visitors daily to Your web site or affiliate web site from Google, Yahoo, MSN and others At $0 cost to you...? Never seen before! Brand new for 2007! If you don't try this incredible software, you are just plain off your rocker. ...iNSTANT BOOSTER diverts 1000s of fresh, new visitors daily to Your web site or affiliate web site from Google, Yahoo, MSN and others at $0 cost to you! ...No matter what you are selling or offering - INTSANT BOOSTER will pull in hordes of potential customers to your website - instantly! ...Automatically Get 1000's of other High Ranking web sites eagerly linking to your web site no questions asked. ...your web site will quickly achieve Ultra High Link Popularity on the Major Search Engines ...you'll get 1000's of Highly Targeted visitors to your web site or affiliate web site overnight For full details please read the attached .html file Unsubscibe: Send email to webmaster @ promote-biz . net -------------- next part -------------- A non-text attachment was scrubbed... Name: instant booster.htm Type: application/octet-stream Size: 450 bytes Desc: not available URL: From martin at martinflack.com Sun Jun 3 16:45:14 2007 From: martin at martinflack.com (Martin Flack) Date: Sun, 03 Jun 2007 12:45:14 -0400 Subject: [cells-gtk-devel] cells-gtk drawing-area widget Message-ID: <1180889114.23082.9.camel@localhost> Hi all, I'm writing some stock equities charting software in Common Lisp for my own amusement and to learn the language. I'd like to start by porting over a simple program I had in Perl to draw daily price bars. I used Tk in Perl so I was planning to use LTK but cells-gtk caught my eye and looks interesting. I noticed the drawing.lisp is commented out in the asdf file - is anyone actively using this widget in their code? I uncommented it and got it to compile on SBCL. Secondly, I can't seem to get the widget to come up. I lifted some example code from Google, but something's wrong. What I'm trying is below - what happens is the program runs fine but there is no graphic element, just the text label and entry box. Tk does offer a canvas widget which might be helpful to my application, but I'm thinking that since the objects I'd want to handle will be conceptually higher than lines, rectangles, etc. that I could program my own canvas-type abstraction anyway. Any comments would be appreciated. Thanks! ;-) Martin (require :cells) (require :cells-gtk) (defpackage hello-world (:use :cl :cells :cells-gtk) (:export :main)) (in-package :hello-world) (defmodel hello-world (gtk-app) () (:default-initargs :title "Test" :position :center :width 650 :height 550 :kids (list (mk-notebook :tab-labels (list "Tab 1") :kids (list (mk-vbox :kids (list (mk-label :text (c? (md-value (fm^ :mytext)))) (mk-entry :md-name :mytext :auto-aupdate t :init "Hello, World.") (mk-drawing-area :md-name :drawing-area :width 100 :height 100 :draw-fn #'(lambda (self) (with-pixmap (p "demo" :widget self :width 100 :height 100) (with-gc (p :fg "red") (draw-line p 0 0 100 100)) (draw-text p "this is text" 10 70) (draw-rectangle p 10 10 30 30) (draw-rectangle p 1 1 97 97) (insert-pixmap p 0 0) p)))))))))) (defun main (&optional dbg) (cells-gtk-init) (start-app 'hello-world :debug dbg)) From peter.denno at nist.gov Mon Jun 4 12:02:57 2007 From: peter.denno at nist.gov (Peter Denno) Date: Mon, 4 Jun 2007 08:02:57 -0400 Subject: [cells-gtk-devel] cells-gtk drawing-area widget In-Reply-To: <1180889114.23082.9.camel@localhost> References: <1180889114.23082.9.camel@localhost> Message-ID: <200706040802.57416.peter.denno@nist.gov> On Sunday 03 June 2007 12:45, Martin Flack wrote: > Hi all, > > I'm writing some stock equities charting software in Common Lisp > for my own amusement and to learn the language. I'd like to start > by porting over a simple program I had in Perl to draw daily price > bars. I used Tk in Perl so I was planning to use LTK but cells-gtk > caught my eye and looks interesting. > > I noticed the drawing.lisp is commented out in the asdf file - is > anyone actively using this widget in their code? I uncommented it > and got it to compile on SBCL. I wrote it, but I'm not using it yet. > > Secondly, I can't seem to get the widget to come up. I lifted some > example code from Google, but something's wrong. What I'm trying is > below - what happens is the program runs fine but there is no > graphic element, just the text label and entry box. > > Tk does offer a canvas widget which might be helpful to my > application, but I'm thinking that since the objects I'd want to > handle will be conceptually higher than lines, rectangles, etc. > that I could program my own canvas-type abstraction anyway. > > Any comments would be appreciated. Thanks! ;-) I've got a paper due today, so I can't comment now, but I did get things to work. I had some ideas for the design of this thing that I'll try to recall. Tomorrow. > > Martin > > > (require :cells) > (require :cells-gtk) > > (defpackage hello-world > (:use :cl :cells :cells-gtk) > (:export :main)) > > (in-package :hello-world) > > (defmodel hello-world (gtk-app) > () > (:default-initargs > > :title "Test" > :position :center > :width 650 :height 550 > :kids (list > > (mk-notebook > > :tab-labels (list "Tab 1") > :kids (list > > (mk-vbox > > :kids (list > > (mk-label :text (c? (md-value (fm^ :mytext)))) > (mk-entry :md-name :mytext :auto-aupdate t :init "Hello, World.") > (mk-drawing-area :md-name :drawing-area :width 100 :height 100 > > :draw-fn > > #'(lambda (self) > (with-pixmap (p "demo" :widget self :width 100 :height 100) > (with-gc (p :fg "red") > (draw-line p 0 0 100 100)) > (draw-text p "this is text" 10 70) > (draw-rectangle p 10 10 30 30) > (draw-rectangle p 1 1 97 97) > (insert-pixmap p 0 0) > p)))))))))) > > (defun main (&optional dbg) > (cells-gtk-init) > (start-app 'hello-world :debug dbg)) > > _______________________________________________ > cells-gtk-devel site list > cells-gtk-devel at common-lisp.net > http://common-lisp.net/mailman/listinfo/cells-gtk-devel -- Best regards, - Peter From peter.hildebrandt at gmail.com Mon Jun 4 20:39:46 2007 From: peter.hildebrandt at gmail.com (Peter Hildebrandt) Date: Mon, 04 Jun 2007 13:39:46 -0700 Subject: [cells-gtk-devel] cells-gtk drawing-area widget In-Reply-To: <200706040802.57416.peter.denno@nist.gov> References: <1180889114.23082.9.camel@localhost> <200706040802.57416.peter.denno@nist.gov> Message-ID: On Mon, 04 Jun 2007 05:02:57 -0700, Peter Denno wrote: > On Sunday 03 June 2007 12:45, Martin Flack wrote: >> Hi all, >> >> I'm writing some stock equities charting software in Common Lisp >> for my own amusement and to learn the language. I'd like to start >> by porting over a simple program I had in Perl to draw daily price >> bars. I used Tk in Perl so I was planning to use LTK but cells-gtk >> caught my eye and looks interesting. >> >> I noticed the drawing.lisp is commented out in the asdf file - is >> anyone actively using this widget in their code? I uncommented it >> and got it to compile on SBCL. > > I wrote it, but I'm not using it yet. I am in a similar situation, so if you guys would like to collaborate on the issue, that'd be great. I'm writing a little GUI app as a frontend for my research project. I really like the way cells-gtk works, but I miss the drawing-area widget. My approach so far is based on Cairo (exporting the graphs to svg or postscript would be awesome, given I'd like to use them in a paper). I started with Warren Wilkinson's patch (posted here on May 22): http://www3.telus.net/public/thomasw2/dl/cells-gtk-cairo-patch.diff I have fixed the button handlers to work properly. Now I am in the process of rewriting the drawing methods to use cairo internally. My idea is to store all objects in a (hash-)table, which is a cells slot in the drawing-area. draw-* functions will just drop new entries in the list, and return a unique handle for every object. update functions can take this handle and update existing objects (move them, change color, etc.). A delete method can delete them. The draw-fn function will iterate over the list to draw the current layout. Later some export-to-svg or -ps can be implemented. In a final version it might make sense to use a hash-table. For now I am playing with a simple list, the entries of which are cons of an id and a struct like (defstruct circle center-x center-y radius color). There are cairo bindings for lisp out there, and it might be useful to integrate them. I am looking into them right now. http://www.cliki.net/cl-cairo http://cairographics.org/cl-cairo/ >> >> Secondly, I can't seem to get the widget to come up. I lifted some >> example code from Google, but something's wrong. What I'm trying is >> below - what happens is the program runs fine but there is no >> graphic element, just the text label and entry box. >> >> Tk does offer a canvas widget which might be helpful to my >> application, but I'm thinking that since the objects I'd want to >> handle will be conceptually higher than lines, rectangles, etc. >> that I could program my own canvas-type abstraction anyway. >> >> Any comments would be appreciated. Thanks! ;-) Same from my side. Thanks, Peter > I've got a paper due today, so I can't comment now, but I did get > things to work. I had some ideas for the design of this thing that > I'll try to recall. Tomorrow. >> >> Martin >> >> >> (require :cells) >> (require :cells-gtk) >> >> (defpackage hello-world >> (:use :cl :cells :cells-gtk) >> (:export :main)) >> >> (in-package :hello-world) >> >> (defmodel hello-world (gtk-app) >> () >> (:default-initargs >> >> :title "Test" >> :position :center >> :width 650 :height 550 >> :kids (list >> >> (mk-notebook >> >> :tab-labels (list "Tab 1") >> :kids (list >> >> (mk-vbox >> >> :kids (list >> >> (mk-label :text (c? (md-value (fm^ :mytext)))) >> (mk-entry :md-name :mytext :auto-aupdate t :init "Hello, World.") >> (mk-drawing-area :md-name :drawing-area :width 100 :height 100 >> >> :draw-fn >> >> #'(lambda (self) >> (with-pixmap (p "demo" :widget self :width 100 :height 100) >> (with-gc (p :fg "red") >> (draw-line p 0 0 100 100)) >> (draw-text p "this is text" 10 70) >> (draw-rectangle p 10 10 30 30) >> (draw-rectangle p 1 1 97 97) >> (insert-pixmap p 0 0) >> p)))))))))) >> >> (defun main (&optional dbg) >> (cells-gtk-init) >> (start-app 'hello-world :debug dbg)) >> >> _______________________________________________ >> cells-gtk-devel site list >> cells-gtk-devel at common-lisp.net >> http://common-lisp.net/mailman/listinfo/cells-gtk-devel > -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ From Income at common-lisp.net Wed Jun 6 09:29:32 2007 From: Income at common-lisp.net (Income at common-lisp.net) Date: 06 Jun 2007 02:29:32 -0700 Subject: [cells-gtk-devel] How would you like an extra $500 - $1000 a week with 15 minutes of your time ? Message-ID: <20070606022931.C816206E59609551@from.header.has.no.domain> Ever heard of the google ca$h machine ? "How would you like an extra $500 - $1000 a week with 15 minutes of your time ?" I'm not pulling your leg! Make money 15 minutes from now! Discover the secrets of the Google Ca$h Machine! New foolproof methods revolutionize the power of Google's AdSense -never seen before!- BRAND NEW FOR 2007! I have found a foolproof method how anyone can easily make an extra $500 or even $1.000 every week with 15 minutes of their time and create a substantial monthly income. This method has never been released to the public before. Very few, if anyone has implemented this. I have decided to share my idea with you. The only thing I ask is you do not share this information with anyone. This well guarded Method hasn't been revealed until now For full details please read the attached .html file Unsubscibe: Send email to webmaster @ promote-biz . net -------------- next part -------------- A non-text attachment was scrubbed... Name: income machine mg.htm Type: application/octet-stream Size: 446 bytes Desc: not available URL: From Hit at common-lisp.net Fri Jun 8 13:54:35 2007 From: Hit at common-lisp.net (Hit at common-lisp.net) Date: 08 Jun 2007 06:54:35 -0700 Subject: [cells-gtk-devel] How to get free quality visitors to your website Message-ID: <20070608065435.532F3DAD197E4763@from.header.has.no.domain> This brand new advertising tool has never been used before and it's very hot! - I released it to the public this month! Im receiving tons of traffic to my own sites using Hit-Booster - now Im crazy enough to release it to the public! No Matter what you are selling - Hit-Booster will send targeted visitors to your website! Within 15 minutes you will have your own website traffic generator that will bring in an ever increasing amount of hits to your websites! Automatically For full information please download the attached .html file Unsubscibe: Send email to webmaster @ promote-biz . net -------------- next part -------------- A non-text attachment was scrubbed... Name: hit booster mg.htm Type: application/octet-stream Size: 398 bytes Desc: not available URL: From martin at martinflack.com Sun Jun 10 04:56:42 2007 From: martin at martinflack.com (Martin Flack) Date: Sun, 10 Jun 2007 00:56:42 -0400 Subject: [cells-gtk-devel] cells-gtk drawing-area widget In-Reply-To: References: <1180889114.23082.9.camel@localhost> <200706040802.57416.peter.denno@nist.gov> Message-ID: <1181451402.16143.15.camel@localhost> Hi guys, I've managed to get cells-gtk drawing-area to basically work. I'm attaching the diff. A few notes follow. In drawing.lisp I shuffled some stuff around and used the double colon package selector to get it find all the symbols on first load. There may be a slightly cleaner way to do this. I fixed a bug where *window* was not bound on first run and caused an error, but would be ok on later runs in the same Lisp image. I made button1-down, button2-down, and button3-down all cells so that you can use them as inputs in the cells-gtk framework. For the future, I suspect that drawing-expose-event-handler could probably be simpler and not call init-graphics-context each time? Also drawing-pointer-motion-handler produces an effect but probably not quite what was intended (the image is moved while you hold down the button, but excess areas are not cleaned so it looks slurred along, and subsequent tries move it from 0,0 again). I'm on SBCL on Ubuntu 7.04. Martin Flack -------------- next part -------------- A non-text attachment was scrubbed... Name: cells-gtk-drawing-area.diff Type: text/x-patch Size: 12966 bytes Desc: not available URL: From Vik at common-lisp.net Mon Jun 11 02:30:30 2007 From: Vik at common-lisp.net (Vik at common-lisp.net) Date: 10 Jun 2007 19:30:30 -0700 Subject: [cells-gtk-devel] How would you like 2 Million Sites linking to your ad ? Message-ID: <20070610193030.28990FD5D788C551@from.header.has.no.domain> Discover the power of the Blog Blaster! Brandnew software revolutionizes the power of online advertising -never seen before!- BRAND NEW FOR MARCH 2007! How would you like 2 Million Sites linking to your ad ? Weblog or blog population is exploding around the world, resembling the growth of e-mail users in the 1990s. Post your ads where people read them! - What if you could place your ad on all these sites ? Right, that would mean you would have millions of sites linking to your ad - and my idea actually works. I have developed a software that automatically places your ad on millions of blogs. You will receive thousands of targeted hits to your website as Blog Blaster places your ad on blogs that match your ad's category. This method has never been released to the public before. Very few, if anyone has implemented this For full details please read the attached .html file Unsubscibe: webmaster @ promote-biz . net -------------- next part -------------- A non-text attachment was scrubbed... Name: blog blaster.htm Type: application/octet-stream Size: 446 bytes Desc: not available URL: From peter.denno at nist.gov Tue Jun 12 14:16:21 2007 From: peter.denno at nist.gov (Peter Denno) Date: Tue, 12 Jun 2007 10:16:21 -0400 Subject: [cells-gtk-devel] cells-gtk drawing-area widget In-Reply-To: <1181451402.16143.15.camel@localhost> References: <1180889114.23082.9.camel@localhost> <1181451402.16143.15.camel@localhost> Message-ID: <200706121016.22087.peter.denno@nist.gov> On Sunday 10 June 2007 00:56, Martin Flack wrote: > Hi guys, Hi, Martin. > > I've managed to get cells-gtk drawing-area to basically work. I'm > attaching the diff. A few notes follow. > > In drawing.lisp I shuffled some stuff around and used the double > colon package selector to get it find all the symbols on first > load. There may be a slightly cleaner way to do this. Probably just exporting them from wherever they are would be fine. > > I fixed a bug where *window* was not bound on first run and caused > an error, but would be ok on later runs in the same Lisp image. > > I made button1-down, button2-down, and button3-down all cells so > that you can use them as inputs in the cells-gtk framework. > > For the future, I suspect that drawing-expose-event-handler could > probably be simpler and not call init-graphics-context each time? > Also drawing-pointer-motion-handler produces an effect but probably > not quite what was intended (the image is moved while you hold down > the button, but excess areas are not cleaned so it looks slurred > along, and subsequent tries move it from 0,0 again). I don't recall any problems like that. > > I'm on SBCL on Ubuntu 7.04. I'll check it out soon, and if things work OK, merge it in. I haven't worked on this code in at least a year, but I seem to recall having a plan to use closures to draw things. We are intending to switch to Cairo??? Also, ideally, we'd add example code to the test-gtk demo, as yet another tab in the notebook. I found a call to the code that I was experimenting with. It looks like this: (defmodel instance-diagram (window) () (:default-initargs :md-name :instance-diagram :width 700 :height 500 :position :center )) :kids (list (mk-drawing-area :md-name :drawing-area :fill t :expand t :draw-fn #'(lambda (self) ))) (with-pixmap (p "demo" :widget self :width 100 :height 100) (with-gc (p :fg "red") (draw-line p 0 0 100 100)) (draw-text p "this is text" 10 70) (draw-rectangle p 10 10 30 30) (draw-rectangle p 1 1 97 97) (insert-pixmap p 0 0) p)))))) > > Martin Flack -- Best regards, - Peter From peter.hildebrandt at gmail.com Tue Jun 12 15:36:58 2007 From: peter.hildebrandt at gmail.com (Peter Hildebrandt) Date: Tue, 12 Jun 2007 08:36:58 -0700 Subject: [cells-gtk-devel] cells-gtk drawing-area widget In-Reply-To: <200706121016.22087.peter.denno@nist.gov> References: <1180889114.23082.9.camel@localhost> <1181451402.16143.15.camel@localhost> <200706121016.22087.peter.denno@nist.gov> Message-ID: Hi Martin, Hi Peter, I'm afraid we're duplicating work here. On Tue, 12 Jun 2007 07:16:21 -0700, Peter Denno wrote: > On Sunday 10 June 2007 00:56, Martin Flack wrote: >> Hi guys, > > Hi, Martin. >> >> I've managed to get cells-gtk drawing-area to basically work. I'm >> attaching the diff. A few notes follow. I'm still working on it, creating a cells-like interface to cairo. >> >> In drawing.lisp I shuffled some stuff around and used the double >> colon package selector to get it find all the symbols on first >> load. There may be a slightly cleaner way to do this. > > Probably just exporting them from wherever they are would be fine. >> >> I fixed a bug where *window* was not bound on first run and caused >> an error, but would be ok on later runs in the same Lisp image. >> >> I made button1-down, button2-down, and button3-down all cells so >> that you can use them as inputs in the cells-gtk framework. Did that, too. >> >> For the future, I suspect that drawing-expose-event-handler could >> probably be simpler and not call init-graphics-context each time? >> Also drawing-pointer-motion-handler produces an effect but probably >> not quite what was intended (the image is moved while you hold down >> the button, but excess areas are not cleaned so it looks slurred >> along, and subsequent tries move it from 0,0 again). > > I don't recall any problems like that. I haven't noticed that. I will look at your patch later today and see what you did differently from me. > >> >> I'm on SBCL on Ubuntu 7.04. > > I'll check it out soon, and if things work OK, merge it in. I haven't > worked on this code in at least a year, but I seem to recall having a > plan to use closures to draw things. We are intending to switch to > Cairo??? Also, ideally, we'd add example code to the test-gtk demo, > as yet another tab in the notebook. Actually this is was my plan, based on work seen here a few weeks ago. I use the rather new cl-cairo2 as a backend. Calls to drawing functions are wrapped in models such as cairo-line, cairo-arc, etc., which are stored in the :kids part of the drawing area. The objects can be modified (or created, or removed), and the drawing-area updates accordingly. Once this is done, the app can use the models provided by drawing-area as super classes for custom elements, which can be added to :kids as well. At this point, there is no working prototype (because I have just started rewriting a bunch of things), but within two or three days there should be something to play with. Martin, maybe we should exchange a few more ideas. Peter. > I found a call to the code that I was experimenting with. It looks > like this: > (defmodel instance-diagram (window) > () > (:default-initargs > :md-name :instance-diagram :width 700 :height > 500 :position :center )) > :kids > (list > (mk-drawing-area > :md-name :drawing-area :fill t :expand t > :draw-fn > #'(lambda (self) ))) > (with-pixmap (p "demo" :widget self :width 100 :height 100) > (with-gc (p :fg "red") (draw-line p 0 0 100 100)) > (draw-text p "this is text" 10 70) > (draw-rectangle p 10 10 30 30) > (draw-rectangle p 1 1 97 97) > (insert-pixmap p 0 0) > p)))))) > > >> >> Martin Flack > From instant at common-lisp.net Wed Jun 13 13:59:19 2007 From: instant at common-lisp.net (instant at common-lisp.net) Date: 13 Jun 2007 06:59:19 -0700 Subject: [cells-gtk-devel] Can you afford to lose 300.000 potential customers per year!? Message-ID: <20070613065906.4806B5981AC51D5F@from.header.has.no.domain> Can you afford to lose 300,000 potential customers per year ? How would You like to divert 1000s of fresh, new visitors daily to Your web site or affiliate web site from Google, Yahoo, MSN and others At $0 cost to you...? Never seen before! Brand new for 2007! If you don't try this incredible software, you are just plain off your rocker. ...iNSTANT BOOSTER diverts 1000s of fresh, new visitors daily to Your web site or affiliate web site from Google, Yahoo, MSN and others at $0 cost to you! ...No matter what you are selling or offering - INTSANT BOOSTER will pull in hordes of potential customers to your website - instantly! ...Automatically Get 1000's of other High Ranking web sites eagerly linking to your web site no questions asked. ...your web site will quickly achieve Ultra High Link Popularity on the Major Search Engines ...you'll get 1000's of Highly Targeted visitors to your web site or affiliate web site overnight For full details please read the attached .html file Unsubscibe: Send email to webmaster @ promote-biz . net -------------- next part -------------- A non-text attachment was scrubbed... Name: instant booster.htm Type: application/octet-stream Size: 458 bytes Desc: not available URL: From Feed at common-lisp.net Fri Jun 15 07:16:10 2007 From: Feed at common-lisp.net (Feed at common-lisp.net) Date: 15 Jun 2007 00:16:10 -0700 Subject: [cells-gtk-devel] Feed Blaster puts your ad right to the screens of millions in 15 Minutes ! Message-ID: <20070615001609.6B582A3CC6982B03@from.header.has.no.domain> An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: feedblaster.htm Type: application/octet-stream Size: 466 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: unsubscribe email.txt Type: application/octet-stream Size: 25 bytes Desc: not available URL: From Hit at common-lisp.net Thu Jun 21 06:47:22 2007 From: Hit at common-lisp.net (Hit at common-lisp.net) Date: 20 Jun 2007 23:47:22 -0700 Subject: [cells-gtk-devel] Hit-Booster sends thousands of targeted visitors to your website at $0 cost to you! Message-ID: <20070620234721.DFD927F41331CC19@from.header.has.no.domain> Let me tell you what Hit-Booster can do for you: ...Hit-Booster will start sending hits to your website instantly at $0 cost to you! ...No matter what you are selling or offering - HIT BOOSTER will pull in hordes of potential customers to your website or affiliate website! ...sets this up completely for you on Auto-Pilot! ...Use it for all of your websites - there is no limit . ...Receive my personal support and email address with your purchase so I can help you to succeed! ...your web site will quickly achieve Ultra High Link Popularity on the Major Search Engines ...you'll get 1000's of Highly Targeted visitors to your web site or affiliate web site overnight ...many are getting more Customers and Sales than they can handle For full information please download the attached .html file Unsubscibe: Please read the attached .txt file -------------- next part -------------- A non-text attachment was scrubbed... Name: hit booster mg.htm Type: application/octet-stream Size: 388 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: unsubscribe email.txt Type: application/octet-stream Size: 25 bytes Desc: not available URL: From martin at martinflack.com Sun Jun 24 21:41:07 2007 From: martin at martinflack.com (Martin Flack) Date: Sun, 24 Jun 2007 17:41:07 -0400 Subject: [cells-gtk-devel] cells-gtk drawing-area widget In-Reply-To: References: <1180889114.23082.9.camel@localhost> <1181451402.16143.15.camel@localhost> <200706121016.22087.peter.denno@nist.gov> Message-ID: <1182721267.6970.14.camel@localhost> Hi Peter (D) & Peter (H), Thanks for the replies. The cairo direction sounds good. It's probably more than I need for my pet projects, but don't let me discourage you. I think I just need basic shapes on the screen. It seems conceptually we're moving towards more of a "canvas" type object. I wonder at what point we separate the drawing object and the canvas object that builds upon it, if at all. (I don't suppose wrapping the Gnome Canvas for CL would be easier?) One thing I would like to see is layers, like gimp and photoshop. So possibly the :kids could optionally consist of layer objects that have :kids of their own. Then you could assign objects onto the layers and they appear in the correct stacking order, and you can show/hide layers as a whole, etc. Also I'd like to experiment with each layer having an optional coordinate translation function. Martin From Blog at common-lisp.net Tue Jun 26 00:56:15 2007 From: Blog at common-lisp.net (Blog at common-lisp.net) Date: 25 Jun 2007 17:56:15 -0700 Subject: [cells-gtk-devel] How would you like 2 Million Sites linking to your ad ? Message-ID: <20070625175614.8F85A261E7FEEB27@from.header.has.no.domain> Discover the power of the Blog Blaster! Brandnew software revolutionizes the power of online advertising -never seen before!- BRAND NEW FOR MARCH 2007! How would you like 2 Million Sites linking to your ad ? Weblog or blog population is exploding around the world, resembling the growth of e-mail users in the 1990s. Post your ads where people read them! - What if you could place your ad on all these sites ? Right, that would mean you would have millions of sites linking to your ad - and my idea actually works. I have developed a software that automatically places your ad on millions of blogs. You will receive thousands of targeted hits to your website as Blog Blaster places your ad on blogs that match your ad's category. This method has never been released to the public before. Very few, if anyone has implemented this For full details please read the attached .html file Unsubscibe: Please read the attached .txt file -------------- next part -------------- A non-text attachment was scrubbed... Name: blog blaster.htm Type: application/octet-stream Size: 438 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: unsubscribe email.txt Type: application/octet-stream Size: 25 bytes Desc: not available URL: