You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Shawn P. <sha...@gm...> - 2011-11-07 18:42:42
|
Hello, I am new to the list. Frustrated by the bugs in win32lib, I decided to give gtk a try. I managed to port the project over to Windows. Windows doesn't put everything in one library like in Linux. The source code is meant to still operate under Linux. The archive only contains a single directory demos and the resources are accessed in a way that assumes that demos is coming form the HOME directory. Most of the demos work well (in Windows). Unfortunately, "alltests.ex" is not one of them. After clicking a demo, which most often runs and exits without an error, alltests.ex dies with an assertion failed error. I have the impression that this project is abandoned. Shawn Pringle -- PGP public key available at pool.sks-keyservers.net |
From: Irv M. <ir...@el...> - 2005-04-14 12:17:38
|
On Thursday 14 April 2005 06:16 am, Joh...@ex... wrote: > Was the decision made to post mailing list issues only to EuForums ? > > Is there a viable 'link' to the Windows download for EuGTK ? > Hi John: No, yours seems to be the first ever post to this eugtk-programming list! Some time ago, with the help of Ron Tarrant, I was able to combine the Windows and Linux (& BSD) versions into one which works on all platforms. This is the current version available at http://sourceforge.net/projects/eugtk Regards, Irv |
From: <Joh...@ex...> - 2005-04-14 10:17:34
|
Was the decision made to post mailing list issues only to EuForums ? Is there a viable 'link' to the Windows download for EuGTK ? John D. |
From: EUPHORIC <eup...@ck...> - 2004-08-22 00:12:57
|
Well, at least no ZIP extensions... :( -------- Original Message -------- Subject: failure delivery Date: 22 Aug 2004 00:12:09 -0000 From: MAI...@ya... To: eup...@ck... Message from yahoo.com. Unable to deliver message to the following address(es). <eug...@li...>: 66.35.250.206 failed after I sent the message. Remote host said: 550-"For the time being, we are blocking all mail with the .zip extension. 550-If this this is a problem, please open a Support Request on the SF.net 550 webite." --- Original message follows. Return-Path: <eup...@ck...> The original message is over 5k. Message truncated to 1K. Received: from unknown (HELO cklester.com) (cklester@67.172.198.132 with plain) by smtp011.mail.yahoo.com with SMTP; 22 Aug 2004 00:12:07 -0000 Message-ID: <412...@ck...> Date: Sat, 21 Aug 2004 19:18:09 -0500 From: EUPHORIC <eup...@ck...> User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: eug...@li... Subject: Translating Simple Win32Lib Program to EuGTK Content-Type: multipart/mixed; boundary="------------060703030102060304080704" This is a multi-part message in MIME format. --------------060703030102060304080704 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit (sending to list again 'cuz I used wrong address for list first time) Hey! I started it, but I can't finish it. Irv, anybody, can you step through this program (my Euphoric Die Roller) and make the appropriate adjustments so it will work with EuGTK? It is currently a Win32Lib program, but I'd love to have it go cross platform with EuGTK. Pleeeeeease?! :) -=ck P.S. Irv, I sent this to your email addresses in case the list *** MESSAGE TRUNCATED *** |
From: Irv M. <ir...@el...> - 2004-08-20 20:54:13
|
On Friday 20 August 2004 11:55, C. K. Lester wrote: > Running on Win2K, I had to make this modification for -makedocs to work > with packing.exu. > > Replace the following (line 36): > > constant HOME = getenv("HOME") > > with > > object HOME > HOME = getenv("HOME") > if atom(HOME) then > HOME = "C:" -- or select the user's current drive?! > end if > > That's just a temporary fix for my system. You will probably want to > check the variety of drives on the user's system, in case they have > /gtk2 on their D: or other drive... > > I don't know how this will work for Linux/FreeBSD, but it doesn't seem > like it should break anything. Thanks, I'll make that change. Irv |
From: Irv M. <ir...@el...> - 2004-08-20 20:53:12
|
On Friday 20 August 2004 11:36, C. K. Lester wrote: > Irv, > > How does the button color change when the mouse hovers over the buttons > in the packing.exu example code? I don't see any command in the code to > tell it to do that. > > What I'm guessing is that you've changed the button color for each > button, but not the "hover" color... is that close?! :) GTK Widgets have a background, a foreground, and a base, each of which is an array of 5 colors. The color which is used depends upon the state of the control. GTK_STATE_NORMAL GTK_STATE_ACTIVE GTK_STATE_PRELIGHT -- mouseover, I think. GTK_STATE_SELECTED, GTK_STATE_INSENSITIVE But all controls don't actually make use of all 5 colors, and sometimes it depends on which theme is in use, so you have to experiment a bit. You would use it like this: gtkSet(ctl,"Background",{GTK_STATE_PRELIGHT,#cceeff}) > P.S. I figured I'd start posting my GTK questions to this list instead > of to EUForum. Let me know if you think I should [also] post to the > EUForum list. Good idea, except that only 3 of us will see them if we only use this list. Maybe later more will sign up. Suppose we just post the initial question and then the final answer (if there is one) to Euforum, to avoid cluttering it with back-and-forth questions. Irv |
From: C. K. L. <ck...@ck...> - 2004-08-20 15:54:15
|
Running on Win2K, I had to make this modification for -makedocs to work with packing.exu. Replace the following (line 36): constant HOME = getenv("HOME") with object HOME HOME = getenv("HOME") if atom(HOME) then HOME = "C:" -- or select the user's current drive?! end if That's just a temporary fix for my system. You will probably want to check the variety of drives on the user's system, in case they have /gtk2 on their D: or other drive... I don't know how this will work for Linux/FreeBSD, but it doesn't seem like it should break anything. -=ck |
From: C. K. L. <ck...@ck...> - 2004-08-20 15:35:47
|
Irv, How does the button color change when the mouse hovers over the buttons in the packing.exu example code? I don't see any command in the code to tell it to do that. What I'm guessing is that you've changed the button color for each button, but not the "hover" color... is that close?! :) -=ck P.S. I figured I'd start posting my GTK questions to this list instead of to EUForum. Let me know if you think I should [also] post to the EUForum list. |
From: Irv M. <ir...@el...> - 2004-08-17 23:10:35
|
test |