From mwdzv at physik.uni-wuerzburg.de Mon Mar 1 16:38:29 2004 From: mwdzv at physik.uni-wuerzburg.de (Carter Winslow) Date: Mon, 01 Mar 2004 09:38:29 -0700 Subject: [lgtk-devel] No joke, you could be earning online profits in half an hour Message-ID: An HTML attachment was scrubbed... URL: From m_mommer at yahoo.com Mon Mar 1 17:45:05 2004 From: m_mommer at yahoo.com (Mario S. Mommer) Date: Mon, 01 Mar 2004 17:45:05 -0000 Subject: [lgtk-devel] [PATCH:] A few more button functions References: Message-ID: Hi, Sverker Wiberg writes: > Here's a patch to add gtk-button-new-from-stock as well as functions to > handle a buttons label and relief state. Commited. Thanks! > These functions (except for gtk-button-set-label) are showcased in > 'button-flavours.lisp', which also contains a very first sketch (done in > five minutes) on a somewhat thicker and more Lispy binding for GTK. Added button-flavors as an example. I think that I should add an utility package for the kind of lispy extensions you mention. > Right now I'm thinking on adding docstring support to def-binding and > friends. Any thoughts? It would not hurt, I guess. Where do you propose to put the docstrings? As far as lgtk is concerned, adding functionality by hand is only a temporary solution. I would much prefer to machine-generate bindings by the ton. I think I have a solution, but I'm not sure that it makes much sense to add doctrings to that. After all, it is an amazing shipload of functions & stuff, not all of which is even documented! On the other hand, I always thought of defbinding & friends as a facility that would grow beside lgtk until it was mature enough to stand by itself, and then would get its own project. From that point of view, docstrings make a lot of sense. Regards, Mario. From sverkerw at swipnet.se Tue Mar 2 00:54:06 2004 From: sverkerw at swipnet.se (Sverker Wiberg) Date: Tue, 02 Mar 2004 01:54:06 +0100 Subject: [lgtk-devel] [PATCH:] A few more button functions In-Reply-To: References: Message-ID: <1078188846.9616.61.camel@catskinner.nonet.update.uu.se> On Mon, 2004-03-01 at 18:43, Mario S.Mommer wrote: > Hi, > > Sverker Wiberg writes: > > Here's a patch to add gtk-button-new-from-stock as well as functions to > > handle a buttons label and relief state. > > Commited. Thanks! > > > These functions (except for gtk-button-set-label) are showcased in > > 'button-flavours.lisp', which also contains a very first sketch (done in > > five minutes) on a somewhat thicker and more Lispy binding for GTK. > > Added button-flavors as an example. Thanks. > I think that I should add an > utility package for the kind of lispy extensions you mention. Sounds fine. > > Right now I'm thinking on adding docstring support to def-binding and > > friends. Any thoughts? > > It would not hurt, I guess. Where do you propose to put the docstrings? In the syntax? In the usual place, after the name (&optional of course), as in (def-binding "bogo_sort" "Sorts the characters in STR an incredibly stupid manner; i.e. by doing random shuffles until it is sorted. It is not guaranteed to terminate." (void (c-string))) Under the hood, I'll put the string wherever DESCRIBE and APROPOS expects to pick it up. Looking in CLtL2, that would be DOCUMENTATION function. > As far as lgtk is concerned, adding functionality by hand is only a > temporary solution. I would much prefer to machine-generate bindings > by the ton. I think I have a solution, but I'm not sure that it makes > much sense to add doctrings to that. Unless there's a way to autogenerate the docstrings too (HHOS, maybe we could snarf the Doxygen comments...) [...] > On the other hand, I always thought of defbinding & friends as a > facility that would grow beside lgtk until it was mature enough to > stand by itself, and then would get its own project. From that point > of view, docstrings make a lot of sense. Anyway, I'll start with the easy stuff, just adding docstrings to the macros themselves. /Sverker From sverkerw at swipnet.se Wed Mar 3 01:44:49 2004 From: sverkerw at swipnet.se (Sverker Wiberg) Date: Wed, 03 Mar 2004 02:44:49 +0100 Subject: [lgtk-devel] [PATCH] A fistful of docstrings (Was: Re: [...] A few more button functions) In-Reply-To: <1078188846.9616.61.camel@catskinner.nonet.update.uu.se> References: <1078188846.9616.61.camel@catskinner.nonet.update.uu.se> Message-ID: <1078278288.9616.87.camel@catskinner.nonet.update.uu.se> On Tue, 2004-03-02 at 01:54, Sverker Wiberg wrote: > On Mon, 2004-03-01 at 18:43, Mario S.Mommer wrote: [...] > > Sverker Wiberg writes: [...] > > > Right now I'm thinking on adding docstring support to def-binding and > > > friends. Any thoughts? > > > > It would not hurt, I guess. Here's a patch that adds docstring support to DEF-BINDING! (And docstrings to a few other defs.) > Where do you propose to put the docstrings? > > In the syntax? In the usual place, after the name (&optional of course)[...] Thinking things over I realized (or decided) that the type list is analogous to the lambda list of a defun. So I placed the docstring between the type list and the keywords (pretend that the keywords make up the body). A current example with all bells and whistles would be: (def-binding "some_function" (guint (c-string name) (voidptr data)) "Does some stuff..." :before (incf *my-statistics*) :after (lambda (x) (format t "Got ~s~%" x) x)) /Sverker -------------- next part -------------- A non-text attachment was scrubbed... Name: doc-strings-1.diff Type: text/x-patch Size: 6416 bytes Desc: URL: From HSXSCFMFNGZBNJ at informatik.fh-augsburg.de Thu Mar 4 04:03:49 2004 From: HSXSCFMFNGZBNJ at informatik.fh-augsburg.de (Ned Hyde) Date: Thu, 04 Mar 2004 10:03:49 +0600 Subject: [lgtk-devel] employers don't hire people without degrees, buy yours today Message-ID: An HTML attachment was scrubbed... URL: From sverkerw at swipnet.se Sun Mar 7 17:52:45 2004 From: sverkerw at swipnet.se (Sverker Wiberg) Date: Sun, 07 Mar 2004 18:52:45 +0100 Subject: [lgtk-devel] [PATCH] A fistful of docstrings (Was: Re: [...] A few more button functions) In-Reply-To: <1078278288.9616.87.camel@catskinner.nonet.update.uu.se> References: <1078188846.9616.61.camel@catskinner.nonet.update.uu.se> <1078278288.9616.87.camel@catskinner.nonet.update.uu.se> Message-ID: <1078681964.9616.220.camel@catskinner.nonet.update.uu.se> On Wed, 2004-03-03 at 02:44, Sverker Wiberg wrote: > On Tue, 2004-03-02 at 01:54, Sverker Wiberg wrote: [...] > Here's a patch that adds docstring support to DEF-BINDING! (And > docstrings to a few other defs.) New patch! This one adds docstring support to DEFENUM and a sample doc-string for the GTKRELIEFSTYLE enum. The diff is relative to my previous patch, but should apply cleanly to the CVS repository (except for one hunk that fixes a typo of mine --- let it fail, it's harmless). /Sverker -------------- next part -------------- A non-text attachment was scrubbed... Name: doc-strings-2-1.diff Type: text/x-patch Size: 2655 bytes Desc: not available URL: From tnhz426z at activanet.es Mon Mar 22 23:01:23 2004 From: tnhz426z at activanet.es (Eddie Brennan) Date: Mon, 22 Mar 04 23:01:23 GMT Subject: [lgtk-devel] Have your cake and eat it too Message-ID: <9-q4o8-xg-js$9u--30@xpjj.ony0h> An HTML attachment was scrubbed... URL: From xlrildlhcbi at swr-online.de Fri Mar 26 17:07:48 2004 From: xlrildlhcbi at swr-online.de (Percy Dickson) Date: Fri, 26 Mar 2004 21:07:48 +0400 Subject: [lgtk-devel] No joke, you could be earning online profits in half an hour Message-ID: An HTML attachment was scrubbed... URL: From WHKVALT at ain.pref.fukui.jp Sun Mar 28 16:22:42 2004 From: WHKVALT at ain.pref.fukui.jp (Scotty Rodrigues) Date: Sun, 28 Mar 2004 13:22:42 -0300 Subject: [lgtk-devel] Earn commissions promoting other people's websites Message-ID: An HTML attachment was scrubbed... URL: From CJERVSP at gocis.bg Sun Mar 28 18:47:46 2004 From: CJERVSP at gocis.bg (Darlene Hahn) Date: Sun, 28 Mar 2004 12:47:46 -0600 Subject: [lgtk-devel] degrees for sale Message-ID: An HTML attachment was scrubbed... URL: From M.BATES.ALANN at netscape.net Wed Mar 31 11:04:44 2004 From: M.BATES.ALANN at netscape.net (M.BATES.ALANN at netscape.net) Date: Wed, 31 Mar 2004 05:04:44 -0600 Subject: [lgtk-devel] REPLY BACK Message-ID: <200403311104.i2VB4hn3346474@ex_cryp1> Dear Friend, As you read this, I don't want you to feel sorry for me, because, I believe everyone will die someday. My name is BATES ALAN a merchant in Dubai, in the U.A.E.I have been diagnosed with Esophageal cancer. It has defiled all forms of medical treatment, and right now I have only about a few months to live, according to medical experts. I have not particularly lived my life so well, as I never really cared for anyone(not even myself)but my business. Though I am very rich, I was never generous, I was always hostile to people and only focused on my business as that was the only thing I cared for. But now I regret all this as I now know that there is more to life than just wanting to have or make all the money in the world. I believe when God gives me a second chance to come to this world I would live my life a different way from how I have lived it. Now that God has called me, I have willed and given most of my property and assets to my immediate and extended family members as well as a few close friends. I want God to be merciful to me and accept my soul so, I have decided to give alms to charity organizations, as I want this to be one of the last good deeds I do on earth. So far, I have distributed money to some charity organizations in the U.A.E, Algeria and Malaysia. Now that my health has deteriorated so badly, I cannot do this myself anymore. I once asked members of my family to close one of my accounts and distribute the money which I have there to charity organization in Bulgaria and Pakistan, they refused and kept the money to themselves. Hence, I do not trust them anymore, as they seem not to be contended with what I have left for them. The last of my money which no one knows of is the huge cash deposit of eighteen million dollars $18,000,000,00 that I have with a finance/Security Company abroad. I will want you to help me collect this deposit and dispatched it to charity organizations. I have set aside 10% for you and for your time. God be with you. BATES ALAN From M.BATES.ALANN at netscape.net Wed Mar 31 11:44:43 2004 From: M.BATES.ALANN at netscape.net (M.BATES.ALANN at netscape.net) Date: Wed, 31 Mar 2004 05:44:43 -0600 Subject: [lgtk-devel] REPLY BACK Message-ID: <200403311144.i2VBien4407332@ex_cryp1> Dear Friend, As you read this, I don't want you to feel sorry for me, because, I believe everyone will die someday. My name is BATES ALAN a merchant in Dubai, in the U.A.E.I have been diagnosed with Esophageal cancer. It has defiled all forms of medical treatment, and right now I have only about a few months to live, according to medical experts. I have not particularly lived my life so well, as I never really cared for anyone(not even myself)but my business. Though I am very rich, I was never generous, I was always hostile to people and only focused on my business as that was the only thing I cared for. But now I regret all this as I now know that there is more to life than just wanting to have or make all the money in the world. I believe when God gives me a second chance to come to this world I would live my life a different way from how I have lived it. Now that God has called me, I have willed and given most of my property and assets to my immediate and extended family members as well as a few close friends. I want God to be merciful to me and accept my soul so, I have decided to give alms to charity organizations, as I want this to be one of the last good deeds I do on earth. So far, I have distributed money to some charity organizations in the U.A.E, Algeria and Malaysia. Now that my health has deteriorated so badly, I cannot do this myself anymore. I once asked members of my family to close one of my accounts and distribute the money which I have there to charity organization in Bulgaria and Pakistan, they refused and kept the money to themselves. Hence, I do not trust them anymore, as they seem not to be contended with what I have left for them. The last of my money which no one knows of is the huge cash deposit of eighteen million dollars $18,000,000,00 that I have with a finance/Security Company abroad. I will want you to help me collect this deposit and dispatched it to charity organizations. I have set aside 10% for you and for your time. God be with you. BATES ALAN